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