Files
piratepoet/lib/Util/Security.php
Jan Jakeš 54549ff037 Convert variable names to camel case
[MAILPOET-1796]
2020-01-14 15:22:42 +01:00

61 lines
1.4 KiB
PHP

<?php
namespace MailPoet\Util;
use MailPoet\WP\Functions as WPFunctions;
class Security {
const HASH_LENGTH = 12;
const UNSUBSCRIBE_TOKEN_LENGTH = 15;
public static function generateToken($action = 'mailpoet_token') {
return WPFunctions::get()->wpCreateNonce($action);
}
/**
* Generate random lowercase alphanumeric string.
* 1 lowercase alphanumeric character = 6 bits (because log2(36) = 5.17)
* So 3 bytes = 4 characters
* @param int $length Minimal lenght is 5
* @return string
*/
public static function generateRandomString($length = 5) {
$length = max(5, (int)$length);
$string = base_convert(
bin2hex(
random_bytes( // phpcs:ignore
(int)ceil(3 * $length / 4)
)
),
16,
36
);
return substr($string, 0, $length);
}
/**
* @param int $length Maximal length is 32
* @return string
*/
public static function generateHash($length = null) {
$length = ($length) ? $length : self::HASH_LENGTH;
$authKey = '';
if (defined('AUTH_KEY')) {
$authKey = AUTH_KEY;
}
return substr(
md5($authKey . self::generateRandomString(64)),
0,
$length
);
}
static public function generateUnsubscribeToken($model) {
do {
$token = self::generateRandomString(self::UNSUBSCRIBE_TOKEN_LENGTH);
$found = $model::whereEqual('unsubscribe_token', $token)->count();
} while ($found > 0);
return $token;
}
}