Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96176358
UserInfoConduitAPIMethod.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, Dec 23, 11:44
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 11:44 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23138416
Attached To
rPH Phabricator
UserInfoConduitAPIMethod.php
View Options
<?php
final
class
UserInfoConduitAPIMethod
extends
UserConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'user.info'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodStatusDescription
()
{
return
"Replaced by 'user.query'."
;
}
public
function
getMethodDescription
()
{
return
'Retrieve information about a user by PHID.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'phid'
=>
'required phid'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict<string, wild>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-USER'
=>
'No such user exists.'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$user
=
id
(
new
PhabricatorUser
())->
loadOneWhere
(
'phid = %s'
,
$request
->
getValue
(
'phid'
));
if
(!
$user
)
{
throw
new
ConduitException
(
'ERR-BAD-USER'
);
}
return
$this
->
buildUserInformationDictionary
(
$user
);
}
}
Event Timeline
Log In to Comment