Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
83.33% covered (warning)
83.33%
5 / 6
CRAP
86.96% covered (warning)
86.96%
20 / 23
AuthCodeEntity
0.00% covered (danger)
0.00%
0 / 1
85.71% covered (warning)
85.71%
6 / 7
11.27
86.96% covered (warning)
86.96%
20 / 23
 setRedirectUri($redirectUri)
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
2 / 2
 getRedirectUri()
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 generateRedirectUri($state = null, $queryDelimeter = '?')
0.00% covered (danger)
0.00%
0 / 1
2.86
40.00% covered (danger)
40.00%
2 / 5
 getSession()
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
4 / 4
 getScopes()
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
4 / 4
 save()
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
7 / 7
 expire()
100.00% covered (success)
100.00%
1 / 1
1  
 
<?php
/**
 * OAuth 2.0 Auth code entity
 *
 * @package     league/oauth2-server
 * @author      Alex Bilbie <hello@alexbilbie.com>
 * @copyright   Copyright (c) Alex Bilbie
 * @license     http://mit-license.org/
 * @link        https://github.com/thephpleague/oauth2-server
 */
namespace League\OAuth2\Server\Entity;
/**
 * Auth Code entity class
 */
class AuthCodeEntity extends AbstractTokenEntity
{
    /**
     * Redirect URI
     *
     * @var string
     */
    protected $redirectUri = '';
    /**
     * Set the redirect URI for the authorization request
     *
     * @param string $redirectUri
     *
     * @return self
     */
    public function setRedirectUri($redirectUri)
    {
        $this->redirectUri = $redirectUri;
        return $this;
    }
    /**
     * Get the redirect URI
     *
     * @return string
     */
    public function getRedirectUri()
    {
        return $this->redirectUri;
    }
    /**
     * Generate a redirect URI
     *
     * @param string $state          The state parameter if set by the client
     * @param string $queryDelimeter The query delimiter ('?' for auth code grant, '#' for implicit grant)
     *
     * @return string
     */
    public function generateRedirectUri($state = null, $queryDelimeter = '?')
    {
        $uri = $this->getRedirectUri();
        $uri .= (strstr($this->getRedirectUri(), $queryDelimeter) === false) ? $queryDelimeter : '&';
        return $uri.http_build_query([
            'code'  =>  $this->getId(),
            'state' =>  $state,
        ]);
    }
    /**
     * Get session
     *
     * @return \League\OAuth2\Server\Entity\SessionEntity
     */
    public function getSession()
    {
        if ($this->session instanceof SessionEntity) {
            return $this->session;
        }
        $this->session = $this->server->getSessionStorage()->getByAuthCode($this);
        return $this->session;
    }
    /**
     * Return all scopes associated with the session
     *
     * @return \League\OAuth2\Server\Entity\ScopeEntity[]
     */
    public function getScopes()
    {
        if ($this->scopes === null) {
            $this->scopes = $this->formatScopes(
                $this->server->getAuthCodeStorage()->getScopes($this)
            );
        }
        return $this->scopes;
    }
    /**
     * {@inheritdoc}
     */
    public function save()
    {
        $this->server->getAuthCodeStorage()->create(
            $this->getId(),
            $this->getExpireTime(),
            $this->getSession()->getId(),
            $this->getRedirectUri()
        );
        // Associate the scope with the token
        foreach ($this->getScopes() as $scope) {
            $this->server->getAuthCodeStorage()->associateScope($this, $scope);
        }
        return $this;
    }
    /**
     * {@inheritdoc}
     */
    public function expire()
    {
        $this->server->getAuthCodeStorage()->delete($this);
    }
}