1
0
mirror of https://github.com/gamaio/lobli.git synced 2024-12-23 12:12:40 +00:00
lobli/Website/Include/PHP/token.php
alopexc0de f825c6bd29
New token generation and fix output on shorten
This token generation should prevent the same token from being used, also considering using a type of cooldown timer.
Short links were returning as (shortid)$, which didn't work
2014-08-29 14:08:50 -04:00

17 lines
479 B
PHP

<?php
session_start();
// Generate time expiring token for process.php
require('db.php');
do{ // Generate tokens until one isn't in the redis db
$token = substr(number_format(time() * mt_rand(),0,'',''),0,40);
$token = base_convert($token, 10, 36);
if(!$redis->exists("tokens:$token")){
break;
}
} while(1);
$redis->set("tokens:$token", 0); // Store the token forever, when set to 1, don't allow token to be used anymore.
$_SESSION['token'] = $token;
?>