Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98202841
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
Sat, Jan 11, 00:36
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 00:36 (2 d)
Engine
blob
Format
Raw Data
Handle
23533017
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