Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93604603
PhabricatorGitHubAuthProvider.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 30, 02:38
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 02:38 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22667434
Attached To
rPH Phabricator
PhabricatorGitHubAuthProvider.php
View Options
<?php
final
class
PhabricatorGitHubAuthProvider
extends
PhabricatorOAuth2AuthProvider
{
public
function
getProviderName
()
{
return
pht
(
'GitHub'
);
}
protected
function
getProviderConfigurationHelp
()
{
$uri
=
PhabricatorEnv
::
getProductionURI
(
'/'
);
$callback_uri
=
PhabricatorEnv
::
getURI
(
$this
->
getLoginURI
());
return
pht
(
"To configure GitHub OAuth, create a new GitHub Application here:"
.
"
\n\n
"
.
"https://github.com/settings/applications/new"
.
"
\n\n
"
.
"You should use these settings in your application:"
.
"
\n\n
"
.
" - **URL:** Set this to your full domain with protocol. For this "
.
" Phabricator install, the correct value is: `%s`
\n
"
.
" - **Callback URL**: Set this to: `%s`
\n
"
.
"
\n\n
"
.
"Once you've created an application, copy the **Client ID** and "
.
"**Client Secret** into the fields above."
,
$uri
,
$callback_uri
);
}
protected
function
newOAuthAdapter
()
{
return
new
PhutilGitHubAuthAdapter
();
}
protected
function
getLoginIcon
()
{
return
'Github'
;
}
public
function
getLoginURI
()
{
// TODO: Clean this up. See PhabricatorAuthOldOAuthRedirectController.
return
'/oauth/github/login/'
;
}
}
Event Timeline
Log In to Comment