X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FManifest.php;h=bfe758fa9782a5a22cae9cede356603d6a072306;hb=db7736c566d62d1ed9a35927d09b3f4e3a01c361;hp=c0af708fa8877e21749bf4aeb0ea7ee84484d1ab;hpb=13a10b8f20ac7c5927c39d9e80e1a7d515385736;p=friendica.git diff --git a/src/Module/Manifest.php b/src/Module/Manifest.php index c0af708fa8..bfe758fa97 100644 --- a/src/Module/Manifest.php +++ b/src/Module/Manifest.php @@ -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'); } }