Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110237940
ConduitAPI_phid_info_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, Apr 25, 07:49
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 27, 07:49 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25798159
Attached To
rPH Phabricator
ConduitAPI_phid_info_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_phid_info_Method
extends
ConduitAPI_phid_Method
{
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodStatusDescription
()
{
return
"Replaced by 'phid.query'."
;
}
public
function
getMethodDescription
()
{
return
"Retrieve information about an arbitrary PHID."
;
}
public
function
defineParamTypes
()
{
return
array
(
'phid'
=>
'required phid'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict<string, wild>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-PHID'
=>
'No such object exists.'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$phid
=
$request
->
getValue
(
'phid'
);
$handles
=
id
(
new
PhabricatorObjectHandleData
(
array
(
$phid
)))
->
setViewer
(
$request
->
getUser
())
->
loadHandles
();
$handle
=
$handles
[
$phid
];
if
(!
$handle
->
isComplete
())
{
throw
new
ConduitException
(
'ERR-BAD-PHID'
);
}
return
$this
->
buildHandleInformationDictionary
(
$handle
);
}
}
Event Timeline
Log In to Comment