2019-04-22 12:48:40 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:45:36 +01: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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-04-22 12:48:40 +02:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-02-19 16:29:13 +01:00
|
|
|
use Friendica\Core;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2019-04-22 12:48:40 +02:00
|
|
|
|
|
|
|
class Manifest extends BaseModule
|
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function rawContent(array $request = [])
|
2019-04-22 12:48:40 +02:00
|
|
|
{
|
2019-12-15 23:44:33 +01:00
|
|
|
$config = DI::config();
|
2019-04-22 12:48:40 +02:00
|
|
|
|
2020-10-02 23:11:45 +02:00
|
|
|
$touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-192.png';
|
2020-02-19 16:29:13 +01:00
|
|
|
|
|
|
|
$theme = DI::config()->get('system', 'theme');
|
2019-04-22 12:48:40 +02:00
|
|
|
|
2020-02-19 19:29:55 +01:00
|
|
|
$manifest = [
|
2021-01-25 18:02:49 +01:00
|
|
|
'name' => $config->get('config', 'sitename', 'Friendica'),
|
|
|
|
'start_url' => DI::baseUrl()->get(),
|
|
|
|
'display' => 'standalone',
|
|
|
|
'description' => $config->get('config', 'info', DI::l10n()->t('A Decentralized Social Network')),
|
|
|
|
'short_name' => 'Friendica',
|
|
|
|
'lang' => $config->get('system', 'language'),
|
|
|
|
'dir' => 'auto',
|
|
|
|
'categories' => ['social network', 'internet'],
|
|
|
|
'icons' => [
|
2020-02-19 19:29:55 +01:00
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/' . $touch_icon,
|
2020-10-02 23:11:45 +02:00
|
|
|
'sizes' => '192x192',
|
2020-02-19 19:29:55 +01:00
|
|
|
'type' => 'image/png',
|
|
|
|
],
|
2020-10-03 20:25:10 +02:00
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/' . $touch_icon,
|
|
|
|
'sizes' => '512x512',
|
|
|
|
'type' => 'image/png',
|
|
|
|
],
|
2020-02-19 19:29:55 +01:00
|
|
|
],
|
2021-01-25 18:02:49 +01:00
|
|
|
'shortcuts' => [
|
2021-01-25 17:46:27 +01:00
|
|
|
[
|
2021-01-25 18:02:49 +01:00
|
|
|
'name' => 'Latest posts',
|
|
|
|
'url' => '/network'
|
2021-01-25 17:46:27 +01:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 18:02:49 +01:00
|
|
|
'name' => 'Messages',
|
|
|
|
'url' => '/message'
|
2021-01-25 17:46:27 +01:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 18:02:49 +01:00
|
|
|
'name' => 'Notifications',
|
|
|
|
'url' => '/notifications/system'
|
2021-01-25 17:46:27 +01:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 18:02:49 +01:00
|
|
|
'name' => 'Contacts',
|
|
|
|
'url' => '/contact'
|
2021-01-25 17:46:27 +01:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 18:02:49 +01:00
|
|
|
'name' => 'Events',
|
|
|
|
'url' => '/events'
|
2021-01-25 17:46:27 +01:00
|
|
|
]
|
|
|
|
]
|
2020-02-19 19:29:55 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
if ($background_color = Core\Theme::getBackgroundColor($theme)) {
|
|
|
|
$manifest['background_color'] = $background_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($theme_color = Core\Theme::getThemeColor($theme)) {
|
|
|
|
$manifest['theme_color'] = $theme_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
Core\System::jsonExit($manifest, 'application/manifest+json');
|
2019-04-22 12:48:40 +02:00
|
|
|
}
|
|
|
|
}
|