Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F986852
PhabricatorAuditAddCommentController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorAuditAddCommentController.php
View Options
<?php
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'
));
// make sure we only add auditors or ccs if the action matches
switch
(
$action
)
{
case
'add_auditors'
:
$auditors
=
$request
->
getArr
(
'auditors'
);
$ccs
=
array
();
break
;
case
'add_ccs'
:
$auditors
=
array
();
$ccs
=
$request
->
getArr
(
'ccs'
);
break
;
default
:
$auditors
=
array
();
$ccs
=
array
();
break
;
}
id
(
new
PhabricatorAuditCommentEditor
(
$commit
))
->
setActor
(
$user
)
->
setAttachInlineComments
(
true
)
->
addAuditors
(
$auditors
)
->
addCCs
(
$ccs
)
->
addComment
(
$comment
);
$handles
=
$this
->
loadViewerHandles
(
$phids
);
$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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 5:42 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
238391
Default Alt Text
PhabricatorAuditAddCommentController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment