snappymail/plugins/white-list/index.php

57 lines
2 KiB
PHP
Raw Normal View History

2013-12-10 21:32:34 +08:00
<?php
class WhiteListPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Whitelist',
VERSION = '2.2',
RELEASE = '2024-03-04',
2021-04-21 16:34:54 +08:00
REQUIRED = '2.5.0',
CATEGORY = 'Login',
DESCRIPTION = 'Simple login whitelist (with wildcard and exceptions functionality).';
2020-08-31 00:04:54 +08:00
public function Init() : void
2013-12-10 21:32:34 +08:00
{
$this->addHook('login.credentials.step-1', 'FilterLoginCredentials');
2013-12-10 21:32:34 +08:00
}
/**
* @throws \RainLoop\Exceptions\ClientException
*/
public function FilterLoginCredentials(string &$sEmail)
2013-12-10 21:32:34 +08:00
{
$sWhiteList = \trim($this->Config()->Get('plugin', 'white_list', ''));
if (\strlen($sWhiteList) && !\RainLoop\Plugins\Helper::ValidateWildcardValues($sEmail, $sWhiteList)) {
2013-12-10 21:32:34 +08:00
$sExceptions = \trim($this->Config()->Get('plugin', 'exceptions', ''));
if (!\strlen($sExceptions) || \RainLoop\Plugins\Helper::ValidateWildcardValues($sEmail, $sExceptions)) {
2013-12-10 21:32:34 +08:00
throw new \RainLoop\Exceptions\ClientException(
$this->Config()->Get('plugin', 'auth_error', false)
? \RainLoop\Notifications::AuthError
: \RainLoop\Notifications::AccountNotAllowed
);
2013-12-10 21:32:34 +08:00
}
}
}
/**
* @return array
*/
2020-08-31 00:04:54 +08:00
protected function configMapping() : array
2013-12-10 21:32:34 +08:00
{
return array(
\RainLoop\Plugins\Property::NewInstance('auth_error')->SetLabel('Auth Error')
->SetType(\RainLoop\Enumerations\PluginPropertyType::BOOL)
->SetDescription('Throw an authentication error instead of an access error.')
->SetDefaultValue(false),
2013-12-10 21:32:34 +08:00
\RainLoop\Plugins\Property::NewInstance('white_list')->SetLabel('White List')
->SetType(\RainLoop\Enumerations\PluginPropertyType::STRING_TEXT)
->SetDescription('Emails white list, space as delimiter, wildcard supported.')
->SetDefaultValue('*@domain1.com user@domain2.com'),
\RainLoop\Plugins\Property::NewInstance('exceptions')->SetLabel('Exceptions')
->SetType(\RainLoop\Enumerations\PluginPropertyType::STRING_TEXT)
->SetDescription('Exceptions for white list, space as delimiter, wildcard supported.')
->SetDefaultValue('demo@domain1.com *@domain2.com admin@*')
);
}
}