Configuration of advertisement networks prepared, CSS cleaned up, HTML rewritten:
[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 } // END - if
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_HASZERONUMS($result_tasks)) {
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 = '';
136                 foreach ($postData['sel'] as $taskId => $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($taskId),
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'] == 'MEMBER_SUPPORT') {
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 = '{--ADMIN_TASK_NO_SQL_TITLE--}';
196
197                                 // Shall I list SQL commands assigned to an extension installation or update task?
198                                 if ((isVerboseSqlEnabled()) || (!isExtensionInstalled('sql_patches'))) {
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, $taskId, 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)) . $taskData['text'];
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)) && (isVerboseSqlEnabled())) {
247                                                 // Add verbose SQL table
248                                                 $taskData['text'] .= addExtensionVerboseSqlTable($title, ' class="table top left right"', true, '100%') . '<br />';
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! isVerboseSqlEnabled=' . intval(isVerboseSqlEnabled()));
262                                 }
263
264                                 // Prepare array for the template
265                                 $content = array(
266                                         'subject'      => $taskData['subject'],
267                                         'add'          => $add,
268                                         'text'         => $taskData['text'],
269                                         'task_created' => generateDateTime($taskData['task_created'], 1),
270                                         'extension'    => $ext_name
271                                 );
272
273                                 // Load template
274                                 $OUT .= loadTemplate('admin_overview_row', true, $content);
275
276                                 // Which task do we actually have here?
277                                 // @TODO Rewrite this to something with include files and/or filter
278                                 switch ($taskData['task_type']) {
279                                         case 'EXTENSION': // Install new extensions
280                                                 $ext_name = substr($taskData['subject'], 1, strpos($taskData['subject'], ':') - 1);
281                                                 if (!isExtensionInstalled($ext_name)) {
282                                                         // New (not yet installed) extension found
283                                                         $OUT .= loadTemplate('admin_extension_reg_form', true, array(
284                                                                 'id'       => bigintval($taskId),
285                                                                 'ext_name' => $ext_name
286                                                         ));
287                                                 } else {
288                                                         // Extension is already installed
289                                                         $OUT .= '<div class="notice">{--ADMIN_EXTENSION_ALREADY_REGISTERED--}</div>';
290
291                                                         // Close task but not already closed, solved, deleted or update tasks
292                                                         if ((!in_array($taskData['status'], array('CLOSED','DELETED','SOLVED'))) && ($taskData['task_type'] != 'EXTENSION_UPDATE')) {
293                                                                 // Solve the task
294                                                                 runFilterChain('solve_task', $taskData['id']);
295                                                         } // END - if
296                                                 }
297                                                 break;
298
299                                         case 'EXTENSION_UPDATE': // Extension update
300                                                 // Extension updates are installed automatically
301                                                 $OUT .= '<div class="notice medium">{--ADMIN_EXTENSION_UPDATED--}</div>';
302
303                                                 // Close task
304                                                 if (!in_array($taskData['status'], array('CLOSED', 'DELETED'))) {
305                                                         // Solve the task
306                                                         runFilterChain('solve_task', $taskData['id']);
307                                                 } // END - if
308                                                 break;
309
310                                         case 'MEMBER_SUPPORT': // Assign on member's support request
311                                                 // @TODO This may also be rewritten to include files
312                                                 switch ($mode) {
313                                                         default: // @TODO Unknown support mode
314                                                         logDebugMessage(__FILE__, __LINE__, sprintf("Unknown support mode %s detected. This part is under construction!", $mode));
315                                                         $OUT .= '<div class="notice medium">' . getMaskedMessage('ADMIN_UNKNOWN_SUPPORT_MODE', $mode) . '</div>';
316                                                         break;
317                                                 }
318                                                 break;
319
320                                         case 'PAYOUT_REQUEST': // Payout requests
321                                                 if (isExtensionActive('payout')) {
322                                                         // Extension is installed so let him send a notification to the user
323                                                         $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `userid`=%s AND `payout_timestamp`=%s LIMIT 1",
324                                                                 array(bigintval($taskData['userid']), bigintval($taskData['task_created'])), __FILE__, __LINE__);
325                                                         list($pid) = SQL_FETCHROW($result_pay);
326                                                         SQL_FREERESULT($result_pay);
327
328                                                         if ((!empty($pid)) && ($pid > 0)) {
329                                                                 // Payout id can be obtained
330                                                                 $content = array(
331                                                                         'pid' => $pid,
332                                                                         'tid' => $taskData['id'],
333                                                                 );
334
335                                                                 // Load template
336                                                                 $OUT .= loadTemplate('admin_payout_overview_form', true, $content);
337                                                         } else {
338                                                                 // Problem obtaining payout id
339                                                                 $OUT .= '<div class="notice medium">{--ADMIN_PAYOUT_OBTAIN_ID_FAILED--}</div>';
340                                                         }
341                                                 } else {
342                                                         // Extension is not installed
343                                                         $OUT .= '<div class="notice medium">{--ADMIN_PAYOUT_NOT_INSTALLED--}</div>';
344                                                 }
345                                                 break;
346
347                                         case 'WERNIS_REQUEST': // Wernis requests
348                                                 if (isExtensionActive('wernis')) {
349                                                         // Extension is installed so let him send a notification to the user
350                                                         $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s AND wernis_timestamp=%s LIMIT 1",
351                                                                 array(bigintval($taskData['userid']), bigintval($taskData['task_created'])), __FILE__, __LINE__);
352                                                         list($pid) = SQL_FETCHROW($result_pay);
353                                                         SQL_FREERESULT($result_pay);
354
355                                                         if ((!empty($pid)) && ($pid > 0)) {
356                                                                 // Payout id can be obtained
357                                                                 $content = array(
358                                                                         'pid' => $pid,
359                                                                         'tid' => $taskData['id'],
360                                                                 );
361                                                                 $OUT .= loadTemplate('admin_wernis_overview_form', true, $content);
362                                                         } else {
363                                                                 // Problem obtaining wernis id
364                                                                 $OUT .= '<div class="notice medium">{--WERNIS_OBTAIN_ID_FAILED--}</div>';
365                                                         }
366                                                 } else {
367                                                         // Extension is not installed
368                                                         $OUT .= '<div class="notice medium">{--ADMIN_WERNIS_NOT_INSTALLED--}</div>';
369                                                 }
370                                                 break;
371
372                                         case 'HOLIDAY_REQUEST': // Holiday requests
373                                                 $OUT .= loadTemplate('admin_task_holiday', true, $taskData['userid']);
374                                                 break;
375
376                                         case 'MEMBER_ORDER': // Member mail orders
377                                                 $OUT .= loadTemplate('admin_task_order', true, $taskId);
378                                                 break;
379
380                                         default: // Unknown task type
381                                                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", $taskData['task_type']));
382                                                 $OUT .= '<div class="notice medium">' . sprintf(getMessage('ADMIN_UNKNOWN_TASK_TYPE'), $taskData['task_type'], $taskId) . '</div>';
383                                                 break;
384                                 }
385                                 $OUT .= '
386   </td>
387 </tr>';
388                         } // END - if
389
390                         // Free result
391                         SQL_FREERESULT($result_task);
392                 } // END - foreach
393
394                 // Load final template
395                 loadTemplate('admin_overview_list', false, $OUT);
396         } else {
397                 if ((isset($postData['sel'])) && ((count($postData['sel']) > 0) || ($postData['sel'][0] == 1))) {
398                         // Only unassign / delete tasks when there are selected tasks posted
399                         if (!empty($postData['unassign'])) {
400                                 // Unassign from tasks
401                                 foreach ($postData['sel'] as $taskId => $sel) {
402                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=0 WHERE `id`=%s AND `assigned_admin`=%s LIMIT 1",
403                                                 array(bigintval($taskId), getCurrentAdminId()), __FILE__, __LINE__);
404                                 }
405                         } elseif (isset($postData['delete'])) {
406                                 // Delete tasks
407                                 foreach ($postData['sel'] as $taskId => $sel) {
408                                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s AND `assigned_admin` IN (%s,0) LIMIT 1",
409                                                 array(bigintval($taskId), getCurrentAdminId()), __FILE__, __LINE__);
410                                 }
411                         } else {
412                                 // Unknown action
413                                 debug_report_bug(__FILE__, __LINE__, sprintf("Unknown task action performed. data=<pre>%s</pre>", print_r($postData, true)));
414                         }
415
416                         // Update query
417                         $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",
418                                 array(getCurrentAdminId()), __FILE__, __LINE__);
419                 } // END - if
420
421                 // There are uncompleted jobs!
422                 $OUT = '';
423                 while ($content = SQL_FETCHARRAY($result_tasks)) {
424                         // Init infos
425                         $content['infos'] = '';
426
427                         // Generate infos
428                         // @TODO Try to move this in includes
429                         switch ($content['task_type']) {
430                                 case 'EXTENSION':
431                                 case 'EXTENSION_UPDATE':
432                                         $content['infos'] = substr($content['subject'], 1, strpos($content['subject'], ':') - 1);
433                                         break;
434                         }
435
436                         // Get task type
437                         $content['task_type_msg'] = '{--ADMIN_TASK_IS_' . strtoupper($content['task_type']) . '--}';
438
439                         if (isValidUserId($content['userid'])) {
440                                 // Member found otherwise it's a system task
441                                 $content['userid'] = generateUserProfileLink($content['userid']);
442                         } else {
443                                 $content['userid'] = '<em>{--ADMIN_IS_SYSTEM_TASK--}</em>';
444                         }
445
446                         // Add/translate some content
447                         $content['task_created'] = generateDateTime($content['task_created'], 2);
448
449                         // Do we have extension task?
450                         if (isExtensionTask($content)) {
451                                 // Load extension row template
452                                 $OUT .= loadTemplate('admin_overview_list_ext_rows', true, $content);
453                         } else {
454                                 // Load default row template
455                                 $OUT .= loadTemplate('admin_overview_list_rows', true, $content);
456                         }
457                 } // END - while
458
459                 // Free memory
460                 SQL_FREERESULT($result_tasks);
461
462                 // Load footer template
463                 loadTemplate('admin_overview_table', false, $OUT);
464         }
465 }
466
467 // [EOF]
468 ?>