aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Auth.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-11-11 08:17:12 +0100
committerGravatar GitHub <noreply@github.com> 2025-11-11 08:17:12 +0100
commita18c35046daee15e7ac5f85db290d54541a03e3c (patch)
treeec638cf7c93537a4f81b27216097d8509252eb81 /app/Models/Auth.php
parent5e622c60fa5c40793138807280319f7e84d00cc6 (diff)
Housekeeping lib_rss.php (#8193)
* Housekeeping lib_rss.php `lib_rss.php` had become much too large, especially after https://github.com/FreshRSS/FreshRSS/pull/7924 Moved most functions to other places. Mostly no change of code otherwise (see comments). * Extension: composer run-script phpstan-third-party
Diffstat (limited to 'app/Models/Auth.php')
-rw-r--r--app/Models/Auth.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/Models/Auth.php b/app/Models/Auth.php
index 888215730..6bf4a2b3f 100644
--- a/app/Models/Auth.php
+++ b/app/Models/Auth.php
@@ -16,7 +16,7 @@ class FreshRSS_Auth {
* This method initializes authentication system.
*/
public static function init(): bool {
- if (isset($_SESSION['REMOTE_USER']) && $_SESSION['REMOTE_USER'] !== httpAuthUser()) {
+ if (isset($_SESSION['REMOTE_USER']) && $_SESSION['REMOTE_USER'] !== FreshRSS_http_Util::httpAuthUser()) {
//HTTP REMOTE_USER has changed
self::removeAccess();
}
@@ -67,7 +67,7 @@ class FreshRSS_Auth {
}
return $current_user != '';
case 'http_auth':
- $current_user = httpAuthUser();
+ $current_user = FreshRSS_http_Util::httpAuthUser();
if ($current_user == '') {
return false;
}
@@ -115,7 +115,7 @@ class FreshRSS_Auth {
break;
case 'http_auth':
$current_user = Minz_User::name() ?? '';
- self::$login_ok = strcasecmp($current_user, httpAuthUser()) === 0;
+ self::$login_ok = strcasecmp($current_user, FreshRSS_http_Util::httpAuthUser()) === 0;
break;
case 'none':
self::$login_ok = true;
@@ -127,7 +127,7 @@ class FreshRSS_Auth {
Minz_Session::_params([
'loginOk' => self::$login_ok,
- 'REMOTE_USER' => httpAuthUser(),
+ 'REMOTE_USER' => FreshRSS_http_Util::httpAuthUser(),
]);
return self::$login_ok;
}
@@ -175,7 +175,7 @@ class FreshRSS_Auth {
if ($token_param != '') {
$username = Minz_Request::paramString('user');
if ($username != '') {
- $conf = get_user_configuration($username);
+ $conf = FreshRSS_UserConfiguration::getForUser($username);
if ($conf == null) {
$username = '';
}