Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104539144
ConduitAPI_diffusion_rawdiffquery_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
Mon, Mar 10, 07:10
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 07:10 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
24806766
Attached To
rPH Phabricator
ConduitAPI_diffusion_rawdiffquery_Method.php
View Options
<?php
final
class
ConduitAPI_diffusion_rawdiffquery_Method
extends
ConduitAPI_diffusion_abstractquery_Method
{
public
function
getMethodDescription
()
{
return
'Get raw diff information from a repository for a specific commit at an '
.
'(optional) path.'
;
}
public
function
defineReturnType
()
{
return
'string'
;
}
protected
function
defineCustomParamTypes
()
{
return
array
(
'commit'
=>
'required string'
,
'path'
=>
'optional string'
,
'timeout'
=>
'optional int'
,
'byteLimit'
=>
'optional int'
,
'linesOfContext'
=>
'optional int'
,
'againstCommit'
=>
'optional string'
,
);
}
protected
function
getResult
(
ConduitAPIRequest
$request
)
{
$drequest
=
$this
->
getDiffusionRequest
();
$raw_query
=
DiffusionRawDiffQuery
::
newFromDiffusionRequest
(
$drequest
);
$timeout
=
$request
->
getValue
(
'timeout'
);
if
(
$timeout
!==
null
)
{
$raw_query
->
setTimeout
(
$timeout
);
}
$lines_of_context
=
$request
->
getValue
(
'linesOfContext'
);
if
(
$lines_of_context
!==
null
)
{
$raw_query
->
setLinesOfContext
(
$lines_of_context
);
}
$against_commit
=
$request
->
getValue
(
'againstCommit'
);
if
(
$against_commit
!==
null
)
{
$raw_query
->
setAgainstCommit
(
$against_commit
);
}
$byte_limit
=
$request
->
getValue
(
'byteLimit'
);
if
(
$byte_limit
!==
null
)
{
$raw_query
->
setByteLimit
(
$byte_limit
);
}
return
$raw_query
->
loadRawDiff
();
}
}
Event Timeline
Log In to Comment