Page MenuHomec4science

PHIDInfoConduitAPIMethod.php
No OneTemporary

File Metadata

Created
Fri, Nov 22, 20:42

PHIDInfoConduitAPIMethod.php

<?php
final class PHIDInfoConduitAPIMethod extends PHIDConduitAPIMethod {
public function getAPIMethodName() {
return 'phid.info';
}
public function getMethodStatus() {
return self::METHOD_STATUS_DEPRECATED;
}
public function getMethodStatusDescription() {
return pht("Replaced by 'phid.query'.");
}
public function getMethodDescription() {
return pht('Retrieve information about an arbitrary PHID.');
}
protected function defineParamTypes() {
return array(
'phid' => 'required phid',
);
}
protected function defineReturnType() {
return 'nonempty dict<string, wild>';
}
protected function defineErrorTypes() {
return array(
'ERR-BAD-PHID' => pht('No such object exists.'),
);
}
protected function execute(ConduitAPIRequest $request) {
$phid = $request->getValue('phid');
$handle = id(new PhabricatorHandleQuery())
->setViewer($request->getUser())
->withPHIDs(array($phid))
->executeOne();
if (!$handle->isComplete()) {
throw new ConduitException('ERR-BAD-PHID');
}
return $this->buildHandleInformationDictionary($handle);
}
}

Event Timeline