Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
mcp.php
001 <?php
002 /**
003 *
004 * This file is part of the phpBB Forum Software package.
005 *
006 * @copyright (c) phpBB Limited <https://www.phpbb.com>
007 * @license GNU General Public License, version 2 (GPL-2.0)
008 *
009 * For full copyright and license information, please see
010 * the docs/CREDITS.txt file.
011 *
012 */
013
014 /**
015 * @ignore
016 */
017 define('IN_PHPBB', true);
018 $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
019 $phpEx = substr(strrchr(__FILE__, '.'), 1);
020 include($phpbb_root_path . 'common.' . $phpEx);
021 include($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
022 include($phpbb_root_path . 'includes/functions_mcp.' . $phpEx);
023 require($phpbb_root_path . 'includes/functions_module.' . $phpEx);
024
025 // Start session management
026 $user->session_begin();
027 $auth->acl($user->data);
028 $user->setup('mcp');
029
030 $module = new p_master();
031
032 // Setting a variable to let the style designer know where he is...
033 $template->assign_var('S_IN_MCP', true);
034
035 // Basic parameter data
036 $id = $request->variable('i', '');
037
038 $mode = $request->variable('mode', array(''));
039 $mode = sizeof($mode) ? array_shift($mode) : $request->variable('mode', '');
040
041 // Only Moderators can go beyond this point
042 if (!$user->data['is_registered'])
043 {
044 if ($user->data['is_bot'])
045 {
046 redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
047 }
048
049 login_box('', $user->lang['LOGIN_EXPLAIN_MCP']);
050 }
051
052 $quickmod = (isset($_REQUEST['quickmod'])) ? true : false;
053 $action = $request->variable('action', '');
054 $action_ary = $request->variable('action', array('' => 0));
055
056 $forum_action = $request->variable('forum_action', '');
057 if ($forum_action !== '' && $request->variable('sort', false, false, \phpbb\request\request_interface::POST))
058 {
059 $action = $forum_action;
060 }
061
062 if (sizeof($action_ary))
063 {
064 list($action, ) = each($action_ary);
065 }
066 unset($action_ary);
067
068 if ($mode == 'topic_logs')
069 {
070 $id = 'logs';
071 $quickmod = false;
072 }
073
074 $post_id = $request->variable('p', 0);
075 $topic_id = $request->variable('t', 0);
076 $forum_id = $request->variable('f', 0);
077 $report_id = $request->variable('r', 0);
078 $user_id = $request->variable('u', 0);
079 $username = $request->variable('username', '', true);
080
081 if ($post_id)
082 {
083 // We determine the topic and forum id here, to make sure the moderator really has moderative rights on this post
084 $sql = 'SELECT topic_id, forum_id
085 FROM ' . POSTS_TABLE . "
086 WHERE post_id = $post_id";
087 $result = $db->sql_query($sql);
088 $row = $db->sql_fetchrow($result);
089 $db->sql_freeresult($result);
090
091 $topic_id = (int) $row['topic_id'];
092 $forum_id = (int) $row['forum_id'];
093 }
094 else if ($topic_id)
095 {
096 $sql = 'SELECT forum_id
097 FROM ' . TOPICS_TABLE . "
098 WHERE topic_id = $topic_id";
099 $result = $db->sql_query($sql);
100 $row = $db->sql_fetchrow($result);
101 $db->sql_freeresult($result);
102
103 $forum_id = (int) $row['forum_id'];
104 }
105
106 // If the user doesn't have any moderator powers (globally or locally) he can't access the mcp
107 if (!$auth->acl_getf_global('m_'))
108 {
109 // Except he is using one of the quickmod tools for users
110 $user_quickmod_actions = array(
111 'lock' => 'f_user_lock',
112 'make_sticky' => 'f_sticky',
113 'make_announce' => 'f_announce',
114 'make_global' => 'f_announce_global',
115 'make_normal' => array('f_announce', 'f_announce_global', 'f_sticky')
116 );
117
118 $allow_user = false;
119 if ($quickmod && isset($user_quickmod_actions[$action]) && $user->data['is_registered'] && $auth->acl_gets($user_quickmod_actions[$action], $forum_id))
120 {
121 $topic_info = phpbb_get_topic_data(array($topic_id));
122 if ($topic_info[$topic_id]['topic_poster'] == $user->data['user_id'])
123 {
124 $allow_user = true;
125 }
126 }
127
128 if (!$allow_user)
129 {
130 send_status_line(403, 'Forbidden');
131 trigger_error('NOT_AUTHORISED');
132 }
133 }
134
135 // if the user cannot read the forum he tries to access then we won't allow mcp access either
136 if ($forum_id && !$auth->acl_get('f_read', $forum_id))
137 {
138 send_status_line(403, 'Forbidden');
139 trigger_error('NOT_AUTHORISED');
140 }
141
142 /**
143 * Allow applying additional permissions to MCP access besides f_read
144 *
145 * @event core.mcp_global_f_read_auth_after
146 * @var string action The action the user tried to execute
147 * @var int forum_id The forum the user tried to access
148 * @var string mode The MCP module the user is trying to access
149 * @var p_master module Module system class
150 * @var bool quickmod True if the user is accessing using quickmod tools
151 * @var int topic_id The topic the user tried to access
152 * @since 3.1.3-RC1
153 */
154 $vars = array(
155 'action',
156 'forum_id',
157 'mode',
158 'module',
159 'quickmod',
160 'topic_id',
161 );
162 extract($phpbb_dispatcher->trigger_event('core.mcp_global_f_read_auth_after', compact($vars)));
163
164 if ($forum_id)
165 {
166 $module->acl_forum_id = $forum_id;
167 }
168
169 // Instantiate module system and generate list of available modules
170 $module->list_modules('mcp');
171
172 if ($quickmod)
173 {
174 $mode = 'quickmod';
175
176 switch ($action)
177 {
178 case 'lock':
179 case 'unlock':
180 case 'lock_post':
181 case 'unlock_post':
182 case 'make_sticky':
183 case 'make_announce':
184 case 'make_global':
185 case 'make_normal':
186 case 'fork':
187 case 'move':
188 case 'delete_post':
189 case 'delete_topic':
190 case 'restore_topic':
191 $module->load('mcp', 'main', 'quickmod');
192 return;
193 break;
194
195 case 'topic_logs':
196 // Reset start parameter if we jumped from the quickmod dropdown
197 if ($request->variable('start', 0))
198 {
199 $request->overwrite('start', 0);
200 }
201
202 $module->set_active('logs', 'topic_logs');
203 break;
204
205 case 'merge_topic':
206 $module->set_active('main', 'forum_view');
207 break;
208
209 case 'split':
210 case 'merge':
211 $module->set_active('main', 'topic_view');
212 break;
213
214 default:
215 // If needed, the flag can be set to true within event listener
216 // to indicate that the action was handled properly
217 // and to pass by the trigger_error() call below
218 $is_valid_action = false;
219
220 /**
221 * This event allows you to add custom quickmod options
222 *
223 * @event core.modify_quickmod_options
224 * @var object module Instance of module system class
225 * @var string action Quickmod option
226 * @var bool is_valid_action Flag indicating if the action was handled properly
227 * @since 3.1.0-a4
228 */
229 $vars = array('module', 'action', 'is_valid_action');
230 extract($phpbb_dispatcher->trigger_event('core.modify_quickmod_options', compact($vars)));
231
232 if (!$is_valid_action)
233 {
234 trigger_error($user->lang('QUICKMOD_ACTION_NOT_ALLOWED', $action), E_USER_ERROR);
235 }
236 break;
237 }
238 }
239 else
240 {
241 // Select the active module
242 $module->set_active($id, $mode);
243 }
244
245 // Hide some of the options if we don't have the relevant information to use them
246 if (!$post_id)
247 {
248 $module->set_display('main', 'post_details', false);
249 $module->set_display('warn', 'warn_post', false);
250 }
251
252 if ($mode == '' || $mode == 'unapproved_topics' || $mode == 'unapproved_posts' || $mode == 'deleted_topics' || $mode == 'deleted_posts')
253 {
254 $module->set_display('queue', 'approve_details', false);
255 }
256
257 if ($mode == '' || $mode == 'reports' || $mode == 'reports_closed' || $mode == 'pm_reports' || $mode == 'pm_reports_closed' || $mode == 'pm_report_details')
258 {
259 $module->set_display('reports', 'report_details', false);
260 }
261
262 if ($mode == '' || $mode == 'reports' || $mode == 'reports_closed' || $mode == 'pm_reports' || $mode == 'pm_reports_closed' || $mode == 'report_details')
263 {
264 $module->set_display('pm_reports', 'pm_report_details', false);
265 }
266
267 if (!$topic_id)
268 {
269 $module->set_display('main', 'topic_view', false);
270 $module->set_display('logs', 'topic_logs', false);
271 }
272
273 if (!$forum_id)
274 {
275 $module->set_display('main', 'forum_view', false);
276 $module->set_display('logs', 'forum_logs', false);
277 }
278
279 if (!$user_id && $username == '')
280 {
281 $module->set_display('notes', 'user_notes', false);
282 $module->set_display('warn', 'warn_user', false);
283 }
284
285 /**
286 * This event allows you to set display option for custom MCP modules
287 *
288 * @event core.modify_mcp_modules_display_option
289 * @var p_master module Module system class
290 * @var string mode MCP mode
291 * @var int user_id User id
292 * @var int forum_id Forum id
293 * @var int topic_id Topic id
294 * @var int post_id Post id
295 * @var string username User name
296 * @var int id Parent module id
297 * @since 3.1.0-b2
298 */
299 $vars = array(
300 'module',
301 'mode',
302 'user_id',
303 'forum_id',
304 'topic_id',
305 'post_id',
306 'username',
307 'id',
308 );
309 extract($phpbb_dispatcher->trigger_event('core.modify_mcp_modules_display_option', compact($vars)));
310
311 // Load and execute the relevant module
312 $module->load_active();
313
314 // Assign data to the template engine for the list of modules
315 $module->assign_tpl_vars(append_sid("{$phpbb_root_path}mcp.$phpEx"));
316
317 // Generate urls for letting the moderation control panel being accessed in different modes
318 $template->assign_vars(array(
319 'U_MCP' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main'),
320 'U_MCP_FORUM' => ($forum_id) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&mode=forum_view&f=$forum_id") : '',
321 'U_MCP_TOPIC' => ($forum_id && $topic_id) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&mode=topic_view&t=$topic_id") : '',
322 'U_MCP_POST' => ($forum_id && $topic_id && $post_id) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&mode=post_details&t=$topic_id&p=$post_id") : '',
323 ));
324
325 // Generate the page, do not display/query online list
326 $module->display($module->get_page_title());
327