adminerevo/plugins/login-table.php

33 lines
954 B
PHP
Raw 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
* @author Jakub Vrana, http://www.vrana.cz/
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerLoginTable {
var $database;
2011-03-21 09:14:22 +00:00
/** Set database of login table
* @param string
*/
2011-02-09 20:15:34 +00:00
function AdminerLoginTable($database) {
$this->database = $database;
}
function login($login, $password) {
$connection = connection();
2011-03-09 23:37:16 +00:00
return (bool) $connection->result("SELECT COUNT(*) FROM " . idf_escape($this->database) . ".login WHERE login = " . $connection->quote($login) . " AND password_sha1 = " . $connection->quote(sha1($password)));
2011-02-09 20:15:34 +00:00
}
}