2 /************************************************************************
3 * MXChange v0.2.1 Start: 07/13/2004 *
4 * =============== Last change: 08/02/2004 *
6 * -------------------------------------------------------------------- *
7 * File : overview-inc.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Output standard task management *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Standart-Aufgaben-Management ausgeben *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
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__);
50 // We currently don't want to install an extension so let's find out if we need...
51 setExtensionMode('test');
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);
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!!!
68 // Check if extension is installed or not
69 $extInstalled = (isExtensionInstalled($ext_name) && (isExtensionActive($ext_name)));
71 // Is the extension not yet installed?
72 if ($extInstalled === false) {
73 // Generate subject line
74 $ext_subj = sprintf("[%s:]", $ext_name);
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);
82 // Test-drive extension in update mode
83 loadExtension($ext_name, 'test');
85 // Get extension version
86 $ext_ver = getExtensionVersion($ext_name);
87 //* DEBUG: */ outputHtml($ext_name."=".$ext_ver."<br />");
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);
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);
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`
111 `{?_MYSQL_PREFIX?}_task_system`
113 `assigned_admin`=%s OR (`assigned_admin`=0 AND `status`='NEW')
118 `task_created` DESC",
119 array(getCurrentAdminId()), __FILE__, __LINE__);
121 if (SQL_NUMROWS($result_tasks) > 0) {
127 SQL_FREERESULT($result);
133 // Outputs selected tasks
134 function outputSeletectedTasks ($postData, $result_tasks) {
135 if ((isset($postData['assign'])) && (count($postData['task']) > 0)) {
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`
142 `{?_MYSQL_PREFIX?}_task_system`
144 `id`=%s AND (`assigned_admin`=%s OR (`assigned_admin`=0 AND `status`='NEW'))
146 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
149 if (SQL_NUMROWS($result_task) == 1) {
151 list($tid, $userid, $type, $subj, $text, $created, $status, $adminId) = SQL_FETCHROW($result_task);
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__);
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>";
167 // Is a userid assign?
169 // Then load his data!
170 if (fetchUserData($userid)) {
172 $content = getUserDataArray();
174 // Generate HTML list entry
175 $add = "<li>{--ADMIN_MEMBER_UID--}: <strong>".generateUserProfileLink($userid, 'user_data')." (<a href=\"".generateEmailLink($content['email'], 'user_data')."\">".translateGender($content['gender'])." ".$content['surname']." ".$content['family']."</a>)</strong></li>";
177 // Invalid userid, so log and zero it
178 logDebugMessage(__FUNCTION__, __LINE__, 'Invalid userid=' . $userid . ' -> not found!');
183 // Decode entities of the text
184 $text = decodeEntities($text);
186 // Compile and insert text from task into table template
187 $text = loadTemplate('admin_extensions_text', true, $text);
189 // Initialize variables (no title for SQL commands by default)
190 $ext_name = ''; $ext_ver = '';
191 $title = getMessage('TASK_NO_TITLE');
193 // Shall I list SQL commands assigned to an extension installation or update task?
194 if ((getConfig('verbose_sql') == 'Y')) {
195 // Extract extension name from subject
196 $ext_name = substr($subj, 1, strpos($subj, ':') - 1);
198 // Update task or extension task?
199 if (($type == 'EXTENSION') && (!isExtensionInstalled($ext_name))) {
200 // Load SQL commands for registering in dry-run
201 registerExtension($ext_name, $id, true);
203 // Is this non-productive?
204 if (isExtensionProductive() === false) {
206 $text .= loadTemplate('admin_settings_saved', true, sprintf(getMessage('ADMIN_EXTENSION_IS_NON_PRODUCTIVE'), $ext_name));
209 // Set current extension name
210 setCurrentExtensionName($ext_name);
213 $text .= getExtensionNotes();
216 $title = getMessage('ADMIN_SQLS_EXECUTED_ON_REGISTER');
217 } elseif ($type == 'EXTENSION_UPDATE') {
218 // Prepare extension name and version
219 $ext_name = substr($ext_name, 7);
220 $ext_name = substr($ext_name, 0, strpos($ext_name, '-'));
221 $test = '[UPDATE-' . $ext_name . '-';
222 $ext_ver = substr($subj, strlen($test));
223 $ext_ver = substr($ext_ver, 0, strpos($ext_ver, ':'));
225 // Load SQLs from file
226 updateExtension($ext_name, $ext_ver, true);
228 // Set current extension name
229 setCurrentExtensionName($ext_name);
232 $text .= getExtensionNotes();
235 $title = getMessage('ADMIN_SQLS_EXECUTED_ON_UPDATE');
237 // Remove extension's name
241 // Add SQLs to a table
242 if ((!empty($ext_name)) && (getExtensionVersion('sql_patches')) && (getConfig('verbose_sql') == 'Y')) {
243 // Add verbose SQL table
244 $text .= addExtensionVerboseSqlTable($title, " class=\"admin_table top2 left2 right2\"", true, '100%') . "<br />\n";
246 } elseif ((!empty($ext_name)) && (!empty($ext_ver))) {
247 // Run SQL commands in dry mode but only return the notes
248 updateExtension($ext_name, $ext_ver, true);
250 // Set current extension name
251 setCurrentExtensionName($ext_name);
254 $text .= getExtensionNotes();
256 // This should not normally happen!
257 debug_report_bug('ext_name(' . $ext_name . ') or ext_ver(' . $ext_ver . ') is empty! sql_patches=' . getExtensionVersion('sql_patches') . '/verbose_sql=' . getConfig('verbose_sql'));
260 // Prepare array for the template
266 'created' => generateDateTime($created, 1),
267 'extension' => $ext_name
271 $OUT .= loadTemplate('admin_overview_row', true, $content);
273 // Which task do we actually have here?
274 // @TODO Rewrite this to something with include files
276 case 'EXTENSION': // Install new extensions
277 $ext_name = substr($subj, 1, strpos($subj, ':') - 1);
278 $result_lines = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `ext_name`='%s' LIMIT 1",
279 array($ext_name), __FILE__, __LINE__);
280 $lines = SQL_NUMROWS($result_lines);
281 SQL_FREERESULT($result_lines);
283 // New extension found
284 $OUT .= loadTemplate('admin_ext_reg_form', true, array(
285 'id' => bigintval($id),
286 'ext_name' => $ext_name
289 // Task is closed so nothing is todo
290 $OUT .= "<div class=\"admin_failed\">{--ADMIN_EXT_ALREADY_REGISTERED--}</div>\n";
292 // Close task but not already closes or deleted or update tasks
293 if ((!in_array($status, array('CLOSED','DELETED','SOLVED'))) && ($type != 'EXTENSION_UPDATE')) {
295 runFilterChain('solve_task', $tid);
300 case 'EXTENSION_UPDATE': // Extension update
301 // Extension updates are installed automatically
302 $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_EXTENSION_UPDATED--}</div>\n";
305 if (($status != 'CLOSED') && ($status != 'DELETED')) {
307 runFilterChain('solve_task', $tid);
311 case 'SUPPORT_MEMBER': // Assign on member's support request
312 // @TODO This may also be rewritten to include files
314 default: // @TODO Unknown support mode
315 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown support mode %s detected. This part is under construction!", $mode));
316 $OUT .= "<div class=\"admin_failed medium\">".sprintf(getMessage('ADMIN_UNKNOWN_SUPPORT_MODE'), $mode)."</div>\n";
321 case 'PAYOUT_REQUEST': // Payout requests
322 if (isExtensionActive('payout')) {
323 // Extension is installed so let him send a notification to the user
324 $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `userid`=%s AND payout_timestamp=%s LIMIT 1",
325 array(bigintval($userid), bigintval($created)), __FILE__, __LINE__);
326 list($pid) = SQL_FETCHROW($result_pay);
327 SQL_FREERESULT($result_pay);
329 if ((!empty($pid)) && ($pid > 0)) {
330 // Payout id can be obtained
335 $OUT .= loadTemplate('admin_payout_overview_form', true, $content);
337 // Problem obtaining payout id
338 $OUT .= "<div class=\"admin_failed medium\">{--PAYOUT_OBTAIN_ID_FAILED--}</div>\n";
341 // Extension is not installed
342 $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_PAYOUT_NOT_INSTALLED--}</div>\n";
346 case 'WERNIS_REQUEST': // Wernis requests
347 if (isExtensionActive('wernis')) {
348 // Extension is installed so let him send a notification to the user
349 $result_pay = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s AND wernis_timestamp=%s LIMIT 1",
350 array(bigintval($userid), bigintval($created)), __FILE__, __LINE__);
351 list($pid) = SQL_FETCHROW($result_pay);
352 SQL_FREERESULT($result_pay);
354 if ((!empty($pid)) && ($pid > 0)) {
355 // Payout id can be obtained
360 $OUT .= loadTemplate('admin_wernis_overview_form', true, $content);
362 // Problem obtaining wernis id
363 $OUT .= "<div class=\"admin_failed medium\">{--WERNIS_OBTAIN_ID_FAILED--}</div>\n";
366 // Extension is not installed
367 $OUT .= "<div class=\"admin_failed medium\">{--ADMIN_WERNIS_NOT_INSTALLED--}</div>\n";
371 case 'HOLIDAY_REQUEST': // Holiday requests
372 $OUT .= loadTemplate('admin_task_holiday', true, $userid);
375 case 'MEMBER_ORDER': // Member mail orders
376 $OUT .= loadTemplate('admin_task_order', true, $id);
379 default: // Unknown task type
380 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", $type));
381 $OUT .= "<div class=\"admin_failed medium\">".sprintf(getMessage('ADMIN_UNKNOWN_TASK_TYPE'), $type, $id)."</div>\n";
385 <td width=\"1%\" class=\"switch_sw".$SW." bottom2 right2\"> </td>
390 SQL_FREERESULT($result_task);
396 // Load final template
397 loadTemplate('admin_overview_list', false, $OUT);
399 if ((isset($postData['task'])) && ((count($postData['task']) > 0) || ($postData['task'][0] == 1))) {
400 // Only unassign / delete tasks when there are selected tasks posted
401 if (!empty($postData['unassign'])) {
402 // Unassign from tasks
403 foreach ($postData['task'] as $id => $sel) {
404 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_task_system` SET `assigned_admin`=0 WHERE `id`=%s AND `assigned_admin`=%s LIMIT 1",
405 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
407 } elseif (isset($postData['del'])) {
409 foreach ($postData['task'] as $id => $sel) {
410 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s AND assigned_admin IN (%s,0) LIMIT 1",
411 array(bigintval($id), getCurrentAdminId()), __FILE__, __LINE__);
415 debug_report_bug(sprintf("Unknown task action performed. data=<pre>%s</pre>", print_r($postData, true)));
419 $result_tasks = SQL_QUERY_ESC("SELECT `id`, `assigned_admin`, `userid`, `task_type`, `subject`, `text`, `task_created` FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `assigned_admin`=%s OR (`assigned_admin`=0 AND `status`='NEW') ORDER BY `task_created` DESC",
420 array(getCurrentAdminId()), __FILE__, __LINE__);
423 // There are uncompleted jobs!
425 while ($content = SQL_FETCHARRAY($result_tasks)) {
427 $content['infos'] = '---';
429 // Generate assign link
430 $content['assigned_admin'] = generateAdminLink($content['assigned_admin']);
433 // @TODO Try to move this in includes
434 switch ($content['task_type']) {
436 case 'EXTENSION_UPDATE':
437 $content['infos'] = substr($content['subject'], 1, strpos($content['subject'], ':') - 1);
442 $content['task_type_msg'] = getMessage('ADMIN_TASK_IS_'.strtoupper($content['task_type']).'');
444 if ($content['userid'] > 0) {
445 // Member found otherwise it's a system task
446 $content['userid'] = generateUserProfileLink($content['userid']);
448 $content['userid'] = "<em>{--ADMIN_IS_SYSTEM_TASK--}</em>";
452 $content = merge_array($content, array(
454 'assigned_admin' => $content['assigned_admin'],
455 'userid' => $content['userid'],
456 'task_type_msg' => $content['task_type_msg'],
457 'created' => generateDateTime($content['task_created'], 2)
460 // Do we have extension task?
461 if (($content['task_type'] == 'EXTENSION') && (isExtensionNameValid($content['infos'])) && (!isExtensionInstalled($content['infos']))) {
462 // Load extension row template
463 $OUT .= loadTemplate('admin_overview_list_ext_rows', true, $content);
465 // Load default row template
466 $OUT .= loadTemplate('admin_overview_list_rows', true, $content);
474 SQL_FREERESULT($result_tasks);
476 // Load footer template
477 loadTemplate('admin_overview_table', false, $OUT);