Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108008633
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
Sun, Apr 13, 02:59
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Apr 15, 02:59 (2 d)
Engine
blob
Format
Raw Data
Handle
25512243
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.'
);
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_FROZEN
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
'This method is frozen and will eventually be deprecated. New code '
.
'should use "differential.revision.edit" instead.'
);
}
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