-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.php
136 lines (109 loc) · 3.56 KB
/
main.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
/**
*
* @package phpBB.de tou
* @copyright (c) 2015 phpBB.de, gn#36
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace phpbbde\tou\controller;
class main
{
/** @var \phpbb\config\config */
protected $config;
/** @var \phpbb\db\driver\driver_interface */
protected $db;
/** @var \phpbb\request\request */
protected $request;
/** @var \phpbb\template\template */
protected $template;
/** @var \phpbb\user */
protected $user;
/* @var \phpbb\language\language */
protected $language;
/** @var \phpbb\controller\helper */
protected $helper;
/** @var string */
protected $root_path;
/** @var string */
protected $php_ext;
/**
* Constructor
*
* @param \phpbb\config\config $config
* @param \phpbb\db\driver\driver_interface $db
* @param \phpbb\request\request $request
* @param \phpbb\template\template $template
* @param \phpbb\user $user
* @param \phpbb\language\language $language
* @param \phpbb\controller\helper $helper
* @param string $root_path
* @param string $php_ext
*/
public function __construct(
\phpbb\config\config $config,
\phpbb\db\driver\driver_interface $db,
\phpbb\request\request $request,
\phpbb\template\template $template,
\phpbb\user $user,
\phpbb\language\language $language,
\phpbb\controller\helper $helper,
$root_path,
$php_ext)
{
$this->config = $config;
$this->request = $request;
$this->db = $db;
$this->template = $template;
$this->user = $user;
$this->language = $language;
$this->helper = $helper;
$this->root_path = $root_path;
$this->php_ext = $php_ext;
}
/**
* Handle all calls
*/
public function handle()
{
define('PHPBBDE_TOU_CONTROLLER_IN_TOU', true);
$this->language->add_lang('ucp');
$this->language->add_lang('tou', 'phpbbde/tou');
// Adding links to the breadcrumbs
$this->template->assign_block_vars('navlinks', array(
'FORUM_NAME' => $this->language->lang('TOU'),
'U_VIEW_FORUM' => $this->helper->route('phpbbde_tou_main_controller'),
));
$this->template->assign_vars(array(
'L_TERMS_OF_USE' => $this->language->lang('TERMS_OF_USE_CONTENT', $this->config['sitename'], generate_board_url()),
'L_PRIVACY_POLICY' => $this->language->lang('PRIVACY_POLICY', $this->config['sitename'], generate_board_url()),
'S_UCP_ACTION' => $this->helper->route('phpbbde_tou_main_controller'),
'HAS_ALREADY_AGREED' => $this->user->data['user_tou_version'] >= $this->config['tou_version'],
));
if ($this->request->is_set_post('agreed'))
{
if ( check_form_key('tou_agreement'))
{
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_tou_version = " . (int) $this->config['tou_version'] . ",
user_tou_confirmdate = " . (int) time() . ",
user_tou_confirmip = '" . $this->db->sql_escape($this->user->ip) . "'
WHERE user_id = " . (int) $this->user->data['user_id'];
$this->db->sql_query($sql);
$redirect = "{$this->root_path}index.{$this->php_ext}";
$message = $this->language->lang('CONFIRM_TOU_REDIRECT');
$l_redirect = $this->language->lang('RETURN_INDEX');
$redirect = reapply_sid($redirect);
meta_refresh(3, $redirect);
trigger_error($message . '<br><br>' . sprintf($l_redirect, '<a href="' . $redirect . '">', '</a>'));
}
trigger_error('INVALID_FORM');
}
else if ($this->request->is_set_post('not_agreed'))
{
trigger_error($this->language->lang('TOU_DENIED', $this->config['sitename']));
}
add_form_key('tou_agreement');
return $this->helper->render('@phpbbde_tou/tou_body.html', $this->language->lang('TOU'));
}
}