Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91111251
DifferentialCreateCommentConduitAPIMethod.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 8, 00:42
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Nov 10, 00:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22198678
Attached To
rPH Phabricator
DifferentialCreateCommentConduitAPIMethod.php
View Options
<?php
final
class
DifferentialCreateCommentConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.createcomment'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Add a comment to a Differential revision.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'revision_id'
=>
'required revisionid'
,
'message'
=>
'optional string'
,
'action'
=>
'optional string'
,
'silent'
=>
'optional bool'
,
'attach_inlines'
=>
'optional bool'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR_BAD_REVISION'
=>
pht
(
'Bad revision ID.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$revision
=
id
(
new
DifferentialRevisionQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getValue
(
'revision_id'
)))
->
needReviewerStatus
(
true
)
->
needReviewerAuthority
(
true
)
->
executeOne
();
if
(!
$revision
)
{
throw
new
ConduitException
(
'ERR_BAD_REVISION'
);
}
$xactions
=
array
();
$action
=
$request
->
getValue
(
'action'
);
if
(
$action
&&
(
$action
!=
'comment'
)
&&
(
$action
!=
'none'
))
{
$xactions
[]
=
id
(
new
DifferentialTransaction
())
->
setTransactionType
(
DifferentialTransaction
::
TYPE_ACTION
)
->
setNewValue
(
$action
);
}
$content
=
$request
->
getValue
(
'message'
);
if
(
strlen
(
$content
))
{
$xactions
[]
=
id
(
new
DifferentialTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
DifferentialTransactionComment
())
->
setContent
(
$content
));
}
if
(
$request
->
getValue
(
'attach_inlines'
))
{
$type_inline
=
DifferentialTransaction
::
TYPE_INLINE
;
$inlines
=
DifferentialTransactionQuery
::
loadUnsubmittedInlineComments
(
$viewer
,
$revision
);
foreach
(
$inlines
as
$inline
)
{
$xactions
[]
=
id
(
new
DifferentialTransaction
())
->
setTransactionType
(
$type_inline
)
->
attachComment
(
$inline
);
}
}
$editor
=
id
(
new
DifferentialTransactionEditor
())
->
setActor
(
$viewer
)
->
setDisableEmail
(
$request
->
getValue
(
'silent'
))
->
setContentSource
(
$request
->
newContentSource
())
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
);
$editor
->
applyTransactions
(
$revision
,
$xactions
);
return
array
(
'revisionid'
=>
$revision
->
getID
(),
'uri'
=>
PhabricatorEnv
::
getURI
(
'/D'
.
$revision
->
getID
()),
);
}
}
Event Timeline
Log In to Comment