You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
abstract class Auth_Base extends Plugin implements IAuthModule {
|
|
protected $pdo;
|
|
|
|
const AUTH_SERVICE_API = '_api';
|
|
|
|
function __construct() {
|
|
$this->pdo = Db::pdo();
|
|
}
|
|
|
|
// compatibility wrapper, because of how pluginhost works (hook name == method name)
|
|
function hook_auth_user(...$args) {
|
|
return $this->authenticate(...$args);
|
|
}
|
|
|
|
// 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(string $login, $password = false) {
|
|
if ($login && Config::get(Config::AUTH_AUTO_CREATE)) {
|
|
$user_id = UserHelper::find_user_by_login($login);
|
|
|
|
if (!$user_id) {
|
|
|
|
if (!$password) $password = make_password();
|
|
|
|
$user = ORM::for_table('ttrss_users')->create();
|
|
|
|
$user->salt = UserHelper::get_salt();
|
|
$user->login = mb_strtolower($login);
|
|
$user->pwd_hash = UserHelper::hash_password($password, $user->salt);
|
|
$user->access_level = 0;
|
|
$user->created = Db::NOW();
|
|
$user->save();
|
|
|
|
return UserHelper::find_user_by_login($login);
|
|
|
|
} else {
|
|
return $user_id;
|
|
}
|
|
}
|
|
|
|
return UserHelper::find_user_by_login($login);
|
|
}
|
|
|
|
// @deprecated
|
|
function find_user_by_login(string $login) {
|
|
return UserHelper::find_user_by_login($login);
|
|
}
|
|
}
|