當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PhabricatorRepository::canUseGitLFS方法代碼示例

本文整理匯總了PHP中PhabricatorRepository::canUseGitLFS方法的典型用法代碼示例。如果您正苦於以下問題:PHP PhabricatorRepository::canUseGitLFS方法的具體用法?PHP PhabricatorRepository::canUseGitLFS怎麽用?PHP PhabricatorRepository::canUseGitLFS使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PhabricatorRepository的用法示例。


在下文中一共展示了PhabricatorRepository::canUseGitLFS方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: validateGitLFSRequest

 private function validateGitLFSRequest(PhabricatorRepository $repository, PhabricatorUser $viewer)
 {
     if (!$this->getIsGitLFSRequest()) {
         return null;
     }
     if (!$repository->canUseGitLFS()) {
         return new PhabricatorVCSResponse(403, pht('The requested repository ("%s") does not support Git LFS.', $repository->getDisplayName()));
     }
     // If this is using an LFS token, sanity check that we're using it on the
     // correct repository. This shouldn't really matter since the user could
     // just request a proper token anyway, but it suspicious and should not
     // be permitted.
     $token = $this->getGitLFSToken();
     if ($token) {
         $resource = $token->getTokenResource();
         if ($resource !== $repository->getPHID()) {
             return new PhabricatorVCSResponse(403, pht('The authentication token provided in the request is bound to ' . 'a different repository than the requested repository ("%s").', $repository->getDisplayName()));
         }
     }
     return null;
 }
開發者ID:NeoArmageddon,項目名稱:phabricator,代碼行數:21,代碼來源:DiffusionServeController.php

示例2: getGitLFSRef

 private function getGitLFSRef(PhabricatorRepository $repository, $data)
 {
     if (!$repository->canUseGitLFS()) {
         return null;
     }
     $lfs_pattern = '(^version https://git-lfs\\.github\\.com/spec/v1[\\r\\n])';
     if (!preg_match($lfs_pattern, $data)) {
         return null;
     }
     $matches = null;
     if (!preg_match('(^oid sha256:(.*)$)m', $data, $matches)) {
         return null;
     }
     $hash = $matches[1];
     $hash = trim($hash);
     return id(new PhabricatorRepositoryGitLFSRefQuery())->setViewer($this->getViewer())->withRepositoryPHIDs(array($repository->getPHID()))->withObjectHashes(array($hash))->executeOne();
 }
開發者ID:endlessm,項目名稱:phabricator,代碼行數:17,代碼來源:DiffusionBrowseController.php


注:本文中的PhabricatorRepository::canUseGitLFS方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。