-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmanifest.php
97 lines (83 loc) · 2.59 KB
/
manifest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb;
use phpbb\config\config;
use phpbb\event\dispatcher_interface;
use Symfony\Component\HttpFoundation\JsonResponse;
class manifest
{
/** @var config */
protected $config;
/** @var path_helper */
protected $path_helper;
/** @var dispatcher_interface */
protected $phpbb_dispatcher;
/** @var user */
protected $user;
/**
* Constructor for manifest controller
*
* @param config $config
* @param path_helper $path_helper
* @param dispatcher_interface $phpbb_dispatcher
* @param user $user
*/
public function __construct(config $config, path_helper $path_helper, dispatcher_interface $phpbb_dispatcher, user $user)
{
$this->config = $config;
$this->path_helper = $path_helper;
$this->phpbb_dispatcher = $phpbb_dispatcher;
$this->user = $user;
}
/**
* Handle creation of a manifest json file for progressive web-app support
*
* @return JsonResponse
*/
public function handle(): JsonResponse
{
$board_path = $this->config['force_server_vars'] ? $this->config['script_path'] : $this->path_helper->get_web_root_path();
$sitename = html_entity_decode($this->config['sitename'], ENT_QUOTES, 'UTF-8');
$sitename_short = html_entity_decode($this->config['sitename_short'], ENT_QUOTES, 'UTF-8');
$manifest = [
'name' => $sitename,
'short_name' => $sitename_short ?: utf8_substr($sitename, 0, 12),
'display' => 'standalone',
'orientation' => 'portrait',
'start_url' => $board_path,
'scope' => $board_path,
];
/**
* Event to modify manifest data before it is outputted
*
* @event core.modify_manifest
* @var array manifest Array of manifest members
* @var string board_path Path to the board root
* @var string sitename Full name of the board
* @var string sitename_short Shortened name of the board
* @since 4.0.0-a1
*/
$vars = ['manifest', 'board_path', 'sitename', 'sitename_short'];
extract($this->phpbb_dispatcher->trigger_event('core.modify_manifest', compact($vars)));
$response = new JsonResponse($manifest);
$response->setPublic();
$response->setMaxAge(3600);
$response->headers->addCacheControlDirective('must-revalidate', true);
if (!empty($this->user->data['is_bot']))
{
// Let reverse proxies know we detected a bot.
$response->headers->set('X-PHPBB-IS-BOT', 'yes');
}
return $response;
}
}