Test Plan: Added CC's/Auditors, clicked the form elements, and saw correct behaviour. Verified that metadata was present in the detail table. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley, 20after4, Koolvin Maniphest Tasks: T904 Differential Revision: https://secure.phabricator.com/D2002
72 lines
1.9 KiB
PHP
72 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
final class PhabricatorAuditAddCommentController
|
|
extends PhabricatorAuditController {
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
if (!$request->isFormPost()) {
|
|
return new Aphront403Response();
|
|
}
|
|
|
|
$commit_phid = $request->getStr('commit');
|
|
$commit = id(new PhabricatorRepositoryCommit())->loadOneWhere(
|
|
'phid = %s',
|
|
$commit_phid);
|
|
|
|
if (!$commit) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$phids = array($commit_phid);
|
|
|
|
$action = $request->getStr('action');
|
|
|
|
$comment = id(new PhabricatorAuditComment())
|
|
->setAction($action)
|
|
->setContent($request->getStr('content'));
|
|
|
|
$auditors = $request->getArr('auditors');
|
|
$ccs = $request->getArr('ccs');
|
|
|
|
id(new PhabricatorAuditCommentEditor($commit))
|
|
->setUser($user)
|
|
->setAttachInlineComments(true)
|
|
->addAuditors($auditors)
|
|
->addCCs($ccs)
|
|
->addComment($comment);
|
|
|
|
$handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
|
|
$uri = $handles[$commit_phid]->getURI();
|
|
|
|
$draft = id(new PhabricatorDraft())->loadOneWhere(
|
|
'authorPHID = %s AND draftKey = %s',
|
|
$user->getPHID(),
|
|
'diffusion-audit-'.$commit->getID());
|
|
if ($draft) {
|
|
$draft->delete();
|
|
}
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($uri);
|
|
}
|
|
|
|
}
|