mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
8cbfb49b4e
Summary: Ref T5245. These were a bad idea. We no longer need actors for edge edits either, so remove those. Generally, edges have fit into the policy model as pure/low-level infrastructure, and they do not have any policy or capability information in and of themselves. Test Plan: `grep` Reviewers: chad, btrahan, joshuaspence Reviewed By: joshuaspence Subscribers: epriestley Maniphest Tasks: T5245 Differential Revision: https://secure.phabricator.com/D9840
97 lines
2.9 KiB
PHP
97 lines
2.9 KiB
PHP
<?php
|
|
|
|
final class DiffusionCommitEditController extends DiffusionController {
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$data['user'] = $this->getRequest()->getUser();
|
|
$this->diffusionRequest = DiffusionRequest::newFromDictionary($data);
|
|
}
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
$drequest = $this->getDiffusionRequest();
|
|
$callsign = $drequest->getRepository()->getCallsign();
|
|
$repository = $drequest->getRepository();
|
|
$commit = $drequest->loadCommit();
|
|
$page_title = pht('Edit Diffusion Commit');
|
|
|
|
if (!$commit) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$commit_phid = $commit->getPHID();
|
|
$edge_type = PhabricatorEdgeConfig::TYPE_COMMIT_HAS_PROJECT;
|
|
$current_proj_phids = PhabricatorEdgeQuery::loadDestinationPHIDs(
|
|
$commit_phid,
|
|
$edge_type);
|
|
$handles = $this->loadViewerHandles($current_proj_phids);
|
|
$proj_t_values = $handles;
|
|
|
|
if ($request->isFormPost()) {
|
|
$proj_phids = $request->getArr('projects');
|
|
$new_proj_phids = array_values($proj_phids);
|
|
$rem_proj_phids = array_diff($current_proj_phids,
|
|
$new_proj_phids);
|
|
|
|
$editor = id(new PhabricatorEdgeEditor());
|
|
foreach ($rem_proj_phids as $phid) {
|
|
$editor->removeEdge($commit_phid, $edge_type, $phid);
|
|
}
|
|
foreach ($new_proj_phids as $phid) {
|
|
$editor->addEdge($commit_phid, $edge_type, $phid);
|
|
}
|
|
$editor->save();
|
|
|
|
id(new PhabricatorSearchIndexer())
|
|
->queueDocumentForIndexing($commit->getPHID());
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
->setURI('/r'.$callsign.$commit->getCommitIdentifier());
|
|
}
|
|
|
|
$tokenizer_id = celerity_generate_unique_node_id();
|
|
$form = id(new AphrontFormView())
|
|
->setUser($user)
|
|
->setAction($request->getRequestURI()->getPath())
|
|
->appendChild(
|
|
id(new AphrontFormTokenizerControl())
|
|
->setLabel(pht('Projects'))
|
|
->setName('projects')
|
|
->setValue($proj_t_values)
|
|
->setID($tokenizer_id)
|
|
->setCaption(
|
|
javelin_tag(
|
|
'a',
|
|
array(
|
|
'href' => '/project/create/',
|
|
'mustcapture' => true,
|
|
'sigil' => 'project-create',
|
|
),
|
|
pht('Create New Project')))
|
|
->setDatasource(new PhabricatorProjectDatasource()));
|
|
|
|
Javelin::initBehavior('project-create', array(
|
|
'tokenizerID' => $tokenizer_id,
|
|
));
|
|
|
|
$submit = id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Save'))
|
|
->addCancelButton('/r'.$callsign.$commit->getCommitIdentifier());
|
|
$form->appendChild($submit);
|
|
|
|
$form_box = id(new PHUIObjectBoxView())
|
|
->setHeaderText($page_title)
|
|
->setForm($form);
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$form_box,
|
|
),
|
|
array(
|
|
'title' => $page_title,
|
|
));
|
|
}
|
|
|
|
}
|