]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Manifest.php
Merge pull request #8864 from annando/feed-date
[friendica.git] / src / Module / Manifest.php
index c0af708fa8877e21749bf4aeb0ea7ee84484d1ab..bfe758fa9782a5a22cae9cede356603d6a072306 100644 (file)
@@ -22,7 +22,7 @@
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
-use Friendica\Core\Renderer;
+use Friendica\Core;
 use Friendica\DI;
 
 class Manifest extends BaseModule
@@ -31,22 +31,33 @@ class Manifest extends BaseModule
        {
                $config = DI::config();
 
-               $tpl = Renderer::getMarkupTemplate('manifest.tpl');
-
-               header('Content-type: application/manifest+json');
-
-               $touch_icon = $config->get('system', 'touch_icon', 'images/friendica-128.png');
-               if ($touch_icon == '') {
-                       $touch_icon = 'images/friendica-128.png';
+               $touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-128.png';
+
+               $theme = DI::config()->get('system', 'theme');
+
+               $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',
+                       'icons'       => [
+                               [
+                                       'src'   => DI::baseUrl()->get() . '/' . $touch_icon,
+                                       'sizes' => '128x128',
+                                       'type'  => 'image/png',
+                               ],
+                       ],
+               ];
+
+               if ($background_color = Core\Theme::getBackgroundColor($theme)) {
+                       $manifest['background_color'] = $background_color;
                }
 
-               $output = Renderer::replaceMacros($tpl, [
-                       '$touch_icon' => $touch_icon,
-                       '$title' => $config->get('config', 'sitename', 'Friendica'),
-               ]);
-
-               echo $output;
+               if ($theme_color = Core\Theme::getThemeColor($theme)) {
+                       $manifest['theme_color'] = $theme_color;
+               }
 
-               exit();
+               Core\System::jsonExit($manifest, 'application/manifest+json');
        }
 }