当前位置: 首页>>代码示例>>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;未经允许,请勿转载。