mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
5721560663
Summary: Mostly just UI updates and policy enforcement. Improves error message when trying to authorize an already-authorized application. Test Plan: {F131584} {F131585} {F131586} Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D8564
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationOAuthServer extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/oauthserver/';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('OAuth Provider');
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'oauthserver';
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x99\x86";
|
|
}
|
|
|
|
public function getFlavorText() {
|
|
return pht('Login with Phabricator');
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function isBeta() {
|
|
return true;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/oauthserver/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?'
|
|
=> 'PhabricatorOAuthClientListController',
|
|
'auth/' => 'PhabricatorOAuthServerAuthController',
|
|
'test/(?P<id>\d+)/' => 'PhabricatorOAuthServerTestController',
|
|
'token/' => 'PhabricatorOAuthServerTokenController',
|
|
'client/' => array(
|
|
'create/' => 'PhabricatorOAuthClientEditController',
|
|
'delete/(?P<phid>[^/]+)/' => 'PhabricatorOAuthClientDeleteController',
|
|
'edit/(?P<phid>[^/]+)/' => 'PhabricatorOAuthClientEditController',
|
|
'view/(?P<phid>[^/]+)/' => 'PhabricatorOAuthClientViewController',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
protected function getCustomCapabilities() {
|
|
return array(
|
|
PhabricatorOAuthServerCapabilityCreateClients::CAPABILITY => array(
|
|
'default' => PhabricatorPolicies::POLICY_ADMIN,
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|