ttrss/classes/auth/base.php

66 lines
1.5 KiB
PHP
Raw Normal View History

<?php
class Auth_Base {
private $dbh;
function __construct() {
$this->dbh = Db::get();
}
/**
* @SuppressWarnings(unused)
*/
2012-09-04 10:46:08 +02:00
function check_password($owner_uid, $password) {
return false;
}
/**
* @SuppressWarnings(unused)
*/
function authenticate($login, $password) {
return false;
}
// Auto-creates specified user if allowed by system configuration
// Can be used instead of find_user_by_login() by external auth modules
function auto_create_user($login, $password = false) {
if ($login && defined('AUTH_AUTO_CREATE') && AUTH_AUTO_CREATE) {
$user_id = $this->find_user_by_login($login);
if (!$password) $password = make_password();
if (!$user_id) {
2013-04-17 18:12:14 +02:00
$login = $this->dbh->escape_string($login);
$salt = substr(bin2hex(get_random_bytes(125)), 0, 250);
$pwd_hash = encrypt_password($password, $salt, true);
$query = "INSERT INTO ttrss_users
(login,access_level,last_login,created,pwd_hash,salt)
VALUES ('$login', 0, null, NOW(), '$pwd_hash','$salt')";
2013-04-17 18:12:14 +02:00
$this->dbh->query($query);
return $this->find_user_by_login($login);
} else {
return $user_id;
}
}
return $this->find_user_by_login($login);
}
function find_user_by_login($login) {
2013-04-17 18:12:14 +02:00
$login = $this->dbh->escape_string($login);
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_users WHERE
login = '$login'");
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) > 0) {
return $this->dbh->fetch_result($result, 0, "id");
} else {
return false;
}
}
}