mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
40 lines
952 B
PHP
40 lines
952 B
PHP
<?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');
|
|
}
|
|
|
|
}
|