2013-12-10 21:32:34 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class WhiteListPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
|
|
{
|
2021-02-10 16:50:20 +08:00
|
|
|
const
|
2021-08-28 05:49:03 +08:00
|
|
|
NAME = 'Whitelist',
|
2021-04-21 16:34:54 +08:00
|
|
|
VERSION = '2.1',
|
|
|
|
RELEASE = '2021-04-21',
|
|
|
|
REQUIRED = '2.5.0',
|
2021-02-10 16:50:20 +08:00
|
|
|
CATEGORY = 'Login',
|
2021-08-28 05:49:03 +08:00
|
|
|
DESCRIPTION = 'Simple login whitelist (with wildcard and exceptions functionality).';
|
2021-02-10 16:50:20 +08:00
|
|
|
|
2020-08-31 00:04:54 +08:00
|
|
|
public function Init() : void
|
2013-12-10 21:32:34 +08:00
|
|
|
{
|
2021-04-14 20:30:42 +08:00
|
|
|
$this->addHook('login.credentials', 'FilterLoginCredentials');
|
2013-12-10 21:32:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $sEmail
|
|
|
|
* @param string $sLogin
|
|
|
|
* @param string $sPassword
|
|
|
|
*
|
|
|
|
* @throws \RainLoop\Exceptions\ClientException
|
|
|
|
*/
|
|
|
|
public function FilterLoginCredentials(&$sEmail, &$sLogin, &$sPassword)
|
|
|
|
{
|
|
|
|
$sWhiteList = \trim($this->Config()->Get('plugin', 'white_list', ''));
|
|
|
|
if (0 < strlen($sWhiteList) && !\RainLoop\Plugins\Helper::ValidateWildcardValues($sEmail, $sWhiteList))
|
|
|
|
{
|
|
|
|
$sExceptions = \trim($this->Config()->Get('plugin', 'exceptions', ''));
|
|
|
|
if (0 === \strlen($sExceptions) || !\RainLoop\Plugins\Helper::ValidateWildcardValues($sEmail, $sExceptions))
|
|
|
|
{
|
|
|
|
throw new \RainLoop\Exceptions\ClientException(
|
|
|
|
$this->Config()->Get('plugin', 'auth_error', true) ?
|
|
|
|
\RainLoop\Notifications::AuthError : \RainLoop\Notifications::AccountNotAllowed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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(true),
|
|
|
|
\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@*')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|