2019-04-22 10:48:40 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00: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 10:48:40 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-02-19 15:29:13 +00:00
|
|
|
use Friendica\Core;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-04-22 10:48:40 +00:00
|
|
|
|
|
|
|
class Manifest extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-04-22 10:48:40 +00:00
|
|
|
{
|
2019-12-15 22:44:33 +00:00
|
|
|
$config = DI::config();
|
2019-04-22 10:48:40 +00:00
|
|
|
|
2020-10-02 21:11:45 +00:00
|
|
|
$touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-192.png';
|
2020-02-19 15:29:13 +00:00
|
|
|
|
|
|
|
$theme = DI::config()->get('system', 'theme');
|
2019-04-22 10:48:40 +00:00
|
|
|
|
2020-02-19 18:29:55 +00:00
|
|
|
$manifest = [
|
2021-01-25 17:02:49 +00: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 18:29:55 +00:00
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/' . $touch_icon,
|
2020-10-02 21:11:45 +00:00
|
|
|
'sizes' => '192x192',
|
2020-02-19 18:29:55 +00:00
|
|
|
'type' => 'image/png',
|
|
|
|
],
|
2020-10-03 18:25:10 +00:00
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/' . $touch_icon,
|
|
|
|
'sizes' => '512x512',
|
|
|
|
'type' => 'image/png',
|
|
|
|
],
|
2020-02-19 18:29:55 +00:00
|
|
|
],
|
2021-01-25 17:02:49 +00:00
|
|
|
'shortcuts' => [
|
2021-01-25 16:46:27 +00:00
|
|
|
[
|
2021-01-25 17:02:49 +00:00
|
|
|
'name' => 'Latest posts',
|
|
|
|
'url' => '/network'
|
2021-01-25 16:46:27 +00:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 17:02:49 +00:00
|
|
|
'name' => 'Messages',
|
|
|
|
'url' => '/message'
|
2021-01-25 16:46:27 +00:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 17:02:49 +00:00
|
|
|
'name' => 'Notifications',
|
|
|
|
'url' => '/notifications/system'
|
2021-01-25 16:46:27 +00:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 17:02:49 +00:00
|
|
|
'name' => 'Contacts',
|
|
|
|
'url' => '/contact'
|
2021-01-25 16:46:27 +00:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 17:02:49 +00:00
|
|
|
'name' => 'Events',
|
|
|
|
'url' => '/events'
|
2021-01-25 16:46:27 +00:00
|
|
|
]
|
|
|
|
]
|
2020-02-19 18:29:55 +00: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 10:48:40 +00:00
|
|
|
}
|
|
|
|
}
|