mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 09:03:48 +08:00
fed896776f
a lot of small fixes (Closes #173) Added login field (ownCloud package)
76 lines
No EOL
2.2 KiB
PHP
76 lines
No EOL
2.2 KiB
PHP
<?php
|
|
|
|
class IspconfigChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
public function Init()
|
|
{
|
|
$this->addHook('main.fabrica', 'MainFabrica');
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function Supported()
|
|
{
|
|
if (!extension_loaded('pdo') || !class_exists('PDO'))
|
|
{
|
|
return 'The PHP exention PDO (mysql) must be installed to use this plugin';
|
|
}
|
|
|
|
$aDrivers = \PDO::getAvailableDrivers();
|
|
if (!is_array($aDrivers) || !in_array('mysql', $aDrivers))
|
|
{
|
|
return 'The PHP exention PDO (mysql) must be installed to use this plugin';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @param string $sName
|
|
* @param mixed $oProvider
|
|
*/
|
|
public function MainFabrica($sName, &$oProvider)
|
|
{
|
|
switch ($sName)
|
|
{
|
|
case 'change-password':
|
|
|
|
$sDsn = \trim($this->Config()->Get('plugin', 'pdo_dsn', ''));
|
|
$sUser = (string) $this->Config()->Get('plugin', 'user', '');
|
|
$sPassword = (string) $this->Config()->Get('plugin', 'password', '');
|
|
|
|
if (!empty($sDsn) && 0 < \strlen($sUser) && 0 < \strlen($sPassword))
|
|
{
|
|
include_once __DIR__.'/IspConfigChangePasswordDriver.php';
|
|
|
|
$oProvider = new IspConfigChangePasswordDriver();
|
|
$oProvider->SetLogger($this->Manager()->Actions()->Logger());
|
|
$oProvider->SetConfig($sDsn, $sUser, $sPassword);
|
|
$oProvider->SetAllowedEmails(\strtolower(\trim($this->Config()->Get('plugin', 'allowed_emails', ''))));
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function configMapping()
|
|
{
|
|
return array(
|
|
\RainLoop\Plugins\Property::NewInstance('pdo_dsn')->SetLabel('ISPConfig PDO dsn')
|
|
->SetDefaultValue('mysql:host=127.0.0.1;dbname=dbispconfig'),
|
|
\RainLoop\Plugins\Property::NewInstance('user')->SetLabel('DB User')
|
|
->SetDefaultValue('root'),
|
|
\RainLoop\Plugins\Property::NewInstance('password')->SetLabel('DB Password')
|
|
->SetType(\RainLoop\Enumerations\PluginPropertyType::PASSWORD)
|
|
->SetDefaultValue(''),
|
|
\RainLoop\Plugins\Property::NewInstance('allowed_emails')->SetLabel('Allowed emails')
|
|
->SetType(\RainLoop\Enumerations\PluginPropertyType::STRING_TEXT)
|
|
->SetDescription('Allowed emails, space as delimiter, wildcard supported. Example: user1@domain1.net user2@domain1.net *@domain2.net')
|
|
->SetDefaultValue('*')
|
|
);
|
|
}
|
|
} |