memories/lib/AppInfo/Application.php

108 lines
3.7 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\ClustersBackend;
use OCA\Memories\Listeners\BeforeTemplateListener;
use OCA\Memories\Listeners\PostDeleteListener;
use OCA\Memories\Listeners\PostLogoutListener;
2022-10-19 17:10:36 +00:00
use OCA\Memories\Listeners\PostWriteListener;
use OCA\Memories\Util;
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\AppFramework\Http\Events\BeforeTemplateRenderedEvent;
2022-08-13 01:58:37 +00:00
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;
use OCP\User\Events\UserLoggedOutEvent;
2022-08-13 01:58:37 +00:00
const AUTH_HEADER = 'HTTP_AUTHORIZATION';
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/tiff',
'image/gif',
'image/bmp',
2022-10-25 00:55:34 +00:00
'image/x-dcraw', // RAW
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/MP2T',
2023-04-23 05:37:56 +00:00
'video/x-msvideo',
// '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
{
// Register file hooks
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);
// Register other global hooks
$context->registerEventListener(BeforeTemplateRenderedEvent::class, BeforeTemplateListener::class);
$context->registerEventListener(UserLoggedOutEvent::class, PostLogoutListener::class);
// Register clusters backends
ClustersBackend\AlbumsBackend::register();
ClustersBackend\TagsBackend::register();
ClustersBackend\PlacesBackend::register();
ClustersBackend\RecognizeBackend::register();
ClustersBackend\FaceRecognitionBackend::register();
// Extra hooks for native extension calls
if (Util::callerIsNative()) {
// Android webview sends an empty Authorization header which screws up DAV
if (isset($_SERVER[AUTH_HEADER]) && empty($_SERVER[AUTH_HEADER])) {
unset($_SERVER[AUTH_HEADER]);
}
}
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
}