Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121624019
PhabricatorAuthOldOAuthRedirectController.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, Jul 12, 14:11
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jul 14, 14:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27361166
Attached To
rPH Phabricator
PhabricatorAuthOldOAuthRedirectController.php
View Options
<?php
final
class
PhabricatorAuthOldOAuthRedirectController
extends
PhabricatorAuthController
{
public
function
shouldRequireLogin
()
{
return
false
;
}
public
function
shouldAllowRestrictedParameter
(
$parameter_name
)
{
if
(
$parameter_name
==
'code'
)
{
return
true
;
}
return
parent
::
shouldAllowRestrictedParameter
(
$parameter_name
);
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$provider
=
$request
->
getURIData
(
'provider'
);
// TODO: Most OAuth providers are OK with changing the redirect URI, but
// Google and GitHub are strict. We need to respect the old OAuth URI until
// we can get installs to migrate. This just keeps the old OAuth URI working
// by redirecting to the new one.
$provider_map
=
array
(
'google'
=>
'google:google.com'
,
'github'
=>
'github:github.com'
,
);
if
(!
isset
(
$provider_map
[
$provider
]))
{
return
new
Aphront404Response
();
}
$provider_key
=
$provider_map
[
$provider
];
$uri
=
$this
->
getRequest
()->
getRequestURI
();
$uri
->
setPath
(
$this
->
getApplicationURI
(
'login/'
.
$provider_key
.
'/'
));
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$uri
);
}
}
Event Timeline
Log In to Comment