X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FManifest.php;h=2209003090db7c0579634e99b2b382008e6ed029;hb=68a2c4c8856904baf70cf10770c65a16134885d6;hp=a7ef344e4d8c30a97948e371a183a39b687c453d;hpb=3c76826793feeb933dab7a07dab7cc7eb2efc451;p=friendica.git diff --git a/src/Module/Manifest.php b/src/Module/Manifest.php index a7ef344e4d..2209003090 100644 --- a/src/Module/Manifest.php +++ b/src/Module/Manifest.php @@ -1,9 +1,28 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Core\Renderer; +use Friendica\Core; use Friendica\DI; class Manifest extends BaseModule @@ -12,22 +31,63 @@ class Manifest extends BaseModule { $config = DI::config(); - $tpl = Renderer::getMarkupTemplate('manifest.tpl'); + $touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-192.png'; - header('Content-type: application/manifest+json'); + $theme = DI::config()->get('system', 'theme'); - $touch_icon = $config->get('system', 'touch_icon', 'images/friendica-128.png'); - if ($touch_icon == '') { - $touch_icon = 'images/friendica-128.png'; - } + $manifest = [ + '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' => [ + [ + 'src' => DI::baseUrl()->get() . '/' . $touch_icon, + 'sizes' => '192x192', + 'type' => 'image/png', + ], + [ + 'src' => DI::baseUrl()->get() . '/' . $touch_icon, + 'sizes' => '512x512', + 'type' => 'image/png', + ], + ], + 'shortcuts' => [ + [ + 'name' => 'Latest posts', + 'url' => '/network' + ], + [ + 'name' => 'Messages', + 'url' => '/message' + ], + [ + 'name' => 'Notifications', + 'url' => '/notifications/system' + ], + [ + 'name' => 'Contacts', + 'url' => '/contact' + ], + [ + 'name' => 'Events', + 'url' => '/events' + ] + ] + ]; - $output = Renderer::replaceMacros($tpl, [ - '$touch_icon' => $touch_icon, - '$title' => $config->get('config', 'sitename', 'Friendica'), - ]); + if ($background_color = Core\Theme::getBackgroundColor($theme)) { + $manifest['background_color'] = $background_color; + } - echo $output; + if ($theme_color = Core\Theme::getThemeColor($theme)) { + $manifest['theme_color'] = $theme_color; + } - exit(); + Core\System::jsonExit($manifest, 'application/manifest+json'); } }