2017-05-15 14:19:44 +03:00
|
|
|
<?php
|
2020-06-08 20:27:28 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-05-15 14:19:44 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2018-07-31 11:54:00 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-05-15 14:19:44 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-15 14:19:44 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\TwoFactorBackupCodes\AppInfo;
|
|
|
|
|
2018-07-31 11:54:00 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Event\CodesGenerated;
|
|
|
|
use OCA\TwoFactorBackupCodes\Listener\ActivityPublisher;
|
2018-09-29 22:03:28 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Listener\ClearNotifications;
|
2019-03-05 22:14:16 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Listener\ProviderDisabled;
|
2018-09-29 21:56:23 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Listener\ProviderEnabled;
|
2018-07-31 11:54:00 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Listener\RegistryUpdater;
|
2021-04-16 15:28:51 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Listener\UserDeleted;
|
2018-09-29 21:56:23 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Notifications\Notifier;
|
2021-04-16 15:54:14 +03:00
|
|
|
use OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider;
|
2017-05-15 14:19:44 +03:00
|
|
|
use OCP\AppFramework\App;
|
2020-06-08 20:27:28 +03:00
|
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
2018-09-29 21:56:23 +03:00
|
|
|
use OCP\Authentication\TwoFactorAuth\IRegistry;
|
2021-04-16 15:28:51 +03:00
|
|
|
use OCP\User\Events\UserDeletedEvent;
|
2017-05-15 14:19:44 +03:00
|
|
|
|
2020-06-08 20:27:28 +03:00
|
|
|
class Application extends App implements IBootstrap {
|
|
|
|
public const APP_ID = 'twofactor_backupcodes';
|
|
|
|
|
2018-07-31 11:54:00 +03:00
|
|
|
public function __construct() {
|
2020-06-08 20:27:28 +03:00
|
|
|
parent::__construct(self::APP_ID);
|
2017-05-15 14:19:44 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 20:27:28 +03:00
|
|
|
public function register(IRegistrationContext $context): void {
|
2021-04-16 13:39:08 +03:00
|
|
|
$context->registerNotifierService(Notifier::class);
|
2018-07-31 11:54:00 +03:00
|
|
|
|
2020-06-08 20:27:28 +03:00
|
|
|
$context->registerEventListener(CodesGenerated::class, ActivityPublisher::class);
|
|
|
|
$context->registerEventListener(CodesGenerated::class, RegistryUpdater::class);
|
|
|
|
$context->registerEventListener(CodesGenerated::class, ClearNotifications::class);
|
|
|
|
$context->registerEventListener(IRegistry::EVENT_PROVIDER_ENABLED, ProviderEnabled::class);
|
|
|
|
$context->registerEventListener(IRegistry::EVENT_PROVIDER_DISABLED, ProviderDisabled::class);
|
2021-04-16 15:28:51 +03:00
|
|
|
$context->registerEventListener(UserDeletedEvent::class, UserDeleted::class);
|
2021-04-16 15:54:14 +03:00
|
|
|
|
|
|
|
|
|
|
|
$context->registerTwoFactorProvider(BackupCodesProvider::class);
|
2018-09-29 21:56:23 +03:00
|
|
|
}
|
|
|
|
|
2021-04-16 15:28:51 +03:00
|
|
|
public function boot(IBootContext $context): void {
|
2017-05-15 14:19:44 +03:00
|
|
|
}
|
|
|
|
}
|