Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92696338
PHIDInfoConduitAPIMethod.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, Nov 22, 21:06
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 21:06 (2 d)
Engine
blob
Format
Raw Data
Handle
22488649
Attached To
rPH Phabricator
PHIDInfoConduitAPIMethod.php
View Options
<?php
final
class
PHIDInfoConduitAPIMethod
extends
PHIDConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'phid.info'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
"Replaced by 'phid.query'."
);
}
public
function
getMethodDescription
()
{
return
pht
(
'Retrieve information about an arbitrary PHID.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'phid'
=>
'required phid'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict<string, wild>'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-PHID'
=>
pht
(
'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