Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98119757
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, Jan 10, 00:07
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 00:07 (2 d)
Engine
blob
Format
Raw Data
Handle
23509771
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'
);
$handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$request
->
getUser
())
->
withPHIDs
(
array
(
$phid
))
->
executeOne
();
if
(!
$handle
->
isComplete
())
{
throw
new
ConduitException
(
'ERR-BAD-PHID'
);
}
return
$this
->
buildHandleInformationDictionary
(
$handle
);
}
}
Event Timeline
Log In to Comment