Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F949754
DiffusionCreateCommentConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 1:44 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223942
Default Alt Text
DiffusionCreateCommentConduitAPIMethod.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment