A lot texts rewritten and exclamation signs removed
[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['task']) > 0)) {
136                 // Assign / do tasks
137                 $OUT = ''; $SW = 2;
138                 foreach ($postData['task'] 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                                         // @TODO Can this SQL be encapsulated in a function, so all similar queries can be rewritten?
171                                         $result_user = SQL_QUERY_ESC("SELECT `gender`, `surname`, `family`, `email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
172                                                 array(bigintval($userid)), __FILE__, __LINE__);
173
174                                         // Entry found?
175                                         if (SQL_NUMROWS($result_user) == 1) {
176                                                 // Fetch row
177                                                 $content = SQL_FETCHARRAY($result_user);
178                                                 // Generate HTML list entry
179                                                 $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>";
180                                         } else {
181                                                 // Invalid userid, so log and zero it
182                                                 logDebugMessage(__FUNCTION__, __LINE__, 'Invalid userid=' . $userid . ' -> not found!');
183                                                 $userid = 0;
184                                         }
185
186                                         // Free result
187                                         SQL_FREERESULT($result_user);
188                                 } // END - if
189
190                                 // Decode entities of the text
191                                 $text = decodeEntities($text);
192
193                                 // Compile and insert text from task into table template
194                                 $text = loadTemplate('admin_extensions_text', true, $text);
195
196                                 // Initialize variables (no title for SQL commands by default)
197                                 $ext_name = ''; $ext_ver = '';
198                                 $title = getMessage('TASK_NO_TITLE');
199
200                                 // Shall I list SQL commands assigned to an extension installation or update task?
201                                 if ((getConfig('verbose_sql') == 'Y')) {
202                                         // Extract extension name from subject
203                                         $ext_name = substr($subj, 1, strpos($subj, ':') - 1);
204
205                                         // Update task or extension task?
206                                         if (($type == 'EXTENSION') && (!isExtensionInstalled($ext_name))) {
207                                                 // Load SQL commands for registering in dry-run
208                                                 registerExtension($ext_name, $id, true);
209
210                                                 // Is this non-productive?
211                                                 if (isExtensionProductive() === false) {
212                                                         // Issue warning
213                                                         $text .= loadTemplate('admin_settings_saved', true, sprintf(getMessage('ADMIN_EXTENSION_IS_NON_PRODUCTIVE'), $ext_name));
214                                                 } // END - if
215
216                                                 // Set current extension name
217                                                 setCurrentExtensionName($ext_name);
218
219                                                 // Add notes to text
220                                                 $text .= getExtensionNotes();
221
222                                                 // Set title
223                                                 $title = getMessage('ADMIN_SQLS_EXECUTED_ON_REGISTER');
224                                         } elseif ($type == 'EXTENSION_UPDATE') {
225                                                 // Prepare extension name and version
226                                                 $ext_name = substr($ext_name, 7);
227                                                 $ext_name = substr($ext_name, 0, strpos($ext_name, '-'));
228                                                 $test = '[UPDATE-' . $ext_name . '-';
229                                                 $ext_ver = substr($subj, strlen($test));
230                                                 $ext_ver = substr($ext_ver, 0, strpos($ext_ver, ':'));
231
232                                                 // Load SQLs from file
233                                                 updateExtension($ext_name, $ext_ver, true);
234
235                                                 // Set current extension name
236                                                 setCurrentExtensionName($ext_name);
237
238                                                 // Add notes to text
239                                                 $text .= getExtensionNotes();
240
241                                                 // Set title
242                                                 $title = getMessage('ADMIN_SQLS_EXECUTED_ON_UPDATE');
243                                         } else {
244                                                 // Remove extension's name
245                                                 $ext_name = '';
246                                         }
247
248                                         // Add SQLs to a table
249                                         if ((!empty($ext_name)) && (getExtensionVersion('sql_patches')) && (getConfig('verbose_sql') == 'Y')) {
250                                                 // Add verbose SQL table
251                                                 $text .= addExtensionVerboseSqlTable($title, " class=\"admin_table top2 left2 right2\"", true, '100%') . "<br />\n";
252                                         } // END - if
253                                 } elseif ((!empty($ext_name)) && (!empty($ext_ver))) {
254                                         // Run SQL commands in dry mode but only return the notes
255                                         updateExtension($ext_name, $ext_ver, true);
256
257                                         // Set current extension name
258                                         setCurrentExtensionName($ext_name);
259
260                                         // Get notes
261                                         $text .= getExtensionNotes();
262                                 } else {
263                                         // This should not normally happen!
264                                         debug_report_bug('ext_name(' . $ext_name . ') or ext_ver(' . $ext_ver . ') is empty! sql_patches=' . getExtensionVersion('sql_patches') . '/verbose_sql=' . getConfig('verbose_sql'));
265                                 }
266
267                                 // Prepare array for the template
268                                 $content = array(
269                                         'sw'        => $SW,
270                                         'subject'   => $subj,
271                                         'add'       => $add,
272                                         'text'      => $text,
273                                         'created'   => generateDateTime($created, 1),
274                                         'extension' => $ext_name
275                                 );
276
277                                 // Load template
278                                 $OUT .= loadTemplate('admin_overview_row', true, $content);
279
280                                 // Which task do we actually have here?
281                                 // @TODO Rewrite this to something with include files
282                                 switch ($type) {
283                                         case 'EXTENSION': // Install new extensions
284                                                 $ext_name = substr($subj, 1, strpos($subj, ':') - 1);
285                                                 $result_lines = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `ext_name`='%s' LIMIT 1",
286                                                         array($ext_name), __FILE__, __LINE__);
287                                                 $lines = SQL_NUMROWS($result_lines);
288                                                 SQL_FREERESULT($result_lines);
289                                                 if ($lines == 0) {
290                                                         // New extension found
291                                                         $OUT .= loadTemplate('admin_ext_reg_form', true, array(
292                                                                 'id'       => bigintval($id),
293                                                                 'ext_name' => $ext_name
294                                                         ));
295                                                 } else {
296                                                         // Task is closed so nothing is todo
297                                                         $OUT .= "<div class=\"admin_failed\">{--ADMIN_EXT_ALREADY_REGISTERED--}</div>\n";
298
299                                                         // Close task but not already closes or deleted or update tasks
300                                                         if ((!in_array($status, array('CLOSED','DELETED','SOLVED'))) && ($type != 'EXTENSION_UPDATE')) {
301                                                                 // Solve the task
302                                                                 runFilterChain('solve_task', $tid);
303                                                         } // END - if
304                                                 }
305                                                 break;
306
307                                         case 'EXTENSION_UPDATE': // Extension update
308                                                 // Extension updates are installed automatically
309                                                 $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_EXTENSION_UPDATED--}</div>\n";
310
311                                                 // Close task
312                                                 if (($status != 'CLOSED') && ($status != 'DELETED')) {
313                                                         // Solve the task
314                                                         runFilterChain('solve_task', $tid);
315                                                 } // END - if
316                                                 break;
317
318                                         case 'SUPPORT_MEMBER': // Assign on member's support request
319                                                 // @TODO This may also be rewritten to include files
320                                                 switch ($mode) {
321                                                         default: // @TODO Unknown support mode
322                                                         logDebugMessage(__FILE__, __LINE__, sprintf("Unknown support mode %s detected. This part is under construction!", $mode));
323                                                         $OUT .= "<div class=\"admin_failed medium\">".sprintf(getMessage('ADMIN_UNKNOWN_SUPPORT_MODE'), $mode)."</div>\n";
324                                                         break;
325                                                 }
326                                                 break;
327
328                                         case 'PAYOUT_REQUEST': // Payout requests
329                                                 if (isExtensionActive('payout')) {
330                                                         // Extension is installed so let him send a notification to the user
331                                                         $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `userid`=%s AND payout_timestamp=%s LIMIT 1",
332                                                                 array(bigintval($userid), bigintval($created)), __FILE__, __LINE__);
333                                                         list($pid) = SQL_FETCHROW($result_pay);
334                                                         SQL_FREERESULT($result_pay);
335
336                                                         if ((!empty($pid)) && ($pid > 0)) {
337                                                                 // Payout id can be obtained
338                                                                 $content = array(
339                                                                         'pid' => $pid,
340                                                                         'tid' => $tid,
341                                                                 );
342                                                                 $OUT .= loadTemplate('admin_payout_overview_form', true, $content);
343                                                         } else {
344                                                                 // Problem obtaining payout id
345                                                                 $OUT .= "<div class=\"admin_failed medium\">{--PAYOUT_OBTAIN_ID_FAILED--}</div>\n";
346                                                         }
347                                                 } else {
348                                                         // Extension is not installed
349                                                         $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_PAYOUT_NOT_INSTALLED--}</div>\n";
350                                                 }
351                                                 break;
352
353                                         case 'WERNIS_REQUEST': // Wernis requests
354                                                 if (isExtensionActive('wernis')) {
355                                                         // Extension is installed so let him send a notification to the user
356                                                         $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s AND wernis_timestamp=%s LIMIT 1",
357                                                         array(bigintval($userid), bigintval($created)), __FILE__, __LINE__);
358                                                         list($pid) = SQL_FETCHROW($result_pay);
359                                                         SQL_FREERESULT($result_pay);
360
361                                                         if ((!empty($pid)) && ($pid > 0)) {
362                                                                 // Payout id can be obtained
363                                                                 $content = array(
364                                                                         'pid' => $pid,
365                                                                         'tid' => $tid,
366                                                                 );
367                                                                 $OUT .= loadTemplate('admin_wernis_overview_form', true, $content);
368                                                         } else {
369                                                                 // Problem obtaining wernis id
370                                                                 $OUT .= "<div class=\"admin_failed medium\">{--WERNIS_OBTAIN_ID_FAILED--}</div>\n";
371                                                         }
372                                                 } else {
373                                                         // Extension is not installed
374                                                         $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_WERNIS_NOT_INSTALLED--}</div>\n";
375                                                 }
376                                                 break;
377
378                                         case 'HOLIDAY_REQUEST': // Holiday requests
379                                                 $OUT .= loadTemplate('admin_task_holiday', true, $userid);
380                                                 break;
381
382                                         case 'MEMBER_ORDER': // Member mail orders
383                                                 $OUT .= loadTemplate('admin_task_order', true, $id);
384                                                 break;
385
386                                         default: // Unknown task type
387                                                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", $type));
388                                                 $OUT .= "<div class=\"admin_failed medium\">".sprintf(getMessage('ADMIN_UNKNOWN_TASK_TYPE'), $type, $id)."</div>\n";
389                                                 break;
390                                 }
391                                 $OUT .= "  </td>
392   <td width=\"1%\" class=\"switch_sw".$SW." bottom2 right2\">&nbsp;</td>
393 </tr>\n";
394                         } // END - if
395
396                         // Free result
397                         SQL_FREERESULT($result_task);
398
399                         // Switch colors
400                         $SW = 3 - $SW;
401                 } // END - foreach
402
403                 // Load final template
404                 loadTemplate('admin_overview_list', false, $OUT);
405         } else {
406                 if ((isset($postData['task'])) && ((count($postData['task']) > 0) || ($postData['task'][0] == 1))) {
407                         // Only unassign / delete tasks when there are selected tasks posted
408                         if (!empty($postData['unassign'])) {
409                                 // Unassign from tasks
410                                 foreach ($postData['task'] as $id => $sel) {
411                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=0 WHERE `id`=%s AND `assigned_admin`=%s LIMIT 1",
412                                                 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
413                                 }
414                         } elseif (isset($postData['del'])) {
415                                 // Delete tasks
416                                 foreach ($postData['task'] as $id => $sel) {
417                                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s AND assigned_admin IN (%s,0) LIMIT 1",
418                                                 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
419                                 }
420                         } else {
421                                 // Unknown action
422                                 debug_report_bug(sprintf("Unknown task action performed. data=<pre>%s</pre>", print_r($postData, true)));
423                         }
424
425                         // Update query
426                         $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",
427                                 array(getCurrentAdminId()), __FILE__, __LINE__);
428                 } // END - if
429
430                 // There are uncompleted jobs!
431                 $OUT = ''; $SW = 2;
432                 while ($content = SQL_FETCHARRAY($result_tasks)) {
433                         // Init infos
434                         $content['infos'] = '---';
435
436                         // Generate assign link
437                         $content['assigned_admin'] = generateAdminLink($content['assigned_admin']);
438
439                         // Generate infos
440                         // @TODO Try to move this in includes
441                         switch ($content['task_type']) {
442                                 case 'EXTENSION':
443                                 case 'EXTENSION_UPDATE':
444                                         $content['infos'] = substr($content['subject'], 1, strpos($content['subject'], ':') - 1);
445                                         break;
446                         }
447
448                         // Get task type
449                         $content['task_type_msg'] = getMessage('ADMIN_TASK_IS_'.strtoupper($content['task_type']).'');
450
451                         if ($content['userid'] > 0) {
452                                 // Member found otherwise it's a system task
453                                 $content['userid'] = generateUserProfileLink($content['userid']);
454                         } else {
455                                 $content['userid'] = "<em>{--ADMIN_IS_SYSTEM_TASK--}</em>";
456                         }
457
458                         // Prepare content
459                         $content = merge_array($content, array(
460                                 'sw'             => $SW,
461                                 'assigned_admin' => $content['assigned_admin'],
462                                 'userid'         => $content['userid'],
463                                 'task_type_msg'  => $content['task_type_msg'],
464                                 'created'        => generateDateTime($content['task_created'], 2)
465                         ));
466
467                         // Do we have extension task?
468                         if (($content['task_type'] == 'EXTENSION') && (isExtensionNameValid($content['infos'])) && (!isExtensionInstalled($content['infos']))) {
469                                 // Load extension row template
470                                 $OUT .= loadTemplate('admin_overview_list_ext_rows', true, $content);
471                         } else {
472                                 // Load default row template
473                                 $OUT .= loadTemplate('admin_overview_list_rows', true, $content);
474                         }
475
476                         // Switch color
477                         $SW = 3 - $SW;
478                 } // END - while
479
480                 // Free memory
481                 SQL_FREERESULT($result_tasks);
482
483                 // Load footer template
484                 loadTemplate('admin_overview_table', false, $OUT);
485         }
486 }
487
488 // [EOF]
489 ?>