Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92654203
PhabricatorAuthManagementUntrustOAuthClientWorkflow.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
Fri, Nov 22, 10:32
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 10:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22478673
Attached To
rPH Phabricator
PhabricatorAuthManagementUntrustOAuthClientWorkflow.php
View Options
<?php
final
class
PhabricatorAuthManagementUntrustOAuthClientWorkflow
extends
PhabricatorAuthManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'untrust-oauth-client'
)
->
setExamples
(
'**untrust-oauth-client** [--id client_id]'
)
->
setSynopsis
(
pht
(
'Set Phabricator to not trust an OAuth client. Phabricator '
.
'redirects to trusted OAuth clients that users have authorized '
.
'without user intervention.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'id'
,
'param'
=>
'id'
,
'help'
=>
pht
(
'The id of the OAuth client.'
),
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$id
=
$args
->
getArg
(
'id'
);
if
(!
$id
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify an OAuth client ID with %s.'
,
'--id'
));
}
$client
=
id
(
new
PhabricatorOAuthServerClientQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$client
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Failed to find an OAuth client with ID %s.'
,
$id
));
}
if
(!
$client
->
getIsTrusted
())
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Phabricator already does not trust OAuth client "%s".'
,
$client
->
getName
()));
}
$client
->
setIsTrusted
(
0
);
$client
->
save
();
$console
=
PhutilConsole
::
getConsole
();
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Updated; Phabricator does not trust OAuth client %s.'
,
$client
->
getName
()));
}
}
Event Timeline
Log In to Comment