X-Git-Url: https://git-public.kairo.at/?p=authserver.git;a=blobdiff_plain;f=authutils.php-class;h=729a2e900ab087d7447295ab5bda628e790e4588;hp=2d4573f5c76a9cc6dd21ac63c98fc3c90b741011;hb=558e9862bdf09a65cb41c76569cdb3f4021fa356;hpb=ac442755b476ec15b269be0d6a6c68e5080a6b21 diff --git a/authutils.php-class b/authutils.php-class index 2d4573f..729a2e9 100755 --- a/authutils.php-class +++ b/authutils.php-class @@ -7,14 +7,23 @@ class AuthUtils { // KaiRo.at authentication utilities PHP class // This class contains helper functions for the authentication system. // - // function __construct() + // function __construct($settings, $db) // CONSTRUCTOR + // Settings are an associative array with a numeric pwd_cost field and an array pwd_nonces field. + // The DB is a PDO object. + // + // public $db + // A PDO database object for interaction. // // private $pwd_cost // The cost parameter for use with PHP password_hash function. // // private $pwd_nonces // The array of nonces to use for "peppering" passwords. For new hashes, the last one of those will be used. + // Generate a nonce with this command: |openssl rand -base64 48| + // + // function log($code, $additional_info) + // Log an entry for admin purposes, with a code and some additional info. // // function checkPasswordConstraints($new_password, $user_email) // Check password constraints and return an array of error messages (empty if all constraints are met). @@ -43,19 +52,28 @@ class AuthUtils { // function pwdNeedsRehash($user) // Return true if the pwdhash field of the user uses an outdated standard and needs to be rehashed. - function __construct($settings) { + function __construct($settings, $db) { // *** constructor *** - if (array_key_exists('pwd_nonces', $settings)) { - $this->pwd_nonces = $settings['pwd_nonces']; - } + $this->db = $db; if (array_key_exists('pwd_cost', $settings)) { $this->pwd_cost = $settings['pwd_cost']; } + if (array_key_exists('pwd_nonces', $settings)) { + $this->pwd_nonces = $settings['pwd_nonces']; + } } + public $db = null; private $pwd_cost = 10; private $pwd_nonces = array(); + function log($code, $info) { + $result = $this->db->prepare('INSERT INTO `auth_log` (`code`, `info`, `ip_addr`) VALUES (:code, :info, :ipaddr);'); + if (!$result->execute(array(':code' => $code, ':info' => $info, ':ipaddr' => $_SERVER['REMOTE_ADDR']))) { + // print($result->errorInfo()[2]); + } + } + function checkPasswordConstraints($new_password, $user_email) { $errors = array(); if ($new_password != trim($new_password)) { @@ -119,10 +137,12 @@ class AuthUtils { } function pwdVerify($password_to_verify, $userdata) { - if (preg_match('/^(\d+)\|/', $userdata['pwdhash'], $regs)) { + $pwdhash = $userdata['pwdhash']; + if (preg_match('/^(\d+)\|(.+)$/', $userdata['pwdhash'], $regs)) { $password_to_verify .= $this->pwd_nonces[$regs[1]]; + $pwdhash = $regs[2]; } - return password_verify($password_to_verify, $userdata['pwdhash']); + return password_verify($password_to_verify, $pwdhash); } function pwdNeedsRehash($userdata) {