PHP Classes

File: src/Rules/IssuedBy.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   PHP PASeTo   src/Rules/IssuedBy.php   Download  
File: src/Rules/IssuedBy.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP PASeTo
Encrypt and decrypt data with PaSeTO protocol
Author: By
Last change:
Date: 4 years ago
Size: 1,336 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
namespace
ParagonIE\Paseto\Rules;

use
ParagonIE\Paseto\{
   
JsonToken,
   
ValidationRuleInterface
};
use
ParagonIE\Paseto\Exception\PasetoException;

/**
 * Class IssuedBy
 * @package ParagonIE\Paseto\Rules
 */
class IssuedBy implements ValidationRuleInterface
{
   
/** @var string $failure */
   
protected $failure = 'OK';

   
/** @var string $issuer */
   
protected $issuer;

   
/**
     * IssuedBy constructor.
     * @param string $issuer
     */
   
public function __construct(string $issuer)
    {
       
$this->issuer = $issuer;
    }

   
/**
     * @return string
     */
   
public function getFailureMessage(): string
   
{
        return
$this->failure;
    }

   
/**
     * @param JsonToken $token
     * @return bool
     */
   
public function isValid(JsonToken $token): bool
   
{
        try {
           
$issuedBy = $token->getIssuer();
            if (!\
hash_equals($this->issuer, $issuedBy)) {
               
$this->failure = 'This token was not issued by ' .
                   
$this->issuer . ' (expected); it was issued by ' .
                   
$issuedBy . ' instead.';
                return
false;
            }
        } catch (
PasetoException $ex) {
           
$this->failure = $ex->getMessage();
            return
false;
        }
        return
true;
    }
}