mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
73 lines
1.6 KiB
PHP
73 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace RainLoop\Providers;
|
|
|
|
class ChangePassword extends \RainLoop\Providers\AbstractProvider
|
|
{
|
|
/**
|
|
* @var \RainLoop\Actions
|
|
*/
|
|
private $oActions;
|
|
|
|
/**
|
|
* @var \RainLoop\Providers\ChangePassword\ChangePasswordInterface
|
|
*/
|
|
private $oDriver;
|
|
|
|
/**
|
|
* @param \RainLoop\Actions $oActions
|
|
* @param \RainLoop\Providers\ChangePassword\ChangePasswordInterface|null $oDriver = null
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($oActions, $oDriver = null)
|
|
{
|
|
$this->oActions = $oActions;
|
|
$this->oDriver = $oDriver;
|
|
}
|
|
|
|
/**
|
|
* @param \RainLoop\Account $oAccount
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function PasswordChangePossibility($oAccount)
|
|
{
|
|
return $this->IsActive() &&
|
|
$oAccount instanceof \RainLoop\Account &&
|
|
$this->oDriver && $this->oDriver->PasswordChangePossibility($oAccount)
|
|
;
|
|
}
|
|
|
|
/**
|
|
* @param \RainLoop\Account $oAccount
|
|
* @param string $sPrevPassword
|
|
* @param string $sNewPassword
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function ChangePassword(\RainLoop\Account $oAccount, $sPrevPassword, $sNewPassword)
|
|
{
|
|
$bResult = false;
|
|
if ($this->oDriver instanceof \RainLoop\Providers\ChangePassword\ChangePasswordInterface &&
|
|
$this->PasswordChangePossibility($oAccount) && $sPrevPassword === $oAccount->Password())
|
|
{
|
|
if ($this->oDriver->ChangePassword($oAccount, $sPrevPassword, $sNewPassword))
|
|
{
|
|
$oAccount->SetPassword($sNewPassword);
|
|
$this->oActions->SetAuthToken($oAccount);
|
|
$bResult = true;
|
|
}
|
|
}
|
|
|
|
return $bResult;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function IsActive()
|
|
{
|
|
return $this->oDriver instanceof \RainLoop\Providers\ChangePassword\ChangePasswordInterface;
|
|
}
|
|
}
|