mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-08 21:08:29 +01:00
0ef599e906
Summary: Ref T4809. Currently, buildables have a status field but nothing populates it. Populate it: - When builds change state, update the Buildable state. - Use the new Buildable state on the web UI. - Return the new Buildable state from Conduit. To make it easier to debug/test this: - Provide `bin/harbormaster update Bxxx ...` to force foreground update of a Buildable. Test Plan: - Used `bin/harbormaster update Bxxx --force --trace` to update buildables. - Looked at buidlable list, saw statuses reported properly. - Used Conduit to read statuses. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4809 Differential Revision: https://secure.phabricator.com/D8799
175 lines
4.9 KiB
PHP
175 lines
4.9 KiB
PHP
<?php
|
|
|
|
final class HarbormasterBuildableSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
|
|
$revisions = $this->readPHIDsFromRequest(
|
|
$request,
|
|
'revisions',
|
|
array(
|
|
DifferentialPHIDTypeRevision::TYPECONST,
|
|
));
|
|
|
|
$repositories = $this->readPHIDsFromRequest(
|
|
$request,
|
|
'repositories',
|
|
array(
|
|
PhabricatorRepositoryPHIDTypeRepository::TYPECONST,
|
|
));
|
|
|
|
$container_phids = array_merge($revisions, $repositories);
|
|
$saved->setParameter('containerPHIDs', $container_phids);
|
|
|
|
$commits = $this->readPHIDsFromRequest(
|
|
$request,
|
|
'commits',
|
|
array(
|
|
PhabricatorRepositoryPHIDTypeCommit::TYPECONST,
|
|
));
|
|
|
|
$diffs = $this->readListFromRequest($request, 'diffs');
|
|
if ($diffs) {
|
|
$diffs = id(new DifferentialDiffQuery())
|
|
->setViewer($this->requireViewer())
|
|
->withIDs($diffs)
|
|
->execute();
|
|
$diffs = mpull($diffs, 'getPHID', 'getPHID');
|
|
}
|
|
|
|
$buildable_phids = array_merge($commits, $diffs);
|
|
$saved->setParameter('buildablePHIDs', $buildable_phids);
|
|
|
|
$saved->setParameter(
|
|
'manual',
|
|
$this->readBoolFromRequest($request, 'manual'));
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new HarbormasterBuildableQuery())
|
|
->needContainerHandles(true)
|
|
->needBuildableHandles(true);
|
|
|
|
$container_phids = $saved->getParameter('containerPHIDs', array());
|
|
if ($container_phids) {
|
|
$query->withContainerPHIDs($container_phids);
|
|
}
|
|
|
|
$buildable_phids = $saved->getParameter('buildablePHIDs', array());
|
|
|
|
if ($buildable_phids) {
|
|
$query->withBuildablePHIDs($buildable_phids);
|
|
}
|
|
|
|
$manual = $saved->getParameter('manual');
|
|
if ($manual !== null) {
|
|
$query->withManualBuildables($manual);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function buildSearchForm(
|
|
AphrontFormView $form,
|
|
PhabricatorSavedQuery $saved_query) {
|
|
|
|
$container_phids = $saved_query->getParameter('containerPHIDs', array());
|
|
$buildable_phids = $saved_query->getParameter('buildablePHIDs', array());
|
|
|
|
$all_phids = array_merge($container_phids, $buildable_phids);
|
|
|
|
$revision_names = array();
|
|
$diff_names = array();
|
|
$repository_names = array();
|
|
$commit_names = array();
|
|
|
|
if ($all_phids) {
|
|
$objects = id(new PhabricatorObjectQuery())
|
|
->setViewer($this->requireViewer())
|
|
->withPHIDs($all_phids)
|
|
->execute();
|
|
|
|
foreach ($all_phids as $phid) {
|
|
$object = idx($objects, $phid);
|
|
if (!$object) {
|
|
continue;
|
|
}
|
|
|
|
if ($object instanceof DifferentialRevision) {
|
|
$revision_names[] = 'D'.$object->getID();
|
|
} else if ($object instanceof DifferentialDiff) {
|
|
$diff_names[] = $object->getID();
|
|
} else if ($object instanceof PhabricatorRepository) {
|
|
$repository_names[] = 'r'.$object->getCallsign();
|
|
} else if ($object instanceof PhabricatorRepositoryCommit) {
|
|
$repository = $object->getRepository();
|
|
$commit_names[] = $repository->formatCommitName(
|
|
$object->getCommitIdentifier());
|
|
}
|
|
}
|
|
}
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('Differential Revisions'))
|
|
->setName('revisions')
|
|
->setValue(implode(', ', $revision_names)))
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('Differential Diffs'))
|
|
->setName('diffs')
|
|
->setValue(implode(', ', $diff_names)))
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('Repositories'))
|
|
->setName('repositories')
|
|
->setValue(implode(', ', $repository_names)))
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('Commits'))
|
|
->setName('commits')
|
|
->setValue(implode(', ', $commit_names)))
|
|
->appendChild(
|
|
id(new AphrontFormSelectControl())
|
|
->setLabel(pht('Origin'))
|
|
->setName('manual')
|
|
->setValue($this->getBoolFromQuery($saved_query, 'manual'))
|
|
->setOptions(
|
|
array(
|
|
'' => pht('(All Origins)'),
|
|
'true' => pht('Manual Buildables'),
|
|
'false' => pht('Automatic Buildables'),
|
|
)));
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/harbormaster/'.$path;
|
|
}
|
|
|
|
public function getBuiltinQueryNames() {
|
|
$names = array(
|
|
'all' => pht('All Buildables'),
|
|
);
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'all':
|
|
return $query;
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
}
|