Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92908177
PhutilSlackAuthAdapter.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
Sun, Nov 24, 17:28
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Nov 26, 17:28 (2 d)
Engine
blob
Format
Raw Data
Handle
22533140
Attached To
rPHU libphutil
PhutilSlackAuthAdapter.php
View Options
<?php
/**
* Authentication adapter for Slack OAuth2.
*/
final
class
PhutilSlackAuthAdapter
extends
PhutilOAuthAuthAdapter
{
public
function
getAdapterType
()
{
return
'Slack'
;
}
public
function
getAdapterDomain
()
{
return
'slack.com'
;
}
public
function
getAccountID
()
{
$user
=
$this
->
getOAuthAccountData
(
'user'
);
return
idx
(
$user
,
'id'
);
}
public
function
getAccountEmail
()
{
$user
=
$this
->
getOAuthAccountData
(
'user'
);
return
idx
(
$user
,
'email'
);
}
public
function
getAccountImageURI
()
{
$user
=
$this
->
getOAuthAccountData
(
'user'
);
return
idx
(
$user
,
'image_512'
);
}
public
function
getAccountRealName
()
{
$user
=
$this
->
getOAuthAccountData
(
'user'
);
return
idx
(
$user
,
'name'
);
}
protected
function
getAuthenticateBaseURI
()
{
return
'https://slack.com/oauth/authorize'
;
}
protected
function
getTokenBaseURI
()
{
return
'https://slack.com/api/oauth.access'
;
}
public
function
getScope
()
{
return
'identity.basic,identity.team,identity.avatar'
;
}
public
function
getExtraAuthenticateParameters
()
{
return
array
(
'response_type'
=>
'code'
,
);
}
protected
function
loadOAuthAccountData
()
{
return
id
(
new
PhutilSlackFuture
())
->
setAccessToken
(
$this
->
getAccessToken
())
->
setRawSlackQuery
(
'users.identity'
)
->
resolve
();
}
}
Event Timeline
Log In to Comment