mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
<?php
|
|
|
|
class LoginExternalPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'Login External',
|
|
AUTHOR = 'SnappyMail',
|
|
URL = 'https://snappymail.eu/',
|
|
VERSION = '1.0',
|
|
RELEASE = '2022-11-11',
|
|
REQUIRED = '2.21.0',
|
|
CATEGORY = 'Login',
|
|
LICENSE = 'MIT',
|
|
DESCRIPTION = 'Login with $_POST["Email"] and $_POST["Password"] from anywhere';
|
|
|
|
public function Init() : void
|
|
{
|
|
$this->addPartHook('ExternalLogin', 'ServiceExternalLogin');
|
|
}
|
|
|
|
public function ServiceExternalLogin() : bool
|
|
{
|
|
$oActions = \RainLoop\Api::Actions();
|
|
$oActions->Http()->ServerNoCache();
|
|
|
|
$oAccount = null;
|
|
$oException = null;
|
|
|
|
$sEmail = isset($_POST['Email']) ? $_POST['Email'] : '';
|
|
$sPassword = isset($_POST['Password']) ? $_POST['Password'] : '';
|
|
|
|
try
|
|
{
|
|
$oAccount = $oActions->LoginProcess($sEmail, $sPassword);
|
|
if ($oAccount instanceof \RainLoop\Model\MainAccount) {
|
|
$oActions->SetAuthToken($oAccount);
|
|
} else {
|
|
$oAccount = null;
|
|
}
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
$oLogger = $oActions->Logger();
|
|
$oLogger && $oLogger->WriteException($oException);
|
|
}
|
|
|
|
if (isset($_POST['Output']) && 'json' === \strtolower($_POST['Output'])) {
|
|
\header('Content-Type: application/json; charset=utf-8');
|
|
$aResult = array(
|
|
'Action' => 'ExternalLogin',
|
|
'Result' => $oAccount ? true : false,
|
|
'ErrorCode' => 0
|
|
);
|
|
if (!$oAccount) {
|
|
if ($oException instanceof \RainLoop\Exceptions\ClientException) {
|
|
$aResult['ErrorCode'] = $oException->getCode();
|
|
} else {
|
|
$aResult['ErrorCode'] = Notifications::AuthError;
|
|
}
|
|
}
|
|
echo Utils::jsonEncode($aResult);
|
|
} else {
|
|
$oActions->Location('./');
|
|
}
|
|
return true;
|
|
}
|
|
|
|
}
|