Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F573764
UserFindConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
952 B
Referenced Files
None
Subscribers
None
UserFindConduitAPIMethod.php
View Options
<?php
final
class
UserFindConduitAPIMethod
extends
UserConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'user.find'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
'Obsoleted by "%s".'
,
'user.query'
);
}
public
function
getMethodDescription
()
{
return
pht
(
'Lookup PHIDs by username. Obsoleted by "%s".'
,
'user.query'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'aliases'
=>
'required list<string>'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict<string, phid>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$users
=
id
(
new
PhabricatorPeopleQuery
())
->
setViewer
(
$request
->
getUser
())
->
withUsernames
(
$request
->
getValue
(
'aliases'
,
array
()))
->
execute
();
return
mpull
(
$users
,
'getPHID'
,
'getUsername'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 6:08 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
96712
Default Alt Text
UserFindConduitAPIMethod.php (952 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment