Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100491480
ConduitAPI_differential_createinline_Method.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, Jan 31, 05:35
Size
3 KB
Mime Type
text/x-php
Expires
Sun, Feb 2, 05:35 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23976243
Attached To
rPH Phabricator
ConduitAPI_differential_createinline_Method.php
View Options
<?php
final
class
ConduitAPI_differential_createinline_Method
extends
ConduitAPI_differential_Method
{
public
function
getMethodDescription
()
{
return
'Add an inline comment to a Differential revision.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'revisionID'
=>
'optional revisionid'
,
'diffID'
=>
'optional diffid'
,
'filePath'
=>
'required string'
,
'isNewFile'
=>
'required bool'
,
'lineNumber'
=>
'required int'
,
'lineLength'
=>
'optional int'
,
'content'
=>
'required string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-REVISION'
=>
'Bad revision ID.'
,
'ERR-BAD-DIFF'
=>
'Bad diff ID, or diff does not belong to revision.'
,
'ERR-NEED-DIFF'
=>
'Neither revision ID nor diff ID was provided.'
,
'ERR-NEED-FILE'
=>
'A file path was not provided.'
,
'ERR-BAD-FILE'
=>
"Requested file doesn't exist in this revision."
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$rid
=
$request
->
getValue
(
'revisionID'
);
$did
=
$request
->
getValue
(
'diffID'
);
if
(
$rid
)
{
// Given both a revision and a diff, check that they match.
// Given only a revision, find the active diff.
$revision
=
id
(
new
DifferentialRevisionQuery
())
->
setViewer
(
$request
->
getUser
())
->
withIDs
(
array
(
$rid
))
->
executeOne
();
if
(!
$revision
)
{
throw
new
ConduitException
(
'ERR-BAD-REVISION'
);
}
if
(!
$did
)
{
// did not!
$diff
=
$revision
->
loadActiveDiff
();
$did
=
$diff
->
getID
();
}
else
{
// did too!
$diff
=
id
(
new
DifferentialDiff
())->
load
(
$did
);
if
(!
$diff
||
$diff
->
getRevisionID
()
!=
$rid
)
{
throw
new
ConduitException
(
'ERR-BAD-DIFF'
);
}
}
}
else
if
(
$did
)
{
// Given only a diff, find the parent revision.
$diff
=
id
(
new
DifferentialDiff
())->
load
(
$did
);
if
(!
$diff
)
{
throw
new
ConduitException
(
'ERR-BAD-DIFF'
);
}
$rid
=
$diff
->
getRevisionID
();
}
else
{
// Given neither, bail.
throw
new
ConduitException
(
'ERR-NEED-DIFF'
);
}
$file
=
$request
->
getValue
(
'filePath'
);
if
(!
$file
)
{
throw
new
ConduitException
(
'ERR-NEED-FILE'
);
}
$changes
=
id
(
new
DifferentialChangeset
())->
loadAllWhere
(
'diffID = %d'
,
$did
);
$cid
=
null
;
foreach
(
$changes
as
$id
=>
$change
)
{
if
(
$file
==
$change
->
getFilename
())
{
$cid
=
$id
;
}
}
if
(
$cid
==
null
)
{
throw
new
ConduitException
(
'ERR-BAD-FILE'
);
}
$inline
=
id
(
new
DifferentialInlineComment
())
->
setRevisionID
(
$rid
)
->
setChangesetID
(
$cid
)
->
setAuthorPHID
(
$request
->
getUser
()->
getPHID
())
->
setContent
(
$request
->
getValue
(
'content'
))
->
setIsNewFile
(
$request
->
getValue
(
'isNewFile'
))
->
setLineNumber
(
$request
->
getValue
(
'lineNumber'
))
->
setLineLength
(
$request
->
getValue
(
'lineLength'
,
0
))
->
save
();
// Load everything again, just to be safe.
$changeset
=
id
(
new
DifferentialChangeset
())
->
load
(
$inline
->
getChangesetID
());
return
$this
->
buildInlineInfoDictionary
(
$inline
,
$changeset
);
}
}
Event Timeline
Log In to Comment