Lexiconga/public/api/Token.php

44 lines
1.1 KiB
PHP
Raw Normal View History

2017-12-24 20:00:45 +01:00
<?php
require_once('./vendor/firebase/php-jwt/src/JWT.php');
require_once('./vendor/firebase/php-jwt/src/BeforeValidException.php');
require_once('./vendor/firebase/php-jwt/src/ExpiredException.php');
require_once('./vendor/firebase/php-jwt/src/SignatureInvalidException.php');
require_once('./vendor/hashids/hashids/lib/Hashids/HashGenerator.php');
require_once('./vendor/hashids/hashids/lib/Hashids/Hashids.php');
2017-12-24 20:00:45 +01:00
use \Firebase\JWT\JWT;
use \Hashids\Hashids;
2017-12-24 20:00:45 +01:00
class Token {
private $key;
private $hashids;
function __construct() {
2017-12-24 20:00:45 +01:00
$this->key = 'ˈkɑːn.læŋ.ɪŋ_4eva';
$this->hashids = new Hashids($this->key, 10);
2017-12-24 20:00:45 +01:00
}
public function encode ($data) {
return JWT::encode($data, $this->key);
}
public function decode ($token) {
try {
return JWT::decode($token, $this->key, array('HS256'));
} catch (Exception $ex) {
return false;
}
}
public function hash ($id) {
return $this->hashids->encode($id);
}
public function unhash ($hash) {
$unhashed = $this->hashids->decode($hash);
if (count($unhashed) > 0) {
return $unhashed[0];
}
return false;
2017-12-24 20:00:45 +01:00
}
}