update tests to match new is_ssl behaviour
[dokuwiki.git] / inc / Manifest.php
blob15d9446fa8520058ea9d4f6a8b1338ee026afa69
1 <?php
3 namespace dokuwiki;
5 use dokuwiki\Extension\Event;
7 class Manifest
9 public function sendManifest()
11 $manifest = retrieveConfig('manifest', 'jsonToArray');
13 global $conf;
15 $manifest['scope'] = DOKU_REL;
17 if (empty($manifest['name'])) {
18 $manifest['name'] = $conf['title'];
21 if (empty($manifest['short_name'])) {
22 $manifest['short_name'] = $conf['title'];
25 if (empty($manifest['description'])) {
26 $manifest['description'] = $conf['tagline'];
29 if (empty($manifest['start_url'])) {
30 $manifest['start_url'] = DOKU_REL;
33 $styleUtil = new StyleUtils();
34 $styleIni = $styleUtil->cssStyleini();
35 $replacements = $styleIni['replacements'];
37 if (empty($manifest['background_color'])) {
38 $manifest['background_color'] = $replacements['__background__'];
41 if (empty($manifest['theme_color'])) {
42 $manifest['theme_color'] = empty($replacements['__theme_color__'])
43 ? $replacements['__background_alt__']
44 : $replacements['__theme_color__'];
47 if (empty($manifest['icons'])) {
48 $manifest['icons'] = [];
49 if (file_exists(mediaFN(':wiki:favicon.ico'))) {
50 $url = ml(':wiki:favicon.ico', '', true, '', true);
51 $manifest['icons'][] = [
52 'src' => $url,
53 'sizes' => '16x16',
57 $look = [
58 ':wiki:logo.svg',
59 ':logo.svg',
60 ':wiki:dokuwiki.svg'
63 foreach ($look as $svgLogo) {
64 $svgLogoFN = mediaFN($svgLogo);
66 if (file_exists($svgLogoFN)) {
67 $url = ml($svgLogo, '', true, '', true);
68 $manifest['icons'][] = [
69 'src' => $url,
70 'sizes' => '17x17 512x512',
71 'type' => 'image/svg+xml',
73 break;
78 Event::createAndTrigger('MANIFEST_SEND', $manifest);
80 header('Content-Type: application/manifest+json');
81 echo json_encode($manifest, JSON_THROW_ON_ERROR);