adminerevo/plugins/login-sqlite.php
2018-01-16 20:05:07 +01:00

30 lines
810 B
PHP

<?php
/** Enable login for SQLite
* @link https://www.adminer.org/plugins/#use
* @author Jakub Vrana, https://www.vrana.cz/
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerLoginSqlite {
/** @access protected */
var $login, $password_hash;
/** Set allowed credentials
* @param string
* @param string result of password_hash
*/
function __construct($login, $password_hash) {
$this->login = $login;
$this->password_hash = $password_hash;
}
function login($login, $password) {
if (DRIVER != "sqlite" && DRIVER != "sqlite2") {
return true;
}
return $this->login == $login && password_verify($password, $this->password_hash);
}
}