summaryrefslogtreecommitdiff
path: root/app/Core/OAuth2.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-12-05 20:31:27 -0500
committerFrederic Guillot <fred@kanboard.net>2015-12-05 20:31:27 -0500
commite9fedf3e5cd63aea4da7a71f6647ee427c62fa49 (patch)
treeabc2de5aebace4a2d7c94805552264dab6b10bc7 /app/Core/OAuth2.php
parent346b8312e5ac877ce3192c2db3a26b500018bbb5 (diff)
Rewrite of the authentication and authorization system
Diffstat (limited to 'app/Core/OAuth2.php')
-rw-r--r--app/Core/OAuth2.php119
1 files changed, 0 insertions, 119 deletions
diff --git a/app/Core/OAuth2.php b/app/Core/OAuth2.php
deleted file mode 100644
index a5bbba1a..00000000
--- a/app/Core/OAuth2.php
+++ /dev/null
@@ -1,119 +0,0 @@
-<?php
-
-namespace Kanboard\Core;
-
-/**
- * OAuth2 client
- *
- * @package core
- * @author Frederic Guillot
- */
-class OAuth2 extends Base
-{
- private $clientId;
- private $secret;
- private $callbackUrl;
- private $authUrl;
- private $tokenUrl;
- private $scopes;
- private $tokenType;
- private $accessToken;
-
- /**
- * Create OAuth2 service
- *
- * @access public
- * @param string $clientId
- * @param string $secret
- * @param string $callbackUrl
- * @param string $authUrl
- * @param string $tokenUrl
- * @param array $scopes
- * @return OAuth2
- */
- public function createService($clientId, $secret, $callbackUrl, $authUrl, $tokenUrl, array $scopes)
- {
- $this->clientId = $clientId;
- $this->secret = $secret;
- $this->callbackUrl = $callbackUrl;
- $this->authUrl = $authUrl;
- $this->tokenUrl = $tokenUrl;
- $this->scopes = $scopes;
-
- return $this;
- }
-
- /**
- * Get authorization url
- *
- * @access public
- * @return string
- */
- public function getAuthorizationUrl()
- {
- $params = array(
- 'response_type' => 'code',
- 'client_id' => $this->clientId,
- 'redirect_uri' => $this->callbackUrl,
- 'scope' => implode(' ', $this->scopes),
- );
-
- return $this->authUrl.'?'.http_build_query($params);
- }
-
- /**
- * Get authorization header
- *
- * @access public
- * @return string
- */
- public function getAuthorizationHeader()
- {
- if (strtolower($this->tokenType) === 'bearer') {
- return 'Authorization: Bearer '.$this->accessToken;
- }
-
- return '';
- }
-
- /**
- * Get access token
- *
- * @access public
- * @param string $code
- * @return string
- */
- public function getAccessToken($code)
- {
- if (empty($this->accessToken) && ! empty($code)) {
- $params = array(
- 'code' => $code,
- 'client_id' => $this->clientId,
- 'client_secret' => $this->secret,
- 'redirect_uri' => $this->callbackUrl,
- 'grant_type' => 'authorization_code',
- );
-
- $response = json_decode($this->httpClient->postForm($this->tokenUrl, $params, array('Accept: application/json')), true);
-
- $this->tokenType = isset($response['token_type']) ? $response['token_type'] : '';
- $this->accessToken = isset($response['access_token']) ? $response['access_token'] : '';
- }
-
- return $this->accessToken;
- }
-
- /**
- * Set access token
- *
- * @access public
- * @param string $token
- * @param string $type
- * @return string
- */
- public function setAccessToken($token, $type = 'bearer')
- {
- $this->accessToken = $token;
- $this->tokenType = $type;
- }
-}