1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/src/Appwrite/Auth/OAuth2/Slack.php

141 lines
3 KiB
PHP
Raw Normal View History

<?php
namespace Appwrite\Auth\OAuth2;
use Appwrite\Auth\OAuth2;
2020-02-17 00:41:03 +13:00
class Slack extends OAuth2
{
/**
* @var array
*/
protected $user = [];
2020-01-19 08:44:08 +13:00
/**
* @var array
*/
2020-01-19 09:12:41 +13:00
protected $scopes = [
2020-06-25 09:05:16 +12:00
'identity.avatar',
'identity.basic',
2020-01-19 09:12:41 +13:00
'identity.email',
'identity.team'
];
2020-01-19 08:44:08 +13:00
/**
* @return string
*/
public function getName():string
{
return 'slack';
}
/**
* @return string
*/
public function getLoginURL():string
{
// https://api.slack.com/docs/oauth#step_1_-_sending_users_to_authorize_and_or_install
return 'https://slack.com/oauth/authorize?'.\http_build_query([
2020-01-19 08:44:08 +13:00
'client_id'=> $this->appID,
'scope' => \implode(' ', $this->getScopes()),
2020-01-19 08:44:08 +13:00
'redirect_uri' => $this->callback,
'state' => \json_encode($this->state)
2020-01-19 08:44:08 +13:00
]);
}
/**
* @param string $code
*
* @return string
*/
public function getAccessToken(string $code):string
{
// https://api.slack.com/docs/oauth#step_3_-_exchanging_a_verification_code_for_an_access_token
$accessToken = $this->request(
'GET',
'https://slack.com/api/oauth.access?'.\http_build_query([
2020-01-19 08:44:08 +13:00
'client_id' => $this->appID,
'client_secret' => $this->appSecret,
'code' => $code,
'redirect_uri' => $this->callback
])
);
$accessToken = \json_decode($accessToken, true); //
if (isset($accessToken['access_token'])) {
return $accessToken['access_token'];
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserID(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['user']['id'])) {
return $user['user']['id'];
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserEmail(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['user']['email'])) {
return $user['user']['email'];
}
return '';
}
/**
* @param string $accessToken
*
* @return string
*/
public function getUserName(string $accessToken):string
{
$user = $this->getUser($accessToken);
if (isset($user['user']['name'])) {
return $user['user']['name'];
}
return '';
}
/**
* @param string $accessToken
*
* @return array
*/
protected function getUser(string $accessToken):array
{
if (empty($this->user)) {
// https://api.slack.com/methods/users.identity
$user = $this->request(
'GET',
'https://slack.com/api/users.identity?token='.\urlencode($accessToken)
);
$this->user = \json_decode($user, true);
}
return $this->user;
}
}