]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Manifest.php
Use rawContent for Special Options to avoid a protected options() method
[friendica.git] / src / Module / Manifest.php
index 9e09740594c9a73156d9bc801c34a8d68d29a519..2ae8009e251617092a9ba07420606db4901039a8 100644 (file)
@@ -1,33 +1,93 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @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/>.
+ *
+ */
 
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
-use Friendica\Core\Renderer;
+use Friendica\Core;
+use Friendica\DI;
 
 class Manifest extends BaseModule
 {
-       public static function rawContent(array $parameters = [])
+       protected function rawContent(array $request = [])
        {
-               $app = self::getApp();
-               $config = $app->getConfig();
+               $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');
        }
 }