This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/ActionCode.php
2016-01-10 19:24:47 +01:00

58 lines
1.2 KiB
PHP

<?php
/*
* Action code handler
*/
namespace Sakura;
/**
* Class ActionCode
* @package Sakura
*/
class ActionCode
{
// Generating an action code
public static function generate($action, $user = 0)
{
// Generate a code
$code = uniqid();
// Insert it
Database::insert('actioncodes', [
'code_action' => $action,
'user_id' => $user,
'action_code' => $code,
]);
// Return the code
return $code;
}
// Checking if a code is still valid
public static function validate($action, $code, $user = 0, $invalidate = true)
{
// Fetch the code from the db
$get = Database::count('actioncodes', [
'code_action' => [$action, '='],
'action_code' => [$code, '='],
'user_id' => [$user, '='],
]);
// Invalidate the code if requested
if ($invalidate) {
self::invalidate($code);
}
// Return the result
return $get[0] > 0;
}
// Make a code invalid
public static function invalidate($code)
{
Database::delete('actioncodes', [
'code_action' => [$code, '='],
]);
}
}