12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace App\Utils;
- use App\Utils\Config;
- use Firebase\JWT\JWT as FirebaseJwt;
- use Firebase\JWT\Key as FirebaseKey;
- use Exception;
- class Jwt
- {
- private const configFilename = 'jwt';
- private const algorithm = 'RS256';
- private $privateKey;
- private $publicKey;
- public function __construct()
- {
- $this->mount();
- }
- private function mount()
- {
- $config = Config::getFromFilename(self::configFilename);
- $this->privateKey = file_get_contents($config['private_key_path']);
- $this->publicKey = file_get_contents($config['public_key_path']);
- if ($this->privateKey === false) {
- throw new Exception(sprinft('JWT private key file "%s" cannot be found.', $config['privateKeyPath']));
- }
- if ($this->publicKey === false) {
- throw new Exception(sprintf('JWT public key file "%s" cannot be found.', $config['publicKeyPath']));
- }
- }
- /*
- * Genera un token JWT.
- */
- public function encode(array $payload)
- {
- return FirebaseJwt::encode($payload, $this->privateKey, self::algorithm);
- }
- /*
- * Decodifica un token JWT.
- */
- public function decode(string $jwt)
- {
- return FirebaseJwt::decode($jwt, new FirebaseKey($this->publicKey, self::algorithm));
- }
- }
|