Proper HTTP status codes for WebFinger search miss
This commit is contained in:
parent
6d0ac21185
commit
de53e74f40
|
@ -36,12 +36,17 @@ class WebfingerAction extends XrdAction
|
||||||
// throws exception if resource is empty
|
// throws exception if resource is empty
|
||||||
$this->resource = Discovery::normalize($this->trimmed('resource'));
|
$this->resource = Discovery::normalize($this->trimmed('resource'));
|
||||||
|
|
||||||
if (Event::handle('StartGetWebFingerResource', array($this->resource, &$this->target, $this->args))) {
|
try {
|
||||||
Event::handle('EndGetWebFingerResource', array($this->resource, &$this->target, $this->args));
|
if (Event::handle('StartGetWebFingerResource', array($this->resource, &$this->target, $this->args))) {
|
||||||
|
Event::handle('EndGetWebFingerResource', array($this->resource, &$this->target, $this->args));
|
||||||
|
}
|
||||||
|
} catch (NoSuchUserException $e) {
|
||||||
|
throw new ServerException($e->getMessage(), 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$this->target instanceof WebFingerResource) {
|
if (!$this->target instanceof WebFingerResource) {
|
||||||
throw new ServerException('Resource not found in local database.', 404);
|
// TRANS: Error message when an object URI which we cannot find was requested
|
||||||
|
throw new ServerException(_m('Resource not found in local database.'), 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user