mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-12 08:36:13 +01:00
1898864b6c
Summary: Fix T9662. Record who initiated the build, and allow this information as a parameter. In this implementation, a 're-run' keeps the original initiator, which we maybe not desired? Test Plan: Make a HTTP step with initiator.phid, trigger manually, via HM, via ./bin/harbormaster build. Look at requests made. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Maniphest Tasks: T9662 Differential Revision: https://secure.phabricator.com/D14380
88 lines
2.1 KiB
PHP
88 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class HarbormasterRunBuildPlansHeraldAction
|
|
extends HeraldAction {
|
|
|
|
const DO_BUILD = 'do.build';
|
|
|
|
const ACTIONCONST = 'harbormaster.build';
|
|
|
|
public function getActionGroupKey() {
|
|
return HeraldSupportActionGroup::ACTIONGROUPKEY;
|
|
}
|
|
|
|
public function supportsObject($object) {
|
|
$adapter = $this->getAdapter();
|
|
return ($adapter instanceof HarbormasterBuildableAdapterInterface);
|
|
}
|
|
|
|
protected function applyBuilds(array $phids, HeraldRule $rule) {
|
|
$adapter = $this->getAdapter();
|
|
|
|
$allowed_types = array(
|
|
HarbormasterBuildPlanPHIDType::TYPECONST,
|
|
);
|
|
|
|
$targets = $this->loadStandardTargets($phids, $allowed_types, array());
|
|
if (!$targets) {
|
|
return;
|
|
}
|
|
|
|
$phids = array_fuse(array_keys($targets));
|
|
|
|
foreach ($phids as $phid) {
|
|
$request = id(new HarbormasterBuildRequest())
|
|
->setBuildPlanPHID($phid)
|
|
->setInitiatorPHID($rule->getPHID());
|
|
$adapter->queueHarbormasterBuildRequest($request);
|
|
}
|
|
|
|
$this->logEffect(self::DO_BUILD, $phids);
|
|
}
|
|
|
|
protected function getActionEffectMap() {
|
|
return array(
|
|
self::DO_BUILD => array(
|
|
'icon' => 'fa-play',
|
|
'color' => 'green',
|
|
'name' => pht('Building'),
|
|
),
|
|
);
|
|
}
|
|
|
|
protected function renderActionEffectDescription($type, $data) {
|
|
switch ($type) {
|
|
case self::DO_BUILD:
|
|
return pht(
|
|
'Started %s build(s): %s.',
|
|
phutil_count($data),
|
|
$this->renderHandleList($data));
|
|
}
|
|
}
|
|
|
|
public function getHeraldActionName() {
|
|
return pht('Run build plans');
|
|
}
|
|
|
|
public function supportsRuleType($rule_type) {
|
|
return ($rule_type != HeraldRuleTypeConfig::RULE_TYPE_PERSONAL);
|
|
}
|
|
|
|
public function applyEffect($object, HeraldEffect $effect) {
|
|
return $this->applyBuilds($effect->getTarget(), $effect->getRule());
|
|
}
|
|
|
|
public function getHeraldActionStandardType() {
|
|
return self::STANDARD_PHID_LIST;
|
|
}
|
|
|
|
protected function getDatasource() {
|
|
return new HarbormasterBuildPlanDatasource();
|
|
}
|
|
|
|
public function renderActionDescription($value) {
|
|
return pht(
|
|
'Run build plans: %s.',
|
|
$this->renderHandleList($value));
|
|
}
|
|
}
|