mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 10:09:20 +03:00
117 lines
3.5 KiB
PHP
117 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace OCA\SnappyMail\AppInfo;
|
|
|
|
use OCA\SnappyMail\Util\SnappyMailHelper;
|
|
use OCA\SnappyMail\Controller\FetchController;
|
|
use OCA\SnappyMail\Controller\PageController;
|
|
use OCA\SnappyMail\Dashboard\UnreadMailWidget;
|
|
use OCA\SnappyMail\Search\Provider;
|
|
|
|
use OCP\AppFramework\App;
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
use OCP\IL10N;
|
|
use OCP\IUser;
|
|
use OCP\User\Events\PostLoginEvent;
|
|
use OCP\User\Events\BeforeUserLoggedOutEvent;
|
|
|
|
class Application extends App implements IBootstrap
|
|
{
|
|
public const APP_ID = 'snappymail';
|
|
|
|
public function __construct(array $urlParams = [])
|
|
{
|
|
parent::__construct(self::APP_ID, $urlParams);
|
|
}
|
|
|
|
public function register(IRegistrationContext $context): void
|
|
{
|
|
/**
|
|
* Controllers
|
|
*/
|
|
$context->registerService(
|
|
'PageController', function($c) {
|
|
return new PageController(
|
|
$c->query('AppName'),
|
|
$c->query('Request')
|
|
);
|
|
}
|
|
);
|
|
|
|
$context->registerService(
|
|
'FetchController', function($c) {
|
|
return new FetchController(
|
|
$c->query('AppName'),
|
|
$c->query('Request'),
|
|
$c->getServer()->getAppManager(),
|
|
$c->query('ServerContainer')->getConfig(),
|
|
$c->query(IL10N::class)
|
|
);
|
|
}
|
|
);
|
|
|
|
/**
|
|
* Utils
|
|
*/
|
|
$context->registerService(
|
|
'SnappyMailHelper', function($c) {
|
|
return new SnappyMailHelper();
|
|
}
|
|
);
|
|
|
|
$context->registerSearchProvider(Provider::class);
|
|
|
|
// TODO: Not working yet, needs a Vue UI
|
|
// $context->registerDashboardWidget(UnreadMailWidget::class);
|
|
}
|
|
|
|
public function boot(IBootContext $context): void
|
|
{
|
|
if (!\is_dir(\rtrim(\trim(\OC::$server->getSystemConfig()->getValue('datadirectory', '')), '\\/') . '/appdata_snappymail')) {
|
|
return;
|
|
}
|
|
|
|
$dispatcher = $context->getAppContainer()->query('OCP\EventDispatcher\IEventDispatcher');
|
|
$dispatcher->addListener(PostLoginEvent::class, function (PostLoginEvent $Event) {
|
|
/*
|
|
$config = \OC::$server->getConfig();
|
|
// Only store the user's password in the current session if they have
|
|
// enabled auto-login using Nextcloud username or email address.
|
|
if ($config->getAppValue('snappymail', 'snappymail-autologin', false)
|
|
|| $config->getAppValue('snappymail', 'snappymail-autologin-with-email', false)) {
|
|
*/
|
|
$sUID = $Event->getUser()->getUID();
|
|
\OC::$server->getSession()['snappymail-nc-uid'] = $sUID;
|
|
\OC::$server->getSession()['snappymail-passphrase'] = SnappyMailHelper::encodePassword($Event->getPassword(), $sUID);
|
|
/*
|
|
}
|
|
*/
|
|
});
|
|
|
|
$dispatcher->addListener(BeforeUserLoggedOutEvent::class, function (BeforeUserLoggedOutEvent $Event) {
|
|
// https://github.com/nextcloud/server/issues/36083#issuecomment-1387370634
|
|
// \OC::$server->getSession()['snappymail-passphrase'] = '';
|
|
SnappyMailHelper::loadApp();
|
|
// \RainLoop\Api::Actions()->Logout(true);
|
|
\RainLoop\Api::Actions()->DoLogout();
|
|
});
|
|
|
|
// https://github.com/nextcloud/impersonate/issues/179
|
|
// https://github.com/nextcloud/impersonate/pull/180
|
|
$class = 'OCA\Impersonate\Events\BeginImpersonateEvent';
|
|
if (\class_exists($class)) {
|
|
$dispatcher->addListener($class, function ($Event) {
|
|
\OC::$server->getSession()['snappymail-passphrase'] = '';
|
|
SnappyMailHelper::loadApp();
|
|
\RainLoop\Api::Actions()->Logout(true);
|
|
});
|
|
$dispatcher->addListener('OCA\Impersonate\Events\EndImpersonateEvent', function ($Event) {
|
|
\OC::$server->getSession()['snappymail-passphrase'] = '';
|
|
SnappyMailHelper::loadApp();
|
|
\RainLoop\Api::Actions()->Logout(true);
|
|
});
|
|
}
|
|
}
|
|
}
|