mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +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
38 lines
905 B
PHP
38 lines
905 B
PHP
<?php
|
|
|
|
final class UserWhoAmIConduitAPIMethod extends UserConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'user.whoami';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Retrieve information about the logged-in user.');
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
return array();
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'nonempty dict<string, wild>';
|
|
}
|
|
|
|
public function getRequiredScope() {
|
|
return PhabricatorOAuthServerScope::SCOPE_WHOAMI;
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$person = id(new PhabricatorPeopleQuery())
|
|
->setViewer($request->getUser())
|
|
->needProfileImage(true)
|
|
->withPHIDs(array($request->getUser()->getPHID()))
|
|
->executeOne();
|
|
|
|
return $this->buildUserInformationDictionary(
|
|
$person,
|
|
$with_email = true,
|
|
$with_availability = false);
|
|
}
|
|
|
|
}
|