Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94063063
DifferentialGetRawDiffConduitAPIMethod.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
Tue, Dec 3, 14:52
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Dec 5, 14:52 (2 d)
Engine
blob
Format
Raw Data
Handle
22728477
Attached To
rPH Phabricator
DifferentialGetRawDiffConduitAPIMethod.php
View Options
<?php
final
class
DifferentialGetRawDiffConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.getrawdiff'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Retrieve a raw diff'
);
}
public
function
defineParamTypes
()
{
return
array
(
'diffID'
=>
'required diffID'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty string'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR_NOT_FOUND'
=>
pht
(
'Diff not found.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$diff_id
=
$request
->
getValue
(
'diffID'
);
$viewer
=
$request
->
getUser
();
$diff
=
id
(
new
DifferentialDiffQuery
())
->
withIDs
(
array
(
$diff_id
))
->
setViewer
(
$viewer
)
->
needChangesets
(
true
)
->
executeOne
();
if
(!
$diff
)
{
throw
new
ConduitException
(
'ERR_NOT_FOUND'
);
}
$renderer
=
id
(
new
DifferentialRawDiffRenderer
())
->
setChangesets
(
$diff
->
getChangesets
())
->
setViewer
(
$viewer
)
->
setFormat
(
'git'
);
return
$renderer
->
buildPatch
();
}
}
Event Timeline
Log In to Comment