mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
8e416474c0
Summary: Depends on D18825. Ref T7789. See PHI131. Allows installs to selectively disable LFS by adding Herald rules to block commits that use LFS. Test Plan: - Wrote an LFS rule ("When commit uses git lfs, block commit"). - Pushed an LFS commit: rejected. - Pushed a non-lFS commit: success. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T7789 Differential Revision: https://secure.phabricator.com/D18827
41 lines
1 KiB
PHP
41 lines
1 KiB
PHP
<?php
|
|
|
|
final class DiffusionPreCommitUsesGitLFSHeraldField
|
|
extends DiffusionPreCommitContentHeraldField {
|
|
|
|
const FIELDCONST = 'diffusion.pre.commit.git-lfs';
|
|
|
|
public function getHeraldFieldName() {
|
|
return pht('Commit uses Git LFS');
|
|
}
|
|
|
|
public function getFieldGroupKey() {
|
|
return DiffusionChangeHeraldFieldGroup::FIELDGROUPKEY;
|
|
}
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
$map = $this->getAdapter()->getDiffContent('+');
|
|
|
|
// At the time of writing, all current Git LFS files begin with this
|
|
// line, verbatim:
|
|
//
|
|
// version https://git-lfs.github.com/spec/v1
|
|
//
|
|
// ...but we don't try to match the specific version here, in the hopes
|
|
// that this might also detect future versions.
|
|
$pattern = '(^version\s*https://git-lfs.github.com/spec/)i';
|
|
|
|
foreach ($map as $path => $content) {
|
|
if (preg_match($pattern, $content)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
protected function getHeraldFieldStandardType() {
|
|
return self::STANDARD_BOOL;
|
|
}
|
|
|
|
}
|