Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108383712
PhabricatorOAuthServerTestController.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
Wed, Apr 16, 09:56
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Apr 18, 09:56 (54 m, 21 s)
Engine
blob
Format
Raw Data
Handle
25578464
Attached To
rPH Phabricator
PhabricatorOAuthServerTestController.php
View Options
<?php
/**
* @group oauthserver
*/
final
class
PhabricatorOAuthServerTestController
extends
PhabricatorOAuthServerController
{
public
function
shouldRequireLogin
()
{
return
true
;
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$current_user
=
$request
->
getUser
();
$server
=
new
PhabricatorOAuthServer
();
$panels
=
array
();
$results
=
array
();
if
(
$request
->
isFormPost
())
{
$action
=
$request
->
getStr
(
'action'
);
switch
(
$action
)
{
case
'testclientauthorization'
:
$user_phid
=
$current_user
->
getPHID
();
$client_phid
=
$request
->
getStr
(
'client_phid'
);
$client
=
id
(
new
PhabricatorOAuthServerClient
)
->
loadOneWhere
(
'phid = %s'
,
$client_phid
);
if
(!
$client
)
{
throw
new
Exception
(
'Failed to load client!'
);
}
if
(
$client
->
getCreatorPHID
()
!=
$user_phid
||
$current_user
->
getPHID
()
!=
$user_phid
)
{
throw
new
Exception
(
'Only allowed to make test data for yourself '
.
'for clients you own!'
);
}
// blankclientauthorizations don't get scope
$scope
=
array
();
$server
->
setUser
(
$current_user
);
$server
->
setClient
(
$client
);
$authorization
=
$server
->
authorizeClient
(
$scope
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/oauthserver/clientauthorization/?edited='
.
$authorization
->
getPHID
());
break
;
default
:
break
;
}
}
}
}
Event Timeline
Log In to Comment