mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
42 lines
892 B
PHP
42 lines
892 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitAuditorsHeraldField
|
||
|
extends DiffusionCommitHeraldField {
|
||
|
|
||
|
const FIELDCONST = 'diffusion.commit.auditors';
|
||
|
|
||
|
public function getHeraldFieldName() {
|
||
|
return pht('Auditors');
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValue($object) {
|
||
|
$viewer = PhabricatorUser::getOmnipotentUser();
|
||
|
|
||
|
$commit = id(new DiffusionCommitQuery())
|
||
|
->setViewer($viewer)
|
||
|
->withPHIDs(array($object->getPHID()))
|
||
|
->needAuditRequests(true)
|
||
|
->executeOne();
|
||
|
|
||
|
$audits = $commit->getAudits();
|
||
|
|
||
|
$phids = array();
|
||
|
foreach ($audits as $audit) {
|
||
|
if ($audit->isActiveAudit()) {
|
||
|
$phids[] = $audit->getAuditorPHID();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $phids;
|
||
|
}
|
||
|
|
||
|
protected function getHeraldFieldStandardType() {
|
||
|
return self::STANDARD_PHID_LIST;
|
||
|
}
|
||
|
|
||
|
protected function getDatasource() {
|
||
|
return new DiffusionAuditorDatasource();
|
||
|
}
|
||
|
|
||
|
}
|