-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.php
95 lines (82 loc) · 2.41 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
<?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 phpbb\exception\http_exception;
use phpbb\language\language;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
class manifest
{
/** @var config */
protected $config;
/** @var language */
protected $language;
/** @var path_helper */
protected $path_helper;
/** @var dispatcher_interface */
protected $phpbb_dispatcher;
/** @var user */
protected $user;
/**
* Constructor for manifest controller
*
* @param config $config
* @param language $language
* @param path_helper $path_helper
* @param dispatcher_interface $phpbb_dispatcher
* @param user $user
*/
public function __construct(config $config, language $language, path_helper $path_helper, dispatcher_interface $phpbb_dispatcher, user $user)
{
$this->config = $config;
$this->path_helper = $path_helper;
$this->phpbb_dispatcher = $phpbb_dispatcher;
$this->language = $language;
$this->user = $user;
}
/**
* Handle creation of a manifest json file for progressive web-app support
*
* @return JsonResponse
*/
public function handle(): JsonResponse
{
if ($this->user->data['is_bot'])
{
throw new http_exception(Response::HTTP_FORBIDDEN, 'NO_AUTH_OPERATION');
}
$board_path = $this->config['force_server_vars'] ? $this->config['script_path'] : $this->path_helper->get_web_root_path();
$manifest = [
'name' => $this->config['sitename'],
'short_name' => $this->config['sitename_short'] ?: substr($this->config['sitename'], 0, 12),
'display' => 'standalone',
'orientation' => 'portrait',
'dir' => $this->language->lang('DIRECTION'),
'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
* @since 4.0.0-a1
*/
$vars = array('manifest', 'board_path');
extract($this->phpbb_dispatcher->trigger_event('core.modify_manifest', compact($vars)));
return new JsonResponse($manifest);
}
}