Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568318
DifferentialGetRawDiffConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'diffID'
=>
'required diffID'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty string'
;
}
protected
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
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:22 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
116764
Default Alt Text
DifferentialGetRawDiffConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment