memories/lib/AppInfo/Application.php

78 lines
2.4 KiB
PHP
Raw Normal View History

2022-08-13 01:58:37 +00:00
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2022, Varun Patil <radialapps@gmail.com>
* @author Varun Patil <radialapps@gmail.com>
* @license AGPL-3.0-or-later
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace OCA\Memories\AppInfo;
2022-08-13 01:58:37 +00:00
use OCA\Memories\Listeners\PostDeleteListener;
2022-10-19 17:10:36 +00:00
use OCA\Memories\Listeners\PostWriteListener;
2022-08-13 01:58:37 +00:00
use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;
use OCP\AppFramework\Bootstrap\IBootstrap;
use OCP\AppFramework\Bootstrap\IRegistrationContext;
use OCP\Files\Events\Node\NodeDeletedEvent;
use OCP\Files\Events\Node\NodeTouchedEvent;
2022-10-19 17:10:36 +00:00
use OCP\Files\Events\Node\NodeWrittenEvent;
2022-08-13 01:58:37 +00:00
2022-10-19 17:10:36 +00:00
class Application extends App implements IBootstrap
{
2022-09-09 07:31:42 +00:00
public const APPNAME = 'memories';
2022-08-13 01:58:37 +00:00
2022-09-09 07:31:42 +00:00
public const IMAGE_MIMES = [
'image/png',
'image/jpeg',
'image/heic',
'image/png',
'image/tiff',
'image/gif',
'image/bmp',
2022-09-09 07:31:42 +00:00
// 'image/x-xbitmap', // too rarely used for photos
// 'image/svg+xml', // too rarely used for photos
];
2022-08-15 23:43:10 +00:00
2022-09-09 07:31:42 +00:00
public const VIDEO_MIMES = [
'video/mpeg',
'video/webm',
2022-09-09 07:31:42 +00:00
'video/mp4',
'video/quicktime',
'video/x-matroska',
// 'video/x-m4v', // too rarely used for photos
// 'video/ogg', // too rarely used for photos
2022-09-09 07:31:42 +00:00
];
2022-08-15 23:43:10 +00:00
2022-10-19 17:10:36 +00:00
public function __construct()
{
2022-09-09 07:31:42 +00:00
parent::__construct(self::APPNAME);
}
2022-08-13 01:58:37 +00:00
2022-10-19 17:10:36 +00:00
public function register(IRegistrationContext $context): void
{
2022-09-09 07:31:42 +00:00
$context->registerEventListener(NodeWrittenEvent::class, PostWriteListener::class);
2022-08-13 01:58:37 +00:00
$context->registerEventListener(NodeTouchedEvent::class, PostWriteListener::class);
$context->registerEventListener(NodeDeletedEvent::class, PostDeleteListener::class);
2022-09-09 07:31:42 +00:00
}
2022-08-13 01:58:37 +00:00
2022-10-19 17:10:36 +00:00
public function boot(IBootContext $context): void
{
2022-09-09 07:31:42 +00:00
}
2022-10-19 17:10:36 +00:00
}