| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 | <?php/* * This file is part of jwt-auth. * * (c) 2014-2021 Sean Tymon <tymon148@gmail.com> * (c) 2021 PHP Open Source Saver * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespace PHPOpenSourceSaver\JWTAuth;use PHPOpenSourceSaver\JWTAuth\Contracts\Providers\JWT as JWTContract;use PHPOpenSourceSaver\JWTAuth\Exceptions\JWTException;use PHPOpenSourceSaver\JWTAuth\Exceptions\TokenBlacklistedException;use PHPOpenSourceSaver\JWTAuth\Support\CustomClaims;use PHPOpenSourceSaver\JWTAuth\Support\RefreshFlow;class Manager{    use CustomClaims;    use RefreshFlow;    /**     * The provider.     *     * @var JWTContract     */    protected $provider;    /**     * The blacklist.     *     * @var Blacklist     */    protected $blacklist;    /**     * the payload factory.     *     * @var Factory     */    protected $payloadFactory;    /**     * The blacklist flag.     *     * @var bool     */    protected $blacklistEnabled = true;    /**     * the persistent claims.     *     * @var array     */    protected $persistentClaims = [];    /**     * @var bool     */    protected $showBlackListException = true;    /**     * Constructor.     *     * @return void     */    public function __construct(JWTContract $provider, Blacklist $blacklist, Factory $payloadFactory)    {        $this->provider = $provider;        $this->blacklist = $blacklist;        $this->payloadFactory = $payloadFactory;    }    /**     * Encode a Payload and return the Token.     *     * @return Token     */    public function encode(Payload $payload)    {        $token = $this->provider->encode($payload->get());        return new Token($token);    }    /**     * Decode a Token and return the Payload.     *     * @param bool $checkBlacklist     *     * @return Payload     *     * @throws \PHPOpenSourceSaver\JWTAuth\Exceptions\TokenBlacklistedException     */    public function decode(Token $token, $checkBlacklist = true)    {        $payloadArray = $this->provider->decode($token->get());        $payload = $this->payloadFactory            ->setRefreshFlow($this->refreshFlow)            ->customClaims($payloadArray)            ->make();        if (            $checkBlacklist &&            $this->blacklistEnabled &&            $this->getBlackListExceptionEnabled() &&            $this->blacklist->has($payload)        ) {            throw new TokenBlacklistedException('The token has been blacklisted');        }        return $payload;    }    /**     * Refresh a Token and return a new Token.     *     * @param bool $forceForever     * @param bool $resetClaims     *     * @return Token     */    public function refresh(Token $token, $forceForever = false, $resetClaims = false)    {        $this->setRefreshFlow();        $claims = $this->buildRefreshClaims($this->decode($token));        if ($this->blacklistEnabled) {            // Invalidate old token            $this->invalidate($token, $forceForever);        }        // Return the new token        return $this->encode(            $this->payloadFactory->customClaims($claims)->make($resetClaims)        );    }    /**     * Invalidate a Token by adding it to the blacklist.     *     * @param bool $forceForever     *     * @return bool     *     * @throws JWTException     */    public function invalidate(Token $token, $forceForever = false)    {        if (!$this->blacklistEnabled) {            throw new JWTException('You must have the blacklist enabled to invalidate a token.');        }        return call_user_func(            [$this->blacklist, $forceForever ? 'addForever' : 'add'],            $this->decode($token, false)        );    }    /**     * Build the claims to go into the refreshed token.     *     * @return array     */    protected function buildRefreshClaims(Payload $payload)    {        // Get the claims to be persisted from the payload        $persistentClaims = collect($payload->toArray())            ->only($this->persistentClaims)            ->toArray();        // persist the relevant claims        return array_merge(            $this->customClaims,            $persistentClaims,            [                'sub' => $payload['sub'],                'iat' => $payload['iat'],            ]        );    }    /**     * Get the Payload Factory instance.     *     * @return Factory     */    public function getPayloadFactory()    {        return $this->payloadFactory;    }    /**     * Get the JWTProvider instance.     *     * @return JWTContract     */    public function getJWTProvider()    {        return $this->provider;    }    /**     * Get the Blacklist instance.     *     * @return Blacklist     */    public function getBlacklist()    {        return $this->blacklist;    }    /**     * Set whether the blacklist is enabled.     *     * @param bool $enabled     *     * @return $this     */    public function setBlacklistEnabled($enabled)    {        $this->blacklistEnabled = $enabled;        return $this;    }    /**     * Configuration to set up if show the TokenBlacklistedException     * can be throwable or not.     *     * @param bool $showBlackListException     *     * @removed this     */    public function setBlackListExceptionEnabled($showBlackListException = true)    {        $this->showBlackListException = $showBlackListException;        return $this;    }    /**     * Get if the blacklist instance is enabled.     *     * @return bool     */    public function getBlackListExceptionEnabled()    {        return $this->showBlackListException;    }    /**     * Set the claims to be persisted when refreshing a token.     *     * @return $this     */    public function setPersistentClaims(array $claims)    {        $this->persistentClaims = $claims;        return $this;    }}
 |