2014-05-28 21:13:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-09-29 17:38:29 +03:00
|
|
|
* @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Thomas Citharel <nextcloud@tcit.fr>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-05-28 21:13:07 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-08-22 20:16:55 +04:00
|
|
|
namespace OC\Core;
|
2014-05-28 21:13:07 +04:00
|
|
|
|
2019-05-28 18:56:01 +03:00
|
|
|
use OC\Authentication\Events\RemoteWipeFinished;
|
|
|
|
use OC\Authentication\Events\RemoteWipeStarted;
|
|
|
|
use OC\Authentication\Listeners\RemoteWipeActivityListener;
|
2019-07-02 15:58:48 +03:00
|
|
|
use OC\Authentication\Listeners\RemoteWipeEmailListener;
|
2019-05-28 18:56:01 +03:00
|
|
|
use OC\Authentication\Listeners\RemoteWipeNotificationsListener;
|
2020-01-08 12:51:44 +03:00
|
|
|
use OC\Authentication\Listeners\UserDeletedStoreCleanupListener;
|
2020-06-15 17:09:39 +03:00
|
|
|
use OC\Authentication\Listeners\UserDeletedTokenCleanupListener;
|
2019-04-03 17:00:46 +03:00
|
|
|
use OC\Authentication\Notifications\Notifier as AuthenticationNotifier;
|
2019-04-15 22:19:32 +03:00
|
|
|
use OC\Core\Notification\RemoveLinkSharesNotifier;
|
2020-03-11 14:29:52 +03:00
|
|
|
use OC\DB\MissingColumnInformation;
|
2018-06-04 17:20:01 +03:00
|
|
|
use OC\DB\MissingIndexInformation;
|
|
|
|
use OC\DB\SchemaWrapper;
|
2016-04-25 15:10:55 +03:00
|
|
|
use OCP\AppFramework\App;
|
2019-05-28 18:56:01 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2018-06-04 17:20:01 +03:00
|
|
|
use OCP\IDBConnection;
|
2020-01-08 12:51:44 +03:00
|
|
|
use OCP\User\Events\UserDeletedEvent;
|
2016-04-25 15:10:55 +03:00
|
|
|
use OCP\Util;
|
2018-06-04 17:20:01 +03:00
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2014-05-28 21:13:07 +04:00
|
|
|
|
2014-10-20 21:05:48 +04:00
|
|
|
/**
|
|
|
|
* Class Application
|
|
|
|
*
|
|
|
|
* @package OC\Core
|
|
|
|
*/
|
2014-05-28 21:13:07 +04:00
|
|
|
class Application extends App {
|
2016-09-29 17:38:29 +03:00
|
|
|
public function __construct() {
|
|
|
|
parent::__construct('core');
|
2014-05-28 21:13:07 +04:00
|
|
|
|
|
|
|
$container = $this->getContainer();
|
2016-08-28 15:22:29 +03:00
|
|
|
|
2016-11-17 19:35:14 +03:00
|
|
|
$container->registerService('defaultMailAddress', function () {
|
2014-10-20 21:05:48 +04:00
|
|
|
return Util::getDefaultEmailAddress('lostpassword-noreply');
|
|
|
|
});
|
2018-06-04 17:20:01 +03:00
|
|
|
|
|
|
|
$server = $container->getServer();
|
2019-05-28 18:56:01 +03:00
|
|
|
/** @var IEventDispatcher $eventDispatcher */
|
|
|
|
$eventDispatcher = $server->query(IEventDispatcher::class);
|
2018-06-04 17:20:01 +03:00
|
|
|
|
2019-04-15 22:19:32 +03:00
|
|
|
$notificationManager = $server->getNotificationManager();
|
2019-07-16 12:36:32 +03:00
|
|
|
$notificationManager->registerNotifierService(RemoveLinkSharesNotifier::class);
|
|
|
|
$notificationManager->registerNotifierService(AuthenticationNotifier::class);
|
2019-04-15 22:19:32 +03:00
|
|
|
|
2018-06-04 17:20:01 +03:00
|
|
|
$eventDispatcher->addListener(IDBConnection::CHECK_MISSING_INDEXES_EVENT,
|
2019-07-02 15:58:48 +03:00
|
|
|
function (GenericEvent $event) use ($container) {
|
2018-06-04 17:20:01 +03:00
|
|
|
/** @var MissingIndexInformation $subject */
|
|
|
|
$subject = $event->getSubject();
|
|
|
|
|
|
|
|
$schema = new SchemaWrapper($container->query(IDBConnection::class));
|
|
|
|
|
|
|
|
if ($schema->hasTable('share')) {
|
|
|
|
$table = $schema->getTable('share');
|
|
|
|
|
|
|
|
if (!$table->hasIndex('share_with_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'share_with_index');
|
|
|
|
}
|
|
|
|
if (!$table->hasIndex('parent_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'parent_index');
|
|
|
|
}
|
2018-11-06 17:20:39 +03:00
|
|
|
if (!$table->hasIndex('owner_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'owner_index');
|
2018-10-02 00:59:36 +03:00
|
|
|
}
|
2018-11-06 17:20:39 +03:00
|
|
|
if (!$table->hasIndex('initiator_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'initiator_index');
|
2018-10-02 00:59:36 +03:00
|
|
|
}
|
2018-06-04 17:20:01 +03:00
|
|
|
}
|
2018-07-19 18:30:41 +03:00
|
|
|
|
|
|
|
if ($schema->hasTable('filecache')) {
|
|
|
|
$table = $schema->getTable('filecache');
|
|
|
|
|
|
|
|
if (!$table->hasIndex('fs_mtime')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'fs_mtime');
|
|
|
|
}
|
|
|
|
}
|
2018-12-21 15:02:25 +03:00
|
|
|
|
|
|
|
if ($schema->hasTable('twofactor_providers')) {
|
|
|
|
$table = $schema->getTable('twofactor_providers');
|
|
|
|
|
|
|
|
if (!$table->hasIndex('twofactor_providers_uid')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'twofactor_providers_uid');
|
|
|
|
}
|
|
|
|
}
|
2019-03-27 13:42:33 +03:00
|
|
|
|
|
|
|
if ($schema->hasTable('login_flow_v2')) {
|
|
|
|
$table = $schema->getTable('login_flow_v2');
|
|
|
|
|
|
|
|
if (!$table->hasIndex('poll_token')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'poll_token');
|
|
|
|
}
|
|
|
|
if (!$table->hasIndex('login_token')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'login_token');
|
|
|
|
}
|
|
|
|
if (!$table->hasIndex('timestamp')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'timestamp');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($schema->hasTable('whats_new')) {
|
|
|
|
$table = $schema->getTable('whats_new');
|
|
|
|
|
|
|
|
if (!$table->hasIndex('version')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'version');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($schema->hasTable('cards')) {
|
|
|
|
$table = $schema->getTable('cards');
|
|
|
|
|
2019-03-27 14:11:35 +03:00
|
|
|
if (!$table->hasIndex('cards_abid')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'cards_abid');
|
2019-03-27 13:42:33 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($schema->hasTable('cards_properties')) {
|
|
|
|
$table = $schema->getTable('cards_properties');
|
|
|
|
|
2019-03-27 14:11:35 +03:00
|
|
|
if (!$table->hasIndex('cards_prop_abid')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'cards_prop_abid');
|
2019-03-27 13:42:33 +03:00
|
|
|
}
|
|
|
|
}
|
2019-10-06 16:04:27 +03:00
|
|
|
|
|
|
|
if ($schema->hasTable('calendarobjects_props')) {
|
|
|
|
$table = $schema->getTable('calendarobjects_props');
|
|
|
|
|
|
|
|
if (!$table->hasIndex('calendarobject_calid_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'calendarobject_calid_index');
|
|
|
|
}
|
|
|
|
}
|
2019-10-07 15:39:27 +03:00
|
|
|
|
|
|
|
if ($schema->hasTable('schedulingobjects')) {
|
|
|
|
$table = $schema->getTable('schedulingobjects');
|
|
|
|
if (!$table->hasIndex('schedulobj_principuri_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'schedulobj_principuri_index');
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 01:13:13 +03:00
|
|
|
|
|
|
|
if ($schema->hasTable('properties')) {
|
|
|
|
$table = $schema->getTable('properties');
|
|
|
|
if (!$table->hasIndex('properties_path_index')) {
|
|
|
|
$subject->addHintForMissingSubject($table->getName(), 'properties_path_index');
|
|
|
|
}
|
|
|
|
}
|
2018-06-04 17:20:01 +03:00
|
|
|
}
|
|
|
|
);
|
2019-05-28 18:56:01 +03:00
|
|
|
|
2020-03-11 14:29:52 +03:00
|
|
|
$eventDispatcher->addListener(IDBConnection::CHECK_MISSING_COLUMNS_EVENT,
|
|
|
|
function (GenericEvent $event) use ($container) {
|
|
|
|
/** @var MissingColumnInformation $subject */
|
|
|
|
$subject = $event->getSubject();
|
|
|
|
|
|
|
|
$schema = new SchemaWrapper($container->query(IDBConnection::class));
|
|
|
|
|
|
|
|
if ($schema->hasTable('comments')) {
|
|
|
|
$table = $schema->getTable('comments');
|
|
|
|
|
|
|
|
if (!$table->hasColumn('reference_id')) {
|
|
|
|
$subject->addHintForMissingColumn($table->getName(), 'reference_id');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-05-28 18:56:01 +03:00
|
|
|
$eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeActivityListener::class);
|
|
|
|
$eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeNotificationsListener::class);
|
2019-07-02 15:58:48 +03:00
|
|
|
$eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeEmailListener::class);
|
2019-05-28 18:56:01 +03:00
|
|
|
$eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeActivityListener::class);
|
|
|
|
$eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeNotificationsListener::class);
|
2019-07-02 15:58:48 +03:00
|
|
|
$eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeEmailListener::class);
|
2020-01-08 12:51:44 +03:00
|
|
|
$eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedStoreCleanupListener::class);
|
2020-06-15 17:09:39 +03:00
|
|
|
$eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedTokenCleanupListener::class);
|
2014-10-20 21:05:48 +04:00
|
|
|
}
|
2014-05-28 21:13:07 +04:00
|
|
|
}
|