Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90720862
PhabricatorAsanaAuthProvider.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
Mon, Nov 4, 04:11
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 6, 04:11 (2 d)
Engine
blob
Format
Raw Data
Handle
22098709
Attached To
rPH Phabricator
PhabricatorAsanaAuthProvider.php
View Options
<?php
final
class
PhabricatorAsanaAuthProvider
extends
PhabricatorOAuth2AuthProvider
{
public
function
getProviderName
()
{
return
pht
(
'Asana'
);
}
protected
function
getProviderConfigurationHelp
()
{
$app_uri
=
PhabricatorEnv
::
getProductionURI
(
'/'
);
$login_uri
=
PhabricatorEnv
::
getURI
(
$this
->
getLoginURI
());
return
pht
(
"To configure Asana OAuth, create a new application here:"
.
"
\n\n
"
.
"https://app.asana.com/-/account_api"
.
"
\n\n
"
.
"When creating your application, use these settings:"
.
"
\n\n
"
.
" - **App URL:** Set this to: `%s`
\n
"
.
" - **Redirect URL:** Set this to: `%s`"
.
"
\n\n
"
.
"After completing configuration, copy the **Client ID** and "
.
"**Client Secret** to the fields above."
,
$app_uri
,
$login_uri
);
}
protected
function
newOAuthAdapter
()
{
return
new
PhutilAsanaAuthAdapter
();
}
protected
function
getLoginIcon
()
{
return
'Asana'
;
}
public
static
function
getAsanaProvider
()
{
$providers
=
self
::
getAllEnabledProviders
();
foreach
(
$providers
as
$provider
)
{
if
(
$provider
instanceof
PhabricatorAsanaAuthProvider
)
{
return
$provider
;
}
}
return
null
;
}
}
Event Timeline
Log In to Comment