adminerevo/plugins/login-table.php

35 lines
988 B
PHP
Raw Permalink Normal View History

2011-02-09 20:15:34 +00:00
<?php
/* Requires this table:
CREATE TABLE login (
id int NOT NULL AUTO_INCREMENT, -- optional
login varchar(30) NOT NULL, -- any length
password_sha1 char(40) NOT NULL,
UNIQUE (login),
PRIMARY KEY (id)
);
*/
/** Authenticate a user from the login table
2015-09-08 16:23:25 +00:00
* @link https://www.adminer.org/plugins/#use
2017-02-27 12:43:33 +00:00
* @author Jakub Vrana, https://www.vrana.cz/
2018-01-14 10:03:54 +00:00
* @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)
2011-02-09 20:15:34 +00:00
*/
class AdminerLoginTable {
2011-08-11 15:06:42 +00:00
/** @access protected */
2011-02-09 20:15:34 +00:00
var $database;
2011-03-21 09:14:22 +00:00
/** Set database of login table
* @param string
*/
2015-08-15 15:04:21 +00:00
function __construct($database) {
2011-02-09 20:15:34 +00:00
$this->database = $database;
}
function login($login, $password) {
$connection = connection();
2011-03-23 12:35:52 +00:00
return (bool) $connection->result("SELECT COUNT(*) FROM " . idf_escape($this->database) . ".login WHERE login = " . q($login) . " AND password_sha1 = " . q(sha1($password)));
2011-02-09 20:15:34 +00:00
}
}