Docker image / push (push) Canceled after 0s
包含:登录失败锁定、90天密码有效期、30分钟会话超时、 强制改密、登录审计日志、屏幕水印、企业背景图、 备案信息固定底部、favicon、登录页JS修复等全部改动
85 lines
1.8 KiB
PHP
85 lines
1.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace MRBS\Session;
|
|
|
|
use MRBS\Form\Form;
|
|
use MRBS\User;
|
|
use function MRBS\auth;
|
|
|
|
/**
|
|
* Get user identity/password using the REMOTE_USER environment variable. Both identity and password
|
|
* equal the value of REMOTE_USER.
|
|
*
|
|
* To use this session scheme, set in config.inc.php:
|
|
*
|
|
* $auth['session'] = 'remote_user';
|
|
* $auth['type'] = 'none';
|
|
*
|
|
* If you want to display a login link, set in config.inc.php:
|
|
*
|
|
* $auth['remote_user']['login_link'] = '/login/link.html';
|
|
*
|
|
* If you want to display a logout link, set in config.inc.php:
|
|
*
|
|
* $auth['remote_user']['logout_link'] = '/logout/link.html';
|
|
*/
|
|
class SessionRemoteUser extends SessionWithLogin
|
|
{
|
|
|
|
// User is expected to already be authenticated by the web server, so do nothing
|
|
public function authGet(?string $target_url=null, ?string $returl=null, ?string $error=null, bool $raw=false) : void
|
|
{
|
|
}
|
|
|
|
|
|
public function getCurrentUser() : ?User
|
|
{
|
|
global $server;
|
|
|
|
if ((!isset($server['REMOTE_USER'])) ||
|
|
(!is_string($server['REMOTE_USER'])) ||
|
|
(($server['REMOTE_USER'] === '')))
|
|
{
|
|
return parent::getCurrentUser();
|
|
}
|
|
|
|
return auth()->getUser($server['REMOTE_USER']);
|
|
}
|
|
|
|
|
|
public function getLogonFormParams() : ?array
|
|
{
|
|
global $auth;
|
|
|
|
if (isset($auth['remote_user']['login_link']))
|
|
{
|
|
return array(
|
|
'action' => $auth['remote_user']['login_link'],
|
|
'method' => Form::METHOD_GET,
|
|
);
|
|
}
|
|
else
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
public function getLogoffFormParams() : ?array
|
|
{
|
|
global $auth;
|
|
|
|
if (isset($auth['remote_user']['logout_link']))
|
|
{
|
|
return array(
|
|
'action' => $auth['remote_user']['logout_link'],
|
|
'method' => Form::METHOD_GET
|
|
);
|
|
}
|
|
else
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|