Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93585686
DiffusionCreateCommentConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 29, 23:01
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 23:01 (2 d)
Engine
blob
Format
Raw Data
Handle
22667663
Attached To
rPH Phabricator
DiffusionCreateCommentConduitAPIMethod.php
View Options
<?php
final
class
DiffusionCreateCommentConduitAPIMethod
extends
DiffusionConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'diffusion.createcomment'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Add a comment to a Diffusion commit. By specifying an action '
.
'of "%s", "%s", "%s", or "%s", auditing actions can '
.
'be triggered. Defaults to "%s".'
,
'concern'
,
'accept'
,
'resign'
,
'close'
,
'comment'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'phid'
=>
'required string'
,
'action'
=>
'optional string'
,
'message'
=>
'required string'
,
'silent'
=>
'optional bool'
,
);
}
protected
function
defineReturnType
()
{
return
'bool'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR_BAD_COMMIT'
=>
pht
(
'No commit found with that PHID.'
),
'ERR_BAD_ACTION'
=>
pht
(
'Invalid action type.'
),
'ERR_MISSING_MESSAGE'
=>
pht
(
'Message is required.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$commit_phid
=
$request
->
getValue
(
'phid'
);
$commit
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$request
->
getUser
())
->
withPHIDs
(
array
(
$commit_phid
))
->
needAuditRequests
(
true
)
->
executeOne
();
if
(!
$commit
)
{
throw
new
ConduitException
(
'ERR_BAD_COMMIT'
);
}
$message
=
trim
(
$request
->
getValue
(
'message'
));
if
(!
$message
)
{
throw
new
ConduitException
(
'ERR_MISSING_MESSAGE'
);
}
$action
=
$request
->
getValue
(
'action'
);
if
(!
$action
)
{
$action
=
PhabricatorAuditActionConstants
::
COMMENT
;
}
// Disallow ADD_CCS, ADD_AUDITORS forever.
if
(!
in_array
(
$action
,
array
(
PhabricatorAuditActionConstants
::
CONCERN
,
PhabricatorAuditActionConstants
::
ACCEPT
,
PhabricatorAuditActionConstants
::
COMMENT
,
PhabricatorAuditActionConstants
::
RESIGN
,
PhabricatorAuditActionConstants
::
CLOSE
,
)))
{
throw
new
ConduitException
(
'ERR_BAD_ACTION'
);
}
$xactions
=
array
();
if
(
$action
!=
PhabricatorAuditActionConstants
::
COMMENT
)
{
$xactions
[]
=
id
(
new
PhabricatorAuditTransaction
())
->
setTransactionType
(
PhabricatorAuditActionConstants
::
ACTION
)
->
setNewValue
(
$action
);
}
if
(
strlen
(
$message
))
{
$xactions
[]
=
id
(
new
PhabricatorAuditTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
PhabricatorAuditTransactionComment
())
->
setCommitPHID
(
$commit
->
getPHID
())
->
setContent
(
$message
));
}
id
(
new
PhabricatorAuditEditor
())
->
setActor
(
$request
->
getUser
())
->
setContentSourceFromConduitRequest
(
$request
)
->
setDisableEmail
(
$request
->
getValue
(
'silent'
))
->
setContinueOnMissingFields
(
true
)
->
applyTransactions
(
$commit
,
$xactions
);
return
true
;
}
}
Event Timeline
Log In to Comment