2 /************************************************************************
3 * MXChange v0.2.1 Start: 07/13/2004 *
4 * =============== Last change: 08/02/2004 *
6 * -------------------------------------------------------------------- *
7 * File : overview-inc.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Output standard task management *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Standart-Aufgaben-Management ausgeben *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 function OUTPUT_STANDARD_OVERVIEW(&$result_tasks) {
41 global $cacheArray, $_CONFIG;
43 // First check for solved and not assigned tasks and assign them to current admin
44 $result_task = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin='%s' WHERE assigned_admin < 1 AND status != 'NEW'",
45 array(GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
47 // We currently don't want to install an extension so let's find out if we need...
48 $EXT_LOAD_MODE = "register";
51 // Open the extension directory
52 $handle = opendir(PATH."inc/extensions/") or mxchange_die("Cannot read extension directory!");
53 while ($file = readdir($handle)) {
54 // Is this file an extension?
55 if ((substr($file, 0, 4) == "ext-") && (substr($file, -4) == ".php")) {
56 //* DEBUG: */ echo $file."<br />\n";
57 // Possible newly installed extension found so we extract extension's name
58 $ext = strtolower(substr($file, 4, -4)); // Keep always extension names on lower case!!!
64 // Check if extension is installed or not
65 if ((is_array($cacheArray['extensions']['ext_version'])) && (isset($cacheArray['extensions']['ext_version'][$ext]))) {
66 // Load version from cache
67 if (!empty($cacheArray['extensions']['ext_version'][$ext])) {
68 // Extension is installed so we can get it's version number
69 $ext_ver = $cacheArray['extensions']['ext_version'][$ext];
71 // Extension is not installed so no version number was found
74 } elseif (!EXT_IS_ACTIVE("cache")) {
75 // Load data from database
76 $result = SQL_QUERY_ESC("SELECT id, ext_version FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
77 array($ext), __FILE__, __LINE__);
80 // Is the extension not yet installed?
81 if ((SQL_NUMROWS($result) == 0) && (empty($ext_ver))) {
82 // Generate subject line
83 $ext_subj = sprintf("[%s:]", $ext);
85 // Create a task for newly installed extension
86 CREATE_NEW_EXTENSION_TASK(GET_ADMIN_ID(get_session('admin_login')), $ext_subj, $ext);
88 // We maybe want to install an extension so let's test-drive it...
89 include(PATH."inc/extensions/".$file);
91 // Maybe we want to update?
92 if ((empty($cacheArray['extensions']['ext_version'][$ext])) && (SQL_NUMROWS($result) == 1)) {
93 list($dummy, $ext_ver) = SQL_FETCHROW($result);
94 SQL_FREERESULT($result);
98 if (!empty($ext_ver)) EXTENSION_UPDATE($file, $ext, $ext_ver);
100 if (!empty($cacheArray['active_extensions'][$ext])) {
101 // Maybe we want to keept the current extension active?
102 if (($cacheArray['active_extensions'][$ext] == "Y") && (!EXT_IS_ACTIVE($ext))) {
103 // Reactivate this extension!
104 ACTIVATE_EXTENSION($ext);
111 // Close directory handle
114 // At last - but not least - check for own and new unassigned tasks...
115 $result_tasks = SQL_QUERY_ESC("SELECT id, assigned_admin, userid, task_type, subject, text, task_created
116 FROM "._MYSQL_PREFIX."_task_system
117 WHERE assigned_admin='%s' OR (assigned_admin='0' AND status='NEW')
118 ORDER BY userid DESC, task_type DESC, subject, task_created DESC",
119 array(GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
121 if (SQL_NUMROWS($result_tasks) > 0) {
127 SQL_FREERESULT($result);
134 function OUTPUT_SELECTED_TASKS($_POST, $result_tasks) {
135 global $_CONFIG, $NOTES;
136 if ((isset($_POST['assign'])) && (count($_POST['task']) > 0)) {
139 foreach ($_POST['task'] as $id => $sel) {
140 $result_task = SQL_QUERY_ESC("SELECT id, userid, task_type, subject, text, task_created, status, assigned_admin FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND (assigned_admin='%s' OR (assigned_admin='0' AND status='NEW')) LIMIT 1",
141 array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
142 if (SQL_NUMROWS($result_task) == 1) {
144 list($tid, $uid, $type, $subj, $text, $created, $status, $aid) = SQL_FETCHROW($result_task);
145 SQL_FREERESULT($result_task);
148 // Assgin current admin to unassgigned task
149 $result_assign = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin='%s' WHERE id=%s LIMIT 1",
150 array(GET_ADMIN_ID(get_session('admin_login')), bigintval($tid)), __FILE__, __LINE__);
154 if ($type == "SUPPORT_MEMBER") {
155 $mode = substr($text, 0, strpos($text, ":"));
156 $text = substr($text, strpos($text, ":") + 1);
157 $ADD = "<LI>".ADMIN_TASK_SUPPORT_MODE.": <STRONG>".$mode."</STRONG></LI>";
161 $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
162 array(bigintval($uid)), __FILE__, __LINE__);
163 if (SQL_NUMROWS($result_user) == 1) {
164 list($gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
165 SQL_FREERESULT($result_user);
166 $ADD = "<LI>".ADMIN_MEMBER_UID.": <STRONG>".ADMIN_USER_PROFILE_LINK($uid)." (<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".TRANSLATE_GENDER($gender)." ".$sname." ".$fname."</A>)</STRONG></LI>";
170 // Decode entities of the text
171 $text = html_entity_decode($text);
173 // Compile and insert text from task into table template
174 $text = LOAD_TEMPLATE("admin_extensions_text", true, $text);
176 // Initialize variables (no title for SQL commands by default)
178 $title = TASK_NO_TITLE;
180 // Shall I list SQL commands assigned to an extension installation or update task?
181 if (((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['verbose_sql'] == "Y")) || (!EXT_IS_ACTIVE("sql_patches"))) {
182 $ext_name = substr($subj, 1, strpos($subj, ":") - 1);
183 if ($type == "EXTENSION") {
184 // Load SQL commands for registering
185 $SQLs = EXTENSION_REGISTER($ext_name, $id, true);
191 $title = ADMIN_SQLS_EXECUTED_ON_REGISTER;
192 } elseif ($type == "EXTENSION_UPDATE") {
193 // Load SQL commands for update (already done!)
194 $ext_name = substr($ext_name, 7);
195 $ext_name = substr($ext_name, 0, strpos($ext_name, "-"));
196 $test = "[UPDATE-".$ext_name."-";
197 $ext_ver = substr($subj, strlen($test));
198 $ext_ver = substr($ext_ver, 0, strpos($ext_ver, ":"));
200 // Load SQLs from file
201 $SQLs = EXTENSION_UPDATE("ext-".$ext_name.".php", $ext_name, $ext_ver, true);
207 $title = ADMIN_SQLS_EXECUTED_ON_UPDATE;
209 // Remove extension's name
213 // Add SQLs to a table
214 if (empty($SQLs)) $SQLs = array();
215 if (empty($title)) $title = "";
216 if ((!empty($ext_name)) && (GET_EXT_VERSION("sql_patches")) && ($_CONFIG['verbose_sql'] == "Y")) {
217 // Add verbose SQL table
218 $text .= EXTENSION_VERBOSE_TABLE($SQLs, $title, " class=\"admin_table top2 left2 right2\"", true, "100%")."<br />\n";
221 // Run SQL commands in dry mode but only return the notes
222 $SQLs = EXTENSION_UPDATE("ext-".$ext_name.".php", $ext_name, $ext_ver, true);
226 // Prepare array for the template
232 'created' => MAKE_DATETIME($created, "1"),
233 'extension' => $ext_name
237 $OUT .= LOAD_TEMPLATE("admin_overview_row", true, $content);
239 // Which task do we actually have here?
242 case "EXTENSION": // Install new extensions
243 $ext_name = substr($subj, 1, strpos($subj, ":") - 1);
244 $result_lines = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
245 array($ext_name), __FILE__, __LINE__);
246 $lines = SQL_NUMROWS($result_lines);
247 SQL_FREERESULT($result_lines);
249 // New extension found
250 $OUT .= LOAD_TEMPLATE("admin_ext_reg_form", true, array(
251 'id' => bigintval($id),
252 'ext_name' => $ext_name
255 // Task is closed so nothing is todo
256 $OUT .= "<FONT class=\"admin_failed\">".ADMIN_EXT_ALREADY_REGISTERED."</FONT>\n";
258 // Close task but not already closes or deleted or update tasks
259 if (($status != "CLOSED") && ($status != "DELETED") && ($type != "EXTENSION_UPDATE")) {
260 ADMIN_SOLVE_TASK($tid);
265 case "EXTENSION_UPDATE":
266 // Extension updates are installed automatically
267 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_EXTENSION_UPDATED."</FONT>\n";
270 if (($status != "CLOSED") && ($status != "DELETED")) {
272 ADMIN_SOLVE_TASK($tid);
276 case "SUPPORT_MEMBER": // Assign on member's support request
279 default: // Unknown support mode
280 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown support mode %s detected. This part is under construction!", $mode));
281 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_UNKNOWN_SUPPORT_MODE_1.$mode.ADMIN_UNKNOWN_SUPPORT_MODE_2."</FONT>\n";
286 case "PAYOUT_REQUEST": // Payout requests
287 if (EXT_IS_ACTIVE("payout")) {
288 // Extension is installed so let him send a notification to the user
289 $result_pay = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_payouts WHERE userid=%s AND payout_timestamp=%s LIMIT 1",
290 array(bigintval($uid), bigintval($created)), __FILE__, __LINE__);
291 list($pid) = SQL_FETCHROW($result_pay);
292 SQL_FREERESULT($result_pay);
294 if ((!empty($pid)) && ($pid > 0)) {
295 // Payout ID can be obtained
300 $OUT .= LOAD_TEMPLATE("admin_payout_overview_form", true, $content);
302 // Problem obtaining payout ID
303 $OUT .= "<FONT class=\"admin_failed medium\">".PAYOUT_OBTAIN_ID_FAILED."</FONT>\n";
306 // Extension is not installed
307 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_PAYOUT_NOT_INSTALLED."</FONT>\n";
311 case "WERNIS_REQUEST": // Wernis requests
312 if (EXT_IS_ACTIVE("wernis")) {
313 // Extension is installed so let him send a notification to the user
314 $result_pay = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_wernis WHERE userid=%s AND wernis_timestamp=%s LIMIT 1",
315 array(bigintval($uid), bigintval($created)), __FILE__, __LINE__);
316 list($pid) = SQL_FETCHROW($result_pay);
317 SQL_FREERESULT($result_pay);
319 if ((!empty($pid)) && ($pid > 0)) {
320 // Payout ID can be obtained
325 $OUT .= LOAD_TEMPLATE("admin_wernis_overview_form", true, $content);
327 // Problem obtaining wernis ID
328 $OUT .= "<FONT class=\"admin_failed medium\">".WERNIS_OBTAIN_ID_FAILED."</FONT>\n";
331 // Extension is not installed
332 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_WERNIS_NOT_INSTALLED."</FONT>\n";
336 case "HOLIDAY_REQUEST": // Holiday requests
337 $OUT .= LOAD_TEMPLATE("admin_task_holiday", true, $uid);
340 case "NL_UNSUBSCRIBE": // Newsletter unsubscriptions
341 $result = SQL_QUERY_ESC("SELECT nl_timespan FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
342 array(bigintval($uid)), __FILE__, __LINE__);
343 list($span) = SQL_FETCHROW($result);
344 SQL_FREERESULT($result);
347 // Undone unscubscribe request
352 $OUT .= LOAD_TEMPLATE("admin_newsletter_tsk", true, $content);
354 // Already unsubscribed
355 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_NL_UNSUBSCRIBE_ALREADY."</FONT>\n";
359 default: // Unknown task type
360 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", $type));
361 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_UNKNOWN_TASK_TYPE_1.$type.ADMIN_UNKNOWN_TASK_TYPE_2.$id.ADMIN_UNKNOWN_TASK_TYPE_3."</FONT>\n";
365 <TD width=\"1%\" class=\"switch_sw".$SW." bottom2 right2\"> </TD>
370 define('__TASK_ROWS', $OUT);
372 // Load final template
373 LOAD_TEMPLATE("admin_overview_list");
375 if ((isset($_POST['task'])) && ((sizeof($_POST['task']) > 0) || ($_POST['task'][0] == "1"))) {
376 // Only unassign / delete tasks when there are selected tasks posted
377 if (!empty($_POST['unassign'])) {
378 // Unassign from tasks
379 foreach ($_POST['task'] as $id => $sel) {
380 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin=0 WHERE id=%s AND assigned_admin=%s LIMIT 1",
381 array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
383 } elseif (isset($_POST['del'])) {
385 foreach ($_POST['task'] as $id => $sel) {
386 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND assigned_admin IN (%s,0) LIMIT 1",
387 array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
392 $result_tasks = SQL_QUERY_ESC("SELECT id, assigned_admin, userid, task_type, subject, text, task_created FROM "._MYSQL_PREFIX."_task_system WHERE assigned_admin=%s OR (assigned_admin=0 AND status='NEW') ORDER BY task_created DESC",
393 array(GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
396 // There are uncompleted jobs!
397 LOAD_TEMPLATE("admin_overview_header");
399 while (list($id, $admin, $uid, $type, $subj, $text, $created) = SQL_FETCHROW($result_tasks)) {
402 // No admin currently is assigned
403 $admin = "<FONT class=\"admin_note\">".ADMIN_NO_ADMIN_ASSIGNED."</FONT>";
406 $login = GET_ADMIN_LOGIN($admin);
407 if ($login != "***") {
409 $admin = "<A href=\"".URL."/modules.php?module=admin&what=admins_contct&admin=".$admin."\">".$login."</A>";
412 $admin = "<FONT class=\"admin_note\">".ADMIN_ID_404_1.$admin.ADMIN_ID_404_2."</FONT>";
417 $type_out = constant('ADMIN_TASK_IS_'.strtoupper($type).'');
419 $type2 = substr($text, 0, strpos($text, ":"));
424 case "EXTENSION_UPDATE":
425 $infos = substr($subj, 1, strpos($subj, ":") - 1);
430 // Member found otherwise it's a system task
431 $uid = ADMIN_USER_PROFILE_LINK($uid);
433 $uid = "<I>".ADMIN_IS_SYSTEM_TASK."</I>";
444 'created' => MAKE_DATETIME($created, "2")
447 // Do we have extension task?
448 if (($type == "EXTENSION") && (GET_EXT_VERSION($infos) == "")) {
449 // Load extension row template
450 LOAD_TEMPLATE("admin_overview_list_ext_rows", false, $content);
452 // Load default row template
453 LOAD_TEMPLATE("admin_overview_list_rows", false, $content);
460 SQL_FREERESULT($result_tasks);
462 // Load footer template
463 LOAD_TEMPLATE("admin_overview_footer");