mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 20:51:29 +00:00
add placeholder authentication via app passwords if service is passed
forbid logins via regular passwords for services remove AUTH_DISABLE_OTP
This commit is contained in:
@@ -509,7 +509,7 @@
|
||||
return "";
|
||||
}
|
||||
|
||||
function authenticate_user($login, $password, $check_only = false) {
|
||||
function authenticate_user($login, $password, $check_only = false, $service = false) {
|
||||
|
||||
if (!SINGLE_USER_MODE) {
|
||||
$user_id = false;
|
||||
@@ -517,7 +517,7 @@
|
||||
|
||||
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_AUTH_USER) as $plugin) {
|
||||
|
||||
$user_id = (int) $plugin->authenticate($login, $password);
|
||||
$user_id = (int) $plugin->authenticate($login, $password, $service);
|
||||
|
||||
if ($user_id) {
|
||||
$auth_module = strtolower(get_class($plugin));
|
||||
|
||||
Reference in New Issue
Block a user