Fixes for a lot bug tickets. (Sorry for lame comment)
[mailer.git] / inc / modules / admin / overview-inc.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 07/13/2004 *
4  * ===============                              Last change: 08/02/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : overview-inc.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Output standard task management                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Standart-Aufgaben-Management ausgeben            *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
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.                                  *
22  *                                                                      *
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.                         *
27  *                                                                      *
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,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 function OUTPUT_STANDARD_OVERVIEW(&$result_tasks) {
41         global $cacheArray, $_CONFIG;
42
43         // First check for solved and not assigned tasks and assign them to current admin
44         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin='%s' WHERE assigned_admin < 1 AND status != 'NEW'",
45                 array(GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
46
47         // We currently don't want to install an extension so let's find out if we need...
48         $EXT_LOAD_MODE = "register";
49         $JOBS_DONE = true;
50
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_name = strtolower(substr($file, 4, -4)); // Keep always extension names on lower case!!!
59
60                         // Init variables
61                         $result = false;
62
63                         // Check if extension is installed or not
64                         $ext_ver = GET_EXT_VERSION($ext_name);
65
66                         // Is the extension not yet installed?
67                         if (empty($ext_ver)) {
68                                 // Generate subject line
69                                 $ext_subj = sprintf("[%s:]", $ext_name);
70
71                                 // We maybe want to install an extension so let's test-drive it...
72                                 if (LOAD_EXTENSION($ext_name, $EXT_LOAD_MODE)) {
73                                         // Create a task for newly installed extension
74                                         CREATE_NEW_EXTENSION_TASK(GET_CURRENT_ADMIN_ID(), $ext_subj, $ext_name);
75                                 } // END - if
76                         } else {
77                                 // Test-drive extension in update mode
78                                 include(sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name));
79
80                                 // Update extension if extension is installed and outdated
81                                 //* DEBUG: */ print "ext={$ext_name},ver={$EXT_VERSION}/".GET_EXT_VERSION($ext_name)."<br />\n";
82                                 if ($EXT_VERSION > $ext_ver) {
83                                         // Update the extension
84                                         EXTENSION_UPDATE($ext_name, $ext_ver);
85                                 } // END - if
86
87                                 if (isset($cacheArray['active_extensions'][$ext_name])) {
88                                         // Maybe we want to keept the current extension active?
89                                         if (($cacheArray['active_extensions'][$ext_name] == "Y") && (!EXT_IS_ACTIVE($ext_name))) {
90                                                 // Reactivate this extension!
91                                                 ACTIVATE_EXTENSION($ext_name);
92                                         } // END - if
93                                 } // END - if
94                         }
95                 } // END - if
96         } // END - while
97
98         // Close directory handle
99         closedir($handle);
100
101         // At last - but not least - check for own and new unassigned tasks...
102         $result_tasks = SQL_QUERY_ESC("SELECT id, assigned_admin, userid, task_type, subject, text, task_created
103 FROM "._MYSQL_PREFIX."_task_system
104 WHERE assigned_admin='%s' OR (assigned_admin='0' AND status='NEW')
105 ORDER BY userid DESC, task_type DESC, subject, task_created DESC",
106                 array(GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
107
108         if (SQL_NUMROWS($result_tasks) > 0) {
109                 // New jobs found!
110                 $JOBS_DONE = false;
111         } // END - if
112
113         // Free the result
114         SQL_FREERESULT($result);
115
116         // Return status
117         return $JOBS_DONE;
118 }
119
120 // Outputs selected tasks
121 function OUTPUT_SELECTED_TASKS ($POST, $result_tasks) {
122         global $_CONFIG, $NOTES;
123         if ((isset($POST['assign'])) && (count($POST['task']) > 0)) {
124                 // Assign / do tasks
125                 $OUT = ""; $SW = 2;
126                 foreach ($POST['task'] as $id => $sel) {
127                         $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",
128                                 array(bigintval($id), GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
129                         if (SQL_NUMROWS($result_task) == 1) {
130                                 // Task is valid...
131                                 list($tid, $uid, $type, $subj, $text, $created, $status, $aid) = SQL_FETCHROW($result_task);
132                                 SQL_FREERESULT($result_task);
133
134                                 if ($aid == "0") {
135                                         // Assgin current admin to unassgigned task
136                                         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin='%s' WHERE id=%s LIMIT 1",
137                                                 array(GET_CURRENT_ADMIN_ID(), bigintval($tid)), __FILE__, __LINE__);
138                                 } // END - if
139
140                                 $ADD = "";
141                                 if ($type == "SUPPORT_MEMBER") {
142                                         $mode = substr($text, 0, strpos($text, ":"));
143                                         $text = substr($text, strpos($text, ":") + 1);
144                                         $ADD = "<LI>".ADMIN_TASK_SUPPORT_MODE.": <STRONG>".$mode."</STRONG></LI>";
145                                 } // END - if
146
147                                 if ($uid > 0) {
148                                         $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
149                                          array(bigintval($uid)), __FILE__, __LINE__);
150                                         if (SQL_NUMROWS($result_user) == 1) {
151                                                 list($gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
152                                                 SQL_FREERESULT($result_user);
153                                                 $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>";
154                                         } // END - if
155                                 } // END - if
156
157                                 // Decode entities of the text
158                                 $text = html_entity_decode($text);
159
160                                 // Compile and insert text from task into table template
161                                 $text = LOAD_TEMPLATE("admin_extensions_text", true, $text);
162
163                                 // Initialize variables (no title for SQL commands by default)
164                                 $ext_name = "";
165                                 $title = TASK_NO_TITLE;
166
167                                 // Shall I list SQL commands assigned to an extension installation or update task?
168                                 if (((GET_EXT_VERSION("sql_patches") != '') && (getConfig('verbose_sql') == "Y")) || (!EXT_IS_ACTIVE("sql_patches"))) {
169                                         $ext_name = substr($subj, 1, strpos($subj, ":") - 1);
170                                         if ($type == "EXTENSION") {
171                                                 // Load SQL commands for registering
172                                                 $SQLs = EXTENSION_REGISTER($ext_name, $id, true);
173
174                                                 // Add notes to text
175                                                 $text .= $NOTES;
176
177                                                 // Set title
178                                                 $title = ADMIN_SQLS_EXECUTED_ON_REGISTER;
179                                         } elseif ($type == "EXTENSION_UPDATE") {
180                                                 // Prepare extension name and version
181                                                 $ext_name = substr($ext_name, 7);
182                                                 $ext_name = substr($ext_name, 0, strpos($ext_name, "-"));
183                                                 $test = "[UPDATE-".$ext_name."-";
184                                                 $ext_ver = substr($subj, strlen($test));
185                                                 $ext_ver = substr($ext_ver, 0, strpos($ext_ver, ":"));
186
187                                                 // Load SQLs from file
188                                                 $SQLs = EXTENSION_UPDATE($ext_name, $ext_ver, true);
189
190                                                 // Add notes to text
191                                                 $text .= $NOTES;
192
193                                                 // Set title
194                                                 $title = ADMIN_SQLS_EXECUTED_ON_UPDATE;
195                                         } else {
196                                                 // Remove extension's name
197                                                 $ext_name = "";
198                                         }
199
200                                         // Add SQLs to a table
201                                         if (empty($SQLs)) $SQLs = array();
202                                         if (empty($title)) $title = "";
203                                         if ((!empty($ext_name)) && (GET_EXT_VERSION("sql_patches")) && (getConfig('verbose_sql') == "Y")) {
204                                                 // Add verbose SQL table
205                                                 $text .= EXTENSION_VERBOSE_TABLE($SQLs, $title, " class=\"admin_table top2 left2 right2\"", true, "100%")."<br />\n";
206                                         } // END - if
207                                 } else {
208                                         // Run SQL commands in dry mode but only return the notes
209                                         $SQLs = EXTENSION_UPDATE($ext_name, $ext_ver, true);
210                                         $text .= $NOTES;
211                                 }
212
213                                 // Prepare array for the template
214                                 $content = array(
215                                         'sw'        => $SW,
216                                         'subj'      => $subj,
217                                         'add'       => $ADD,
218                                         'text'      => $text,
219                                         'created'   => MAKE_DATETIME($created, "1"),
220                                         'extension' => $ext_name
221                                 );
222
223                                 // Load template
224                                 $OUT .= LOAD_TEMPLATE("admin_overview_row", true, $content);
225
226                                 // Which task do we actually have here?
227                                 switch ($type)
228                                 {
229                                 case "EXTENSION": // Install new extensions
230                                         $ext_name = substr($subj, 1, strpos($subj, ":") - 1);
231                                         $result_lines = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
232                                          array($ext_name), __FILE__, __LINE__);
233                                         $lines = SQL_NUMROWS($result_lines);
234                                         SQL_FREERESULT($result_lines);
235                                         if ($lines == "0") {
236                                                 // New extension found
237                                                 $OUT .= LOAD_TEMPLATE("admin_ext_reg_form", true, array(
238                                                         'id'       => bigintval($id),
239                                                         'ext_name' => $ext_name
240                                                 ));
241                                         } else {
242                                                 // Task is closed so nothing is todo
243                                                 $OUT .= "<FONT class=\"admin_failed\">".ADMIN_EXT_ALREADY_REGISTERED."</FONT>\n";
244
245                                                 // Close task but not already closes or deleted or update tasks
246                                                 if (($status != "CLOSED") && ($status != "DELETED") && ($type != "EXTENSION_UPDATE")) {
247                                                         // Solve the task
248                                                         RUN_FILTER('solve_task', $tid);
249                                                 } // END - if
250                                         }
251                                         break;
252
253                                 case "EXTENSION_UPDATE": // Extension update
254                                         // Extension updates are installed automatically
255                                         $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_EXTENSION_UPDATED."</FONT>\n";
256
257                                         // Close task
258                                         if (($status != "CLOSED") && ($status != "DELETED")) {
259                                                 // Solve the task
260                                                 RUN_FILTER('solve_task', $tid);
261                                         } // END - if
262                                         break;
263
264                                 case "SUPPORT_MEMBER": // Assign on member's support request
265                                         switch ($mode)
266                                         {
267                                         default: // Unknown support mode
268                                                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown support mode %s detected. This part is under construction!", $mode));
269                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_UNKNOWN_SUPPORT_MODE_1.$mode.ADMIN_UNKNOWN_SUPPORT_MODE_2."</FONT>\n";
270                                                 break;
271                                         }
272                                         break;
273
274                                 case "PAYOUT_REQUEST": // Payout requests
275                                         if (EXT_IS_ACTIVE("payout")) {
276                                                 // Extension is installed so let him send a notification to the user
277                                                 $result_pay = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_payouts WHERE userid=%s AND payout_timestamp=%s LIMIT 1",
278                                                         array(bigintval($uid), bigintval($created)), __FILE__, __LINE__);
279                                                 list($pid) = SQL_FETCHROW($result_pay);
280                                                 SQL_FREERESULT($result_pay);
281
282                                                 if ((!empty($pid)) && ($pid > 0)) {
283                                                         // Payout ID can be obtained
284                                                         $content = array(
285                                                                 'pid' => $pid,
286                                                                 'tid' => $tid,
287                                                         );
288                                                         $OUT .= LOAD_TEMPLATE("admin_payout_overview_form", true, $content);
289                                                 } else {
290                                                         // Problem obtaining payout ID
291                                                         $OUT .= "<FONT class=\"admin_failed medium\">".PAYOUT_OBTAIN_ID_FAILED."</FONT>\n";
292                                                 }
293                                         } else {
294                                                 // Extension is not installed
295                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_PAYOUT_NOT_INSTALLED."</FONT>\n";
296                                         }
297                                         break;
298
299                                 case "WERNIS_REQUEST": // Wernis requests
300                                         if (EXT_IS_ACTIVE("wernis")) {
301                                                 // Extension is installed so let him send a notification to the user
302                                                 $result_pay = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_wernis WHERE userid=%s AND wernis_timestamp=%s LIMIT 1",
303                                                         array(bigintval($uid), bigintval($created)), __FILE__, __LINE__);
304                                                 list($pid) = SQL_FETCHROW($result_pay);
305                                                 SQL_FREERESULT($result_pay);
306
307                                                 if ((!empty($pid)) && ($pid > 0)) {
308                                                         // Payout ID can be obtained
309                                                         $content = array(
310                                                                 'pid' => $pid,
311                                                                 'tid' => $tid,
312                                                         );
313                                                         $OUT .= LOAD_TEMPLATE("admin_wernis_overview_form", true, $content);
314                                                 } else {
315                                                         // Problem obtaining wernis ID
316                                                         $OUT .= "<FONT class=\"admin_failed medium\">".WERNIS_OBTAIN_ID_FAILED."</FONT>\n";
317                                                 }
318                                         } else {
319                                                 // Extension is not installed
320                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_WERNIS_NOT_INSTALLED."</FONT>\n";
321                                         }
322                                         break;
323
324                                 case "HOLIDAY_REQUEST": // Holiday requests
325                                         $OUT .= LOAD_TEMPLATE("admin_task_holiday", true, $uid);
326                                         break;
327
328                                 case "NL_UNSUBSCRIBE": // Newsletter unsubscriptions
329                                         $result = SQL_QUERY_ESC("SELECT nl_timespan FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
330                                                 array(bigintval($uid)), __FILE__, __LINE__);
331                                         list($span) = SQL_FETCHROW($result);
332                                         SQL_FREERESULT($result);
333
334                                         if ($span > 0) {
335                                                 // Undone unscubscribe request
336                                                 $content = array(
337                                                         'uid' => $uid,
338                                                         'id'  => $tid
339                                                 );
340                                                 $OUT .= LOAD_TEMPLATE("admin_newsletter_tsk", true, $content);
341                                         } else {
342                                                 // Already unsubscribed
343                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_NL_UNSUBSCRIBE_ALREADY."</FONT>\n";
344                                         }
345                                         break;
346
347                                 default: // Unknown task type
348                                         DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", $type));
349                                         $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";
350                                         break;
351                                 }
352                                 $OUT .= "  </TD>
353   <TD width=\"1%\" class=\"switch_sw".$SW." bottom2 right2\">&nbsp;</TD>
354 </TR>\n";
355                         } // END - if
356                         $SW = 3 - $SW;
357                 } // END - foreach
358                 define('__TASK_ROWS', $OUT);
359
360                 // Load final template
361                 LOAD_TEMPLATE("admin_overview_list");
362         } else {
363                 if ((isset($POST['task'])) && ((sizeof($POST['task']) > 0) || ($POST['task'][0] == "1"))) {
364                         // Only unassign / delete tasks when there are selected tasks posted
365                         if (!empty($POST['unassign'])) {
366                                 // Unassign from tasks
367                                 foreach ($POST['task'] as $id => $sel) {
368                                         SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin=0 WHERE id=%s AND assigned_admin=%s LIMIT 1",
369                                                 array(bigintval($id), GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
370                                 }
371                         } elseif (isset($POST['del'])) {
372                                 // Delete tasks
373                                 foreach ($POST['task'] as $id => $sel) {
374                                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND assigned_admin IN (%s,0) LIMIT 1",
375                                                 array(bigintval($id), GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
376                                 }
377                         }
378
379                         // Update query
380                         $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",
381                          array(GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
382                 } // END - if
383
384                 // There are uncompleted jobs!
385                 LOAD_TEMPLATE("admin_overview_header");
386                 $SW = 2;
387                 while (list($id, $admin, $uid, $type, $subj, $text, $created) = SQL_FETCHROW($result_tasks)) {
388                         $infos = "---";
389                         if ($admin == "0") {
390                                 // No admin currently is assigned
391                                 $admin = "<FONT class=\"admin_note\">".ADMIN_NO_ADMIN_ASSIGNED."</FONT>";
392                         } else {
393                                 // Load admin's data
394                                 $login = GET_ADMIN_LOGIN($admin);
395                                 if ($login != "***") {
396                                         // Admin found
397                                         $admin = "<A href=\"".URL."/modules.php?module=admin&amp;what=admins_contct&amp;admin=".$admin."\">".$login."</A>";
398                                 } else {
399                                         // Maybe deleted?
400                                         $admin = "<FONT class=\"admin_note\">".ADMIN_ID_404_1.$admin.ADMIN_ID_404_2."</FONT>";
401                                 }
402                         }
403
404                         // Get task type
405                         $type_out = constant('ADMIN_TASK_IS_'.strtoupper($type).'');
406
407                         $type2 = substr($text, 0, strpos($text, ":"));
408                         // Generate infos
409                         switch ($type)
410                         {
411                         case "EXTENSION":
412                         case "EXTENSION_UPDATE":
413                                 $infos = substr($subj, 1, strpos($subj, ":") - 1);
414                                 break;
415                         }
416
417                         if ($uid > 0) {
418                                 // Member found otherwise it's a system task
419                                 $uid = ADMIN_USER_PROFILE_LINK($uid);
420                         } else {
421                                 $uid = "<I>".ADMIN_IS_SYSTEM_TASK."</I>";
422                         }
423
424                         // Prepare content
425                         $content = array(
426                                 'sw'      => $SW,
427                                 'id'      => $id,
428                                 'admin'   => $admin,
429                                 'infos'   => $infos,
430                                 'uid'     => $uid,
431                                 'type'    => $type_out,
432                                 'created' => MAKE_DATETIME($created, "2")
433                         );
434
435                         // Do we have extension task?
436                         if (($type == "EXTENSION") && (GET_EXT_VERSION($infos) == "")) {
437                                 // Load extension row template
438                                 LOAD_TEMPLATE("admin_overview_list_ext_rows", false, $content);
439                         } else {
440                                 // Load default row template
441                                 LOAD_TEMPLATE("admin_overview_list_rows", false, $content);
442                         }
443
444                         // Switch color
445                         $SW = 3 - $SW;
446                 }
447                 // Free memory
448                 SQL_FREERESULT($result_tasks);
449
450                 // Load footer template
451                 LOAD_TEMPLATE("admin_overview_footer");
452         }
453 }
454 //
455 ?>