mirror of
https://github.com/vrana/adminer.git
synced 2026-02-02 12:50:10 +01:00
30 lines
847 B
PHP
30 lines
847 B
PHP
<?php
|
|
|
|
/** Enable login for password-less database
|
|
* @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 AdminerLoginPasswordLess {
|
|
protected $password_hash;
|
|
|
|
/** Set allowed password
|
|
* @param string $password_hash result of password_hash
|
|
*/
|
|
function __construct(string $password_hash) {
|
|
$this->password_hash = $password_hash;
|
|
}
|
|
|
|
function credentials() {
|
|
$password = Adminer\get_password();
|
|
return array(Adminer\SERVER, $_GET["username"], (password_verify($password, $this->password_hash) ? "" : $password));
|
|
}
|
|
|
|
function login($login, $password) {
|
|
if ($password != "") {
|
|
return true;
|
|
}
|
|
}
|
|
}
|