Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1523454
PhabricatorAuthManagementRefreshWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PhabricatorAuthManagementRefreshWorkflow.php
View Options
<?php
final
class
PhabricatorAuthManagementRefreshWorkflow
extends
PhabricatorAuthManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'refresh'
)
->
setExamples
(
'**refresh**'
)
->
setSynopsis
(
pht
(
'Refresh OAuth access tokens. This is primarily useful for '
.
'development and debugging.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'user'
,
'param'
=>
'user'
,
'help'
=>
pht
(
'Refresh tokens for a given user.'
),
),
array
(
'name'
=>
'type'
,
'param'
=>
'provider'
,
'help'
=>
pht
(
'Refresh tokens for a given provider type.'
),
),
array
(
'name'
=>
'domain'
,
'param'
=>
'domain'
,
'help'
=>
pht
(
'Refresh tokens for a given domain.'
),
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$viewer
=
$this
->
getViewer
();
$query
=
id
(
new
PhabricatorExternalAccountQuery
())
->
setViewer
(
$viewer
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
));
$username
=
$args
->
getArg
(
'user'
);
if
(
strlen
(
$username
))
{
$user
=
id
(
new
PhabricatorPeopleQuery
())
->
setViewer
(
$viewer
)
->
withUsernames
(
array
(
$username
))
->
executeOne
();
if
(
$user
)
{
$query
->
withUserPHIDs
(
array
(
$user
->
getPHID
()));
}
else
{
throw
new
PhutilArgumentUsageException
(
pht
(
'No such user "%s"!'
,
$username
));
}
}
$type
=
$args
->
getArg
(
'type'
);
if
(
strlen
(
$type
))
{
$query
->
withAccountTypes
(
array
(
$type
));
}
$domain
=
$args
->
getArg
(
'domain'
);
if
(
strlen
(
$domain
))
{
$query
->
withAccountDomains
(
array
(
$domain
));
}
$accounts
=
$query
->
execute
();
if
(!
$accounts
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'No accounts match the arguments!'
));
}
else
{
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Found %s account(s) to refresh.'
,
new
PhutilNumber
(
count
(
$accounts
))));
}
$providers
=
PhabricatorAuthProvider
::
getAllEnabledProviders
();
foreach
(
$accounts
as
$account
)
{
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Refreshing account #%d (%s/%s).'
,
$account
->
getID
(),
$account
->
getAccountType
(),
$account
->
getAccountDomain
()));
$key
=
$account
->
getProviderKey
();
if
(
empty
(
$providers
[
$key
]))
{
$console
->
writeOut
(
"> %s
\n
"
,
pht
(
'Skipping, provider is not enabled or does not exist.'
));
continue
;
}
$provider
=
$providers
[
$key
];
if
(!(
$provider
instanceof
PhabricatorOAuth2AuthProvider
))
{
$console
->
writeOut
(
"> %s
\n
"
,
pht
(
'Skipping, provider is not an OAuth2 provider.'
));
continue
;
}
$adapter
=
$provider
->
getAdapter
();
if
(!
$adapter
->
supportsTokenRefresh
())
{
$console
->
writeOut
(
"> %s
\n
"
,
pht
(
'Skipping, provider does not support token refresh.'
));
continue
;
}
$refresh_token
=
$account
->
getProperty
(
'oauth.token.refresh'
);
if
(!
$refresh_token
)
{
$console
->
writeOut
(
"> %s
\n
"
,
pht
(
'Skipping, provider has no stored refresh token.'
));
continue
;
}
$console
->
writeOut
(
"+ %s
\n
"
,
pht
(
'Refreshing token, current token expires in %s seconds.'
,
new
PhutilNumber
(
$account
->
getProperty
(
'oauth.token.access.expires'
)
-
time
())));
$token
=
$provider
->
getOAuthAccessToken
(
$account
,
$force_refresh
=
true
);
if
(!
$token
)
{
$console
->
writeOut
(
"* %s
\n
"
,
pht
(
'Unable to refresh token!'
));
continue
;
}
$console
->
writeOut
(
"+ %s
\n
"
,
pht
(
'Refreshed token, new token expires in %s seconds.'
,
new
PhutilNumber
(
$account
->
getProperty
(
'oauth.token.access.expires'
)
-
time
())));
}
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Done.'
));
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jul 14, 9:07 AM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
351539
Default Alt Text
PhabricatorAuthManagementRefreshWorkflow.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment