Fixes for switch task->sel
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // @TODO This function does also check for uncompleted tasks
45 function outputStandardOverview (&$result_tasks) {
46         // First check for solved and not assigned tasks and assign them to current admin
47         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=%s WHERE assigned_admin < 1 AND status != 'NEW'",
48                 array(getCurrentAdminId()), __FILE__, __LINE__);
49
50         // We currently don't want to install an extension so let's find out if we need...
51         setExtensionMode('test');
52         $jobsDone = true;
53
54         // Open the extension directory
55         $extensionList = getArrayFromDirectory('inc/extensions/', 'ext-', false, false);
56         foreach ($extensionList as $file) {
57                 // Only file name is required... :(
58                 $file = basename($file);
59
60                 // Is this file an extension?
61                 if ((substr($file, 0, 4) == 'ext-') && (substr($file, -4) == '.php')) {
62                         // Possible newly installed extension found so we extract extension's name
63                         $ext_name = strtolower(substr($file, 4, -4)); // Keep always extension names on lower case!!!
64
65                         // Init variables
66                         $result = false;
67
68                         // Check if extension is installed or not
69                         $extInstalled = (isExtensionInstalled($ext_name) && (isExtensionActive($ext_name)));
70
71                         // Is the extension not yet installed?
72                         if ($extInstalled === false) {
73                                 // Generate subject line
74                                 $ext_subj = sprintf("[%s:]", $ext_name);
75
76                                 // We maybe want to install an extension so let's test-drive it...
77                                 if (loadExtension($ext_name, getExtensionMode(), '', true)) {
78                                         // Create a task for newly installed extension
79                                         createNewExtensionTask(getCurrentAdminId(), $ext_subj, $ext_name);
80                                 } // END - if
81                         } else {
82                                 // Test-drive extension in update mode
83                                 loadExtension($ext_name, 'test');
84
85                                 // Get extension version
86                                 $ext_ver = getExtensionVersion($ext_name);
87                                 //* DEBUG: */ outputHtml($ext_name."=".$ext_ver."<br />");
88
89                                 // Update extension if extension is installed and outdated
90                                 //* DEBUG: */ outputHtml('ext=' . $ext_name . ',ver=' . getThisExtensionVersion() . '/' . getExtensionVersion($ext_name)."<br />");
91                                 if (getThisExtensionVersion() > $ext_ver) {
92                                         // Update the extension
93                                         updateExtension($ext_name, $ext_ver);
94                                 } // END - if
95
96                                 if (isset($GLOBALS['cache_array']['active_extensions'][$ext_name])) {
97                                         // Maybe we want to keept the current extension active?
98                                         if (($GLOBALS['cache_array']['active_extensions'][$ext_name] == 'Y') && (!isExtensionActive($ext_name))) {
99                                                 // Reactivate this extension!
100                                                 doActivateExtension($ext_name);
101                                         } // END - if
102                                 } // END - if
103                         }
104                 } // END - if
105         } // END - foreach
106
107         // At last - but not least - check for own and new unassigned tasks...
108         $result_tasks = SQL_QUERY_ESC("SELECT
109         `id`, `assigned_admin`, `userid`, `task_type`, `subject`, `text`, `task_created`
110 FROM
111         `{?_MYSQL_PREFIX?}_task_system`
112 WHERE
113         `assigned_admin`=%s OR (`assigned_admin`=0 AND `status`='NEW')
114 ORDER BY
115         `userid` DESC,
116         `task_type` DESC,
117         `subject` ASC,
118         `task_created` DESC",
119                 array(getCurrentAdminId()), __FILE__, __LINE__);
120
121         if (SQL_NUMROWS($result_tasks) > 0) {
122                 // New jobs found!
123                 $jobsDone = false;
124         } // END - if
125
126         // Free the result
127         SQL_FREERESULT($result);
128
129         // Return status
130         return $jobsDone;
131 }
132
133 // Outputs selected tasks
134 function outputSeletectedTasks ($postData, $result_tasks) {
135         if ((isset($postData['assign'])) && (count($postData['sel']) > 0)) {
136                 // Assign / do tasks
137                 $OUT = ''; $SW = 2;
138                 foreach ($postData['sel'] as $id => $sel) {
139                         $result_task = SQL_QUERY_ESC("SELECT
140         `id`, `userid`, `task_type`, `subject`, `text`, `task_created`, `status`, `assigned_admin`
141 FROM
142         `{?_MYSQL_PREFIX?}_task_system`
143 WHERE
144         `id`=%s AND (`assigned_admin`=%s OR (`assigned_admin`=0 AND `status`='NEW'))
145 LIMIT 1",
146                                 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
147
148                         // Task is found?
149                         if (SQL_NUMROWS($result_task) == 1) {
150                                 // Task is valid...
151                                 list($tid, $userid, $type, $subj, $text, $created, $status, $adminId) = SQL_FETCHROW($result_task);
152
153                                 if ($adminId == '0') {
154                                         // Assgin current admin to unassgigned task
155                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=%s WHERE `id`=%s LIMIT 1",
156                                         array(getCurrentAdminId(), bigintval($tid)), __FILE__, __LINE__);
157                                 } // END - if
158
159                                 $add = '';
160                                 // @TODO Rewrite this to a filter
161                                 if ($type == 'SUPPORT_MEMBER') {
162                                         $mode = substr($text, 0, strpos($text, ':'));
163                                         $text = substr($text, strpos($text, ':') + 1);
164                                         $add = "<li>{--ADMIN_TASK_SUPPORT_MODE--}: <strong>".$mode."</strong></li>";
165                                 } // END - if
166
167                                 // Is a userid assign?
168                                 if ($userid > 0) {
169                                         // Then load his data!
170                                         if (fetchUserData($userid)) {
171                                                 // Fetch row
172                                                 $content = getUserDataArray();
173
174                                                 // Generate HTML list entry
175                                                 $add = "<li>{--ADMIN_MEMBER_UID--}: <strong>".generateUserProfileLink($userid, 'user_data')." (<a href=\"".generateEmailLink($content['email'], 'user_data')."\">".translateGender($content['gender'])." ".$content['surname']." ".$content['family']."</a>)</strong></li>";
176                                         } else {
177                                                 // Invalid userid, so log and zero it
178                                                 logDebugMessage(__FUNCTION__, __LINE__, 'Invalid userid=' . $userid . ' -> not found!');
179                                                 $userid = '0';
180                                         }
181                                 } // END - if
182
183                                 // Decode entities of the text
184                                 $text = decodeEntities($text);
185
186                                 // Compile and insert text from task into table template
187                                 $text = loadTemplate('admin_extensions_text', true, $text);
188
189                                 // Initialize variables (no title for SQL commands by default)
190                                 $ext_name = ''; $ext_ver = '';
191                                 $title = getMessage('TASK_NO_TITLE');
192
193                                 // Shall I list SQL commands assigned to an extension installation or update task?
194                                 if ((getConfig('verbose_sql') == 'Y')) {
195                                         // Extract extension name from subject
196                                         $ext_name = substr($subj, 1, strpos($subj, ':') - 1);
197
198                                         // Update task or extension task?
199                                         if (($type == 'EXTENSION') && (!isExtensionInstalled($ext_name))) {
200                                                 // Load SQL commands for registering in dry-run
201                                                 registerExtension($ext_name, $id, true);
202
203                                                 // Is this non-productive?
204                                                 if (isExtensionProductive() === false) {
205                                                         // Issue warning
206                                                         $text .= loadTemplate('admin_settings_saved', true, sprintf(getMessage('ADMIN_EXTENSION_IS_NON_PRODUCTIVE'), $ext_name));
207                                                 } // END - if
208
209                                                 // Set current extension name
210                                                 setCurrentExtensionName($ext_name);
211
212                                                 // Add notes to text
213                                                 $text .= getExtensionNotes();
214
215                                                 // Set title
216                                                 $title = getMessage('ADMIN_SQLS_EXECUTED_ON_REGISTER');
217                                         } elseif ($type == 'EXTENSION_UPDATE') {
218                                                 // Prepare extension name and version
219                                                 $ext_name = substr($ext_name, 7);
220                                                 $ext_name = substr($ext_name, 0, strpos($ext_name, '-'));
221                                                 $test = '[UPDATE-' . $ext_name . '-';
222                                                 $ext_ver = substr($subj, strlen($test));
223                                                 $ext_ver = substr($ext_ver, 0, strpos($ext_ver, ':'));
224
225                                                 // Load SQLs from file
226                                                 updateExtension($ext_name, $ext_ver, true);
227
228                                                 // Set current extension name
229                                                 setCurrentExtensionName($ext_name);
230
231                                                 // Add notes to text
232                                                 $text .= getExtensionNotes();
233
234                                                 // Set title
235                                                 $title = getMessage('ADMIN_SQLS_EXECUTED_ON_UPDATE');
236                                         } else {
237                                                 // Remove extension's name
238                                                 $ext_name = '';
239                                         }
240
241                                         // Add SQLs to a table
242                                         if ((!empty($ext_name)) && (getExtensionVersion('sql_patches')) && (getConfig('verbose_sql') == 'Y')) {
243                                                 // Add verbose SQL table
244                                                 $text .= addExtensionVerboseSqlTable($title, " class=\"admin_table top2 left2 right2\"", true, '100%') . "<br />\n";
245                                         } // END - if
246                                 } elseif ((!empty($ext_name)) && (!empty($ext_ver))) {
247                                         // Run SQL commands in dry mode but only return the notes
248                                         updateExtension($ext_name, $ext_ver, true);
249
250                                         // Set current extension name
251                                         setCurrentExtensionName($ext_name);
252
253                                         // Get notes
254                                         $text .= getExtensionNotes();
255                                 } else {
256                                         // This should not normally happen!
257                                         debug_report_bug('ext_name(' . $ext_name . ') or ext_ver(' . $ext_ver . ') is empty! sql_patches=' . getExtensionVersion('sql_patches') . '/verbose_sql=' . getConfig('verbose_sql'));
258                                 }
259
260                                 // Prepare array for the template
261                                 $content = array(
262                                         'sw'        => $SW,
263                                         'subject'   => $subj,
264                                         'add'       => $add,
265                                         'text'      => $text,
266                                         'created'   => generateDateTime($created, 1),
267                                         'extension' => $ext_name
268                                 );
269
270                                 // Load template
271                                 $OUT .= loadTemplate('admin_overview_row', true, $content);
272
273                                 // Which task do we actually have here?
274                                 // @TODO Rewrite this to something with include files
275                                 switch ($type) {
276                                         case 'EXTENSION': // Install new extensions
277                                                 $ext_name = substr($subj, 1, strpos($subj, ':') - 1);
278                                                 $result_lines = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `ext_name`='%s' LIMIT 1",
279                                                         array($ext_name), __FILE__, __LINE__);
280                                                 $lines = SQL_NUMROWS($result_lines);
281                                                 SQL_FREERESULT($result_lines);
282                                                 if ($lines == '0') {
283                                                         // New extension found
284                                                         $OUT .= loadTemplate('admin_ext_reg_form', true, array(
285                                                                 'id'       => bigintval($id),
286                                                                 'ext_name' => $ext_name
287                                                         ));
288                                                 } else {
289                                                         // Task is closed so nothing is todo
290                                                         $OUT .= "<div class=\"admin_failed\">{--ADMIN_EXT_ALREADY_REGISTERED--}</div>\n";
291
292                                                         // Close task but not already closes or deleted or update tasks
293                                                         if ((!in_array($status, array('CLOSED','DELETED','SOLVED'))) && ($type != 'EXTENSION_UPDATE')) {
294                                                                 // Solve the task
295                                                                 runFilterChain('solve_task', $tid);
296                                                         } // END - if
297                                                 }
298                                                 break;
299
300                                         case 'EXTENSION_UPDATE': // Extension update
301                                                 // Extension updates are installed automatically
302                                                 $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_EXTENSION_UPDATED--}</div>\n";
303
304                                                 // Close task
305                                                 if (($status != 'CLOSED') && ($status != 'DELETED')) {
306                                                         // Solve the task
307                                                         runFilterChain('solve_task', $tid);
308                                                 } // END - if
309                                                 break;
310
311                                         case 'SUPPORT_MEMBER': // Assign on member's support request
312                                                 // @TODO This may also be rewritten to include files
313                                                 switch ($mode) {
314                                                         default: // @TODO Unknown support mode
315                                                         logDebugMessage(__FILE__, __LINE__, sprintf("Unknown support mode %s detected. This part is under construction!", $mode));
316                                                         $OUT .= "<div class=\"admin_failed medium\">".sprintf(getMessage('ADMIN_UNKNOWN_SUPPORT_MODE'), $mode)."</div>\n";
317                                                         break;
318                                                 }
319                                                 break;
320
321                                         case 'PAYOUT_REQUEST': // Payout requests
322                                                 if (isExtensionActive('payout')) {
323                                                         // Extension is installed so let him send a notification to the user
324                                                         $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `userid`=%s AND payout_timestamp=%s LIMIT 1",
325                                                                 array(bigintval($userid), bigintval($created)), __FILE__, __LINE__);
326                                                         list($pid) = SQL_FETCHROW($result_pay);
327                                                         SQL_FREERESULT($result_pay);
328
329                                                         if ((!empty($pid)) && ($pid > 0)) {
330                                                                 // Payout id can be obtained
331                                                                 $content = array(
332                                                                         'pid' => $pid,
333                                                                         'tid' => $tid,
334                                                                 );
335                                                                 $OUT .= loadTemplate('admin_payout_overview_form', true, $content);
336                                                         } else {
337                                                                 // Problem obtaining payout id
338                                                                 $OUT .= "<div class=\"admin_failed medium\">{--PAYOUT_OBTAIN_ID_FAILED--}</div>\n";
339                                                         }
340                                                 } else {
341                                                         // Extension is not installed
342                                                         $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_PAYOUT_NOT_INSTALLED--}</div>\n";
343                                                 }
344                                                 break;
345
346                                         case 'WERNIS_REQUEST': // Wernis requests
347                                                 if (isExtensionActive('wernis')) {
348                                                         // Extension is installed so let him send a notification to the user
349                                                         $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s AND wernis_timestamp=%s LIMIT 1",
350                                                         array(bigintval($userid), bigintval($created)), __FILE__, __LINE__);
351                                                         list($pid) = SQL_FETCHROW($result_pay);
352                                                         SQL_FREERESULT($result_pay);
353
354                                                         if ((!empty($pid)) && ($pid > 0)) {
355                                                                 // Payout id can be obtained
356                                                                 $content = array(
357                                                                         'pid' => $pid,
358                                                                         'tid' => $tid,
359                                                                 );
360                                                                 $OUT .= loadTemplate('admin_wernis_overview_form', true, $content);
361                                                         } else {
362                                                                 // Problem obtaining wernis id
363                                                                 $OUT .= "<div class=\"admin_failed medium\">{--WERNIS_OBTAIN_ID_FAILED--}</div>\n";
364                                                         }
365                                                 } else {
366                                                         // Extension is not installed
367                                                         $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_WERNIS_NOT_INSTALLED--}</div>\n";
368                                                 }
369                                                 break;
370
371                                         case 'HOLIDAY_REQUEST': // Holiday requests
372                                                 $OUT .= loadTemplate('admin_task_holiday', true, $userid);
373                                                 break;
374
375                                         case 'MEMBER_ORDER': // Member mail orders
376                                                 $OUT .= loadTemplate('admin_task_order', true, $id);
377                                                 break;
378
379                                         default: // Unknown task type
380                                                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", $type));
381                                                 $OUT .= "<div class=\"admin_failed medium\">".sprintf(getMessage('ADMIN_UNKNOWN_TASK_TYPE'), $type, $id)."</div>\n";
382                                                 break;
383                                 }
384                                 $OUT .= "  </td>
385   <td width=\"1%\" class=\"switch_sw".$SW." bottom2 right2\">&nbsp;</td>
386 </tr>\n";
387                         } // END - if
388
389                         // Free result
390                         SQL_FREERESULT($result_task);
391
392                         // Switch colors
393                         $SW = 3 - $SW;
394                 } // END - foreach
395
396                 // Load final template
397                 loadTemplate('admin_overview_list', false, $OUT);
398         } else {
399                 if ((isset($postData['sel'])) && ((count($postData['sel']) > 0) || ($postData['sel'][0] == 1))) {
400                         // Only unassign / delete tasks when there are selected tasks posted
401                         if (!empty($postData['unassign'])) {
402                                 // Unassign from tasks
403                                 foreach ($postData['sel'] as $id => $sel) {
404                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=0 WHERE `id`=%s AND `assigned_admin`=%s LIMIT 1",
405                                                 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
406                                 }
407                         } elseif (isset($postData['del'])) {
408                                 // Delete tasks
409                                 foreach ($postData['sel'] as $id => $sel) {
410                                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s AND assigned_admin IN (%s,0) LIMIT 1",
411                                                 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
412                                 }
413                         } else {
414                                 // Unknown action
415                                 debug_report_bug(sprintf("Unknown task action performed. data=<pre>%s</pre>", print_r($postData, true)));
416                         }
417
418                         // Update query
419                         $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",
420                                 array(getCurrentAdminId()), __FILE__, __LINE__);
421                 } // END - if
422
423                 // There are uncompleted jobs!
424                 $OUT = ''; $SW = 2;
425                 while ($content = SQL_FETCHARRAY($result_tasks)) {
426                         // Init infos
427                         $content['infos'] = '---';
428
429                         // Generate assign link
430                         $content['assigned_admin'] = generateAdminLink($content['assigned_admin']);
431
432                         // Generate infos
433                         // @TODO Try to move this in includes
434                         switch ($content['task_type']) {
435                                 case 'EXTENSION':
436                                 case 'EXTENSION_UPDATE':
437                                         $content['infos'] = substr($content['subject'], 1, strpos($content['subject'], ':') - 1);
438                                         break;
439                         }
440
441                         // Get task type
442                         $content['task_type_msg'] = getMessage('ADMIN_TASK_IS_'.strtoupper($content['task_type']).'');
443
444                         if ($content['userid'] > 0) {
445                                 // Member found otherwise it's a system task
446                                 $content['userid'] = generateUserProfileLink($content['userid']);
447                         } else {
448                                 $content['userid'] = "<em>{--ADMIN_IS_SYSTEM_TASK--}</em>";
449                         }
450
451                         // Prepare content
452                         $content = merge_array($content, array(
453                                 'sw'             => $SW,
454                                 'assigned_admin' => $content['assigned_admin'],
455                                 'userid'         => $content['userid'],
456                                 'task_type_msg'  => $content['task_type_msg'],
457                                 'created'        => generateDateTime($content['task_created'], 2)
458                         ));
459
460                         // Do we have extension task?
461                         if (($content['task_type'] == 'EXTENSION') && (isExtensionNameValid($content['infos'])) && (!isExtensionInstalled($content['infos']))) {
462                                 // Load extension row template
463                                 $OUT .= loadTemplate('admin_overview_list_ext_rows', true, $content);
464                         } else {
465                                 // Load default row template
466                                 $OUT .= loadTemplate('admin_overview_list_rows', true, $content);
467                         }
468
469                         // Switch color
470                         $SW = 3 - $SW;
471                 } // END - while
472
473                 // Free memory
474                 SQL_FREERESULT($result_tasks);
475
476                 // Load footer template
477                 loadTemplate('admin_overview_table', false, $OUT);
478         }
479 }
480
481 // [EOF]
482 ?>