2019-04-22 06:48:40 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05: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 06:48:40 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-02-19 10:29:13 -05:00
|
|
|
use Friendica\Core;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-04-22 06:48:40 -04:00
|
|
|
|
|
|
|
class Manifest extends BaseModule
|
|
|
|
{
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function rawContent(array $request = [])
|
2019-04-22 06:48:40 -04:00
|
|
|
{
|
2019-12-15 17:44:33 -05:00
|
|
|
$config = DI::config();
|
2019-04-22 06:48:40 -04:00
|
|
|
|
2020-02-19 10:29:13 -05:00
|
|
|
$theme = DI::config()->get('system', 'theme');
|
2019-04-22 06:48:40 -04:00
|
|
|
|
2020-02-19 13:29:55 -05:00
|
|
|
$manifest = [
|
2021-01-25 12:02:49 -05: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'],
|
|
|
|
'shortcuts' => [
|
2021-01-25 11:46:27 -05:00
|
|
|
[
|
2021-01-25 12:02:49 -05:00
|
|
|
'name' => 'Latest posts',
|
|
|
|
'url' => '/network'
|
2021-01-25 11:46:27 -05:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 12:02:49 -05:00
|
|
|
'name' => 'Messages',
|
|
|
|
'url' => '/message'
|
2021-01-25 11:46:27 -05:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 12:02:49 -05:00
|
|
|
'name' => 'Notifications',
|
|
|
|
'url' => '/notifications/system'
|
2021-01-25 11:46:27 -05:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 12:02:49 -05:00
|
|
|
'name' => 'Contacts',
|
|
|
|
'url' => '/contact'
|
2021-01-25 11:46:27 -05:00
|
|
|
],
|
|
|
|
[
|
2021-01-25 12:02:49 -05:00
|
|
|
'name' => 'Events',
|
|
|
|
'url' => '/events'
|
2021-01-25 11:46:27 -05:00
|
|
|
]
|
|
|
|
]
|
2020-02-19 13:29:55 -05:00
|
|
|
];
|
|
|
|
|
2022-04-28 07:26:59 -04:00
|
|
|
/// @TODO If the admin provides their own touch icon, the manifest will regress
|
|
|
|
/// to a smaller set of icons that do not follow the web app manifest spec.
|
|
|
|
/// There should be a mechanism to allow the admin to provide all of the 6
|
|
|
|
/// different images that are required for a fully valid web app manifest.
|
|
|
|
$touch_icon = $config->get('system', 'touch_icon');
|
|
|
|
if($touch_icon){
|
|
|
|
$manifest['icons'] = [
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/' . $touch_icon,
|
|
|
|
'sizes' => '192x192',
|
|
|
|
'type' => 'image/png',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/' . $touch_icon,
|
|
|
|
'sizes' => '512x512',
|
|
|
|
'type' => 'image/png',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$manifest['icons'] = [
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/images/friendica.svg',
|
|
|
|
'sizes' => 'any',
|
|
|
|
'type' => 'image/svg+xml',
|
|
|
|
'purpose' => 'any',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/images/friendica-192.png',
|
|
|
|
'sizes' => '192x192',
|
|
|
|
'type' => 'image/png',
|
|
|
|
'purpose' => 'any',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/images/friendica-512.png',
|
|
|
|
'sizes' => '512x512',
|
|
|
|
'type' => 'image/png',
|
|
|
|
'purpose' => 'any',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/images/friendica-maskable.svg',
|
|
|
|
'sizes' => 'any',
|
|
|
|
'type' => 'image/svg+xml',
|
|
|
|
'purpose' => 'maskable',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/images/friendica-maskable-192.png',
|
|
|
|
'sizes' => '192x192',
|
|
|
|
'type' => 'image/png',
|
|
|
|
'purpose' => 'maskable',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'src' => DI::baseUrl()->get() . '/images/friendica-maskable-512.png',
|
|
|
|
'sizes' => '512x512',
|
|
|
|
'type' => 'image/png',
|
|
|
|
'purpose' => 'maskable',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-02-19 13:29:55 -05: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 06:48:40 -04:00
|
|
|
}
|
|
|
|
}
|