return correct HTTP status code for OMB errors
This commit is contained in:
parent
90689008ee
commit
9b4ee90704
@ -74,6 +74,14 @@ class PostnoticeAction extends Action
|
||||
$srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
|
||||
omb_oauth_server());
|
||||
$srv->handlePostNotice();
|
||||
} catch (OMB_RemoteServiceException $rse) {
|
||||
$msg = $rse->getMessage();
|
||||
if (preg_match('/^Revoked accesstoken/', $msg) ||
|
||||
preg_match('/^No subscriber/', $msg)) {
|
||||
$this->clientError($msg, 403);
|
||||
} else {
|
||||
$this->clientError($msg);
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
$this->serverError($e->getMessage());
|
||||
return;
|
||||
|
@ -77,6 +77,14 @@ class UpdateprofileAction extends Action
|
||||
$srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
|
||||
omb_oauth_server());
|
||||
$srv->handleUpdateProfile();
|
||||
} catch (OMB_RemoteServiceException $rse) {
|
||||
$msg = $rse->getMessage();
|
||||
if (preg_match('/^Revoked accesstoken/', $msg) ||
|
||||
preg_match('/^No subscriber/', $msg)) {
|
||||
$this->clientError($msg, 403);
|
||||
} else {
|
||||
$this->clientError($msg);
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
$this->serverError($e->getMessage());
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user