Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120152255
ConduitAPI_phriction_history_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
Wed, Jul 2, 07:40
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jul 4, 07:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27141030
Attached To
rPH Phabricator
ConduitAPI_phriction_history_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_phriction_history_Method
extends
ConduitAPI_phriction_Method
{
public
function
getMethodDescription
()
{
return
"Retrieve history about a Phriction docuemnt."
;
}
public
function
defineParamTypes
()
{
return
array
(
'slug'
=>
'required string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty list'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-DOCUMENT'
=>
'No such document exists.'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$slug
=
$request
->
getValue
(
'slug'
);
$doc
=
id
(
new
PhrictionDocument
())->
loadOneWhere
(
'slug = %s'
,
PhabricatorSlug
::
normalize
(
$slug
));
if
(!
$doc
)
{
throw
new
ConduitException
(
'ERR-BAD-DOCUMENT'
);
}
$content
=
id
(
new
PhrictionContent
())->
loadAllWhere
(
'documentID = %d ORDER BY version DESC'
,
$doc
->
getID
());
$results
=
array
();
foreach
(
$content
as
$version
)
{
$results
[]
=
$this
->
buildDocumentContentDictionary
(
$doc
,
$version
);
}
return
$results
;
}
}
Event Timeline
Log In to Comment