]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/overview-inc.php
Email templates changed, surfbar extended (dummy) with member actions
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 function OUTPUT_STANDARD_OVERVIEW(&$result_tasks)
41 {
42         global $cacheArray, $cacheArray;
43
44         // First check for solved and not assigned tasks and assign them to current admin
45         $result_task = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin='%s' WHERE assigned_admin < 1 AND status != 'NEW'",
46          array(GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
47
48         // We currently don't want to install an extension so let's find out if we need...
49         $EXT_LOAD_MODE = "register";
50         $JOBS_DONE = true;
51
52         // Open the extension directory
53         $handle = opendir(PATH."inc/extensions/") or mxchange_die("Cannot read extension directory!");
54         while ($file = readdir($handle)) {
55                 // Is this file an extension?
56                 if ((substr($file, 0, 4) == "ext-") && (substr($file, -4) == ".php")) {
57                         //* DEBUG: */ echo $file."<br />\n";
58                         // Possible newly installed extension found so we extract extension's name
59                         $ext = strtolower(substr($file, 4, -4)); // Keep always extension names on lower case!!!
60
61                         // Init variables
62                         $ext_ver = "";
63                         $result = false;
64
65                         // Check if extension is installed or not
66                         if ((is_array($cacheArray['extensions']['ext_version'])) && (isset($cacheArray['extensions']['ext_version'][$ext]))) {
67                                 // Load version from cache
68                                 if (!empty($cacheArray['extensions']['ext_version'][$ext])) {
69                                         // Extension is installed so we can get it's version number
70                                         $ext_ver = $cacheArray['extensions']['ext_version'][$ext];
71                                 } else {
72                                         // Extension is not installed so no version number was found
73                                         $ext_ver = "";
74                                 }
75                         } elseif (!EXT_IS_ACTIVE("cache")) {
76                                 // Load data from database
77                                 $result = SQL_QUERY_ESC("SELECT id, ext_version FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
78                                  array($ext), __FILE__, __LINE__);
79                         }
80
81                         // Is the extension not yet installed?
82                         if ((SQL_NUMROWS($result) == 0) && (empty($ext_ver))) {
83                                 // Generate subject line
84                                 $ext_subj = sprintf("[%s:]", $ext);
85
86                                 // Create a task for newly installed extension
87                                 CREATE_NEW_EXTENSION_TASK(GET_ADMIN_ID(get_session('admin_login')), $ext_subj, $ext);
88
89                                 // We maybe want to install an extension so let's test-drive it...
90                                 include(PATH."inc/extensions/".$file);
91                         } else {
92                                 // Maybe we want to update?
93                                 if ((empty($cacheArray['extensions']['ext_version'][$ext])) && (SQL_NUMROWS($result) == 1)) {
94                                         list($dummy, $ext_ver) = SQL_FETCHROW($result);
95                                         SQL_FREERESULT($result);
96                                 } // END - if
97
98                                 // Update extension
99                                 if (!empty($ext_ver)) EXTENSION_UPDATE($file, $ext, $ext_ver);
100
101                                 if (!empty($cacheArray['active_extensions'][$ext])) {
102                                         // Maybe we want to keept the current extension active?
103                                         if (($cacheArray['active_extensions'][$ext] == "Y") && (!EXT_IS_ACTIVE($ext))) {
104                                                 // Reactivate this extension!
105                                                 ACTIVATE_EXTENSION($ext);
106                                         } // END - if
107                                 } // END - if
108                         }
109                 } // END - if
110         } // END - while
111
112         // Close directory handle
113         closedir($handle);
114
115         // At last - but not least - check for own and new unassigned tasks...
116         $result_tasks = SQL_QUERY_ESC("SELECT id, assigned_admin, userid, task_type, subject, text, task_created
117 FROM "._MYSQL_PREFIX."_task_system
118 WHERE assigned_admin='%s' OR (assigned_admin='0' AND status='NEW')
119 ORDER BY userid DESC, task_type DESC, subject, task_created DESC",
120          array(GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
121
122         if (SQL_NUMROWS($result_tasks) > 0) {
123                 // New jobs found!
124                 $JOBS_DONE = false;
125         } // END - if
126
127         // Free the result
128         SQL_FREERESULT($result);
129
130         // Return status
131         return $JOBS_DONE;
132 }
133
134 //
135 function OUTPUT_SELECTED_TASKS($_POST, $result_tasks) {
136         global $_CONFIG, $NOTES;
137         if ((isset($_POST['assign'])) && (count($_POST['task']) > 0)) {
138                 // Assign / do tasks
139                 $OUT = ""; $SW = 2;
140                 foreach ($_POST['task'] as $id => $sel) {
141                         $result_task = SQL_QUERY_ESC("SELECT id, userid, task_type, subject, text, task_created, status, assigned_admin FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND (assigned_admin='%s' OR (assigned_admin='0' AND status='NEW')) LIMIT 1",
142                          array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
143                         if (SQL_NUMROWS($result_task) == 1) {
144                                 // Task is valid...
145                                 list($tid, $uid, $type, $subj, $text, $created, $status, $aid) = SQL_FETCHROW($result_task);
146                                 SQL_FREERESULT($result_task);
147
148                                 if ($aid == "0") {
149                                         // Assgin current admin to unassgigned task
150                                         $result_assign = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin='%s' WHERE id=%s LIMIT 1",
151                                          array(GET_ADMIN_ID(get_session('admin_login')), bigintval($tid)), __FILE__, __LINE__);
152                                 } // END - if
153
154                                 $ADD = "";
155                                 if ($type == "SUPPORT_MEMBER") {
156                                         $mode = substr($text, 0, strpos($text, ":"));
157                                         $text = substr($text, strpos($text, ":") + 1);
158                                         $ADD = "<LI>".ADMIN_TASK_SUPPORT_MODE.": <STRONG>".$mode."</STRONG></LI>";
159                                 } // END - if
160
161                                 if ($uid > 0) {
162                                         $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
163                                          array(bigintval($uid)), __FILE__, __LINE__);
164                                         if (SQL_NUMROWS($result_user) == 1) {
165                                                 list($gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
166                                                 SQL_FREERESULT($result_user);
167                                                 $ADD = "<LI>".ADMIN_MEMBER_UID.": <STRONG>".ADMIN_USER_PROFILE_LINK($uid)." (<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".TRANSLATE_GENDER($gender)." ".$sname." ".$fname."</A>)</STRONG></LI>";
168                                         } // END - if
169                                 } // END - if
170
171                                 // Decode entities of the text
172                                 $text = html_entity_decode($text);
173
174                                 // Compile and insert text from task into table template
175                                 $text = LOAD_TEMPLATE("admin_extensions_text", true, $text);
176
177                                 // Initialize variables (no title for SQL commands by default)
178                                 $ext_name = "";
179                                 $title = TASK_NO_TITLE;
180
181                                 // Shall I list SQL commands assigned to an extension installation or update task?
182                                 if (((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['verbose_sql'] == "Y")) || (!EXT_IS_ACTIVE("sql_patches"))) {
183                                         $ext_name = substr($subj, 1, strpos($subj, ":") - 1);
184                                         if ($type == "EXTENSION") {
185                                                 // Load SQL commands for registering
186                                                 $SQLs = EXTENSION_REGISTER($ext_name, $id, true);
187
188                                                 // Add notes to text
189                                                 $text .= $NOTES;
190
191                                                 // Set title
192                                                 $title = ADMIN_SQLS_EXECUTED_ON_REGISTER;
193                                         } elseif ($type == "EXTENSION_UPDATE") {
194                                                 // Load SQL commands for update (already done!)
195                                                 $ext_name = substr($ext_name, 7);
196                                                 $ext_name = substr($ext_name, 0, strpos($ext_name, "-"));
197                                                 $test = "[UPDATE-".$ext_name."-";
198                                                 $ext_ver = substr($subj, strlen($test));
199                                                 $ext_ver = substr($ext_ver, 0, strpos($ext_ver, ":"));
200
201                                                 // Load SQLs from file
202                                                 $SQLs = EXTENSION_UPDATE("ext-".$ext_name.".php", $ext_name, $ext_ver, true);
203
204                                                 // Add notes to text
205                                                 $text .= $NOTES;
206
207                                                 // Set title
208                                                 $title = ADMIN_SQLS_EXECUTED_ON_UPDATE;
209                                         } else {
210                                                 // Remove extension's name
211                                                 $ext_name = "";
212                                         }
213
214                                         // Add SQLs to a table
215                                         if (empty($SQLs)) $SQLs = array();
216                                         if (empty($title)) $title = "";
217                                         if ((!empty($ext_name)) && (GET_EXT_VERSION("sql_patches")) && ($_CONFIG['verbose_sql'] == "Y")) {
218                                                 // Add verbose SQL table
219                                                 $text .= EXTENSION_VERBOSE_TABLE($SQLs, $title, " class=\"admin_table top2 left2 right2\"", true, "100%")."<br />\n";
220                                         } // END - if
221                                 } else {
222                                         // Run SQL commands in dry mode but only return the notes
223                                         $SQLs = EXTENSION_UPDATE("ext-".$ext_name.".php", $ext_name, $ext_ver, true);
224                                         $text .= $NOTES;
225                                 }
226
227                                 // Prepare array for the template
228                                 $content = array(
229                                         'sw'        => $SW,
230                                         'subj'      => $subj,
231                                         'add'       => $ADD,
232                                         'text'      => $text,
233                                         'created'   => MAKE_DATETIME($created, "1"),
234                                         'extension' => $ext_name
235                                 );
236
237                                 // Load template
238                                 $OUT .= LOAD_TEMPLATE("admin_overview_row", true, $content);
239
240                                 // Which task do we actually have here?
241                                 switch ($type)
242                                 {
243                                 case "EXTENSION": // Install new extensions
244                                         $ext_name = substr($subj, 1, strpos($subj, ":") - 1);
245                                         $result_lines = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
246                                          array($ext_name), __FILE__, __LINE__);
247                                         $lines = SQL_NUMROWS($result_lines);
248                                         SQL_FREERESULT($result_lines);
249                                         if ($lines == "0") {
250                                                 // New extension found
251                                                 $OUT .= LOAD_TEMPLATE("admin_ext_reg_form", true, array(
252                                                         'id'       => bigintval($id),
253                                                         'ext_name' => $ext_name
254                                                 ));
255                                         } else {
256                                                 // Task is closed so nothing is todo
257                                                 $OUT .= "<FONT class=\"admin_failed\">".ADMIN_EXT_ALREADY_REGISTERED."</FONT>\n";
258
259                                                 // Close task but not already closes or deleted or update tasks
260                                                 if (($status != "CLOSED") && ($status != "DELETED") && ($type != "EXTENSION_UPDATE")) {
261                                                         ADMIN_SOLVE_TASK($tid);
262                                                 } // END - if
263                                         }
264                                         break;
265
266                                 case "EXTENSION_UPDATE":
267                                         // Extension updates are installed automatically
268                                         $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_EXTENSION_UPDATED."</FONT>\n";
269
270                                         // Close task
271                                         if (($status != "CLOSED") && ($status != "DELETED")) {
272                                                 // Solve the task
273                                                 ADMIN_SOLVE_TASK($tid);
274                                         } // END - if
275                                         break;
276
277                                 case "SUPPORT_MEMBER": // Assign on member's support request
278                                         switch ($mode)
279                                         {
280                                         default: // Unknown support mode
281                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_UNKNOWN_SUPPORT_MODE_1.$mode.ADMIN_UNKNOWN_SUPPORT_MODE_2."</FONT>\n";
282                                                 break;
283                                         }
284                                         break;
285
286                                 case "PAYOUT_REQUEST": // Payout requests
287                                         if (EXT_IS_ACTIVE("payout")) {
288                                                 // Extension is installed so let him send a notification to the user
289                                                 $result_pay = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_payouts WHERE userid=%s AND payout_timestamp=%s LIMIT 1",
290                                                  array(bigintval($uid), bigintval($created)), __FILE__, __LINE__);
291                                                 list($pid) = SQL_FETCHROW($result_pay);
292                                                 SQL_FREERESULT($result_pay);
293
294                                                 if ((!empty($pid)) && ($pid > 0)) {
295                                                         // Payout ID can be obtained
296                                                         $content = array(
297                                                                 'pid' => $pid,
298                                                                 'tid' => $tid,
299                                                         );
300                                                         $OUT .= LOAD_TEMPLATE("admin_payout_overview_form", true, $content);
301                                                 } else {
302                                                         // Problem obtaining payout ID
303                                                         $OUT .= "<FONT class=\"admin_failed medium\">".PAYOUT_OBTAIN_ID_FAILED."</FONT>\n";
304                                                 }
305                                         } else {
306                                                 // Extension is not installed
307                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_PAYOUT_NOT_INSTALLED."</FONT>\n";
308                                         }
309                                         break;
310
311                                 case "WERNIS_REQUEST": // Wernis requests
312                                         if (EXT_IS_ACTIVE("wernis")) {
313                                                 // Extension is installed so let him send a notification to the user
314                                                 $result_pay = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_wernis WHERE userid=%s AND wernis_timestamp=%s LIMIT 1",
315                                                  array(bigintval($uid), bigintval($created)), __FILE__, __LINE__);
316                                                 list($pid) = SQL_FETCHROW($result_pay);
317                                                 SQL_FREERESULT($result_pay);
318
319                                                 if ((!empty($pid)) && ($pid > 0)) {
320                                                         // Payout ID can be obtained
321                                                         $content = array(
322                                                                 'pid' => $pid,
323                                                                 'tid' => $tid,
324                                                         );
325                                                         $OUT .= LOAD_TEMPLATE("admin_wernis_overview_form", true, $content);
326                                                 } else {
327                                                         // Problem obtaining wernis ID
328                                                         $OUT .= "<FONT class=\"admin_failed medium\">".WERNIS_OBTAIN_ID_FAILED."</FONT>\n";
329                                                 }
330                                         } else {
331                                                 // Extension is not installed
332                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_WERNIS_NOT_INSTALLED."</FONT>\n";
333                                         }
334                                         break;
335
336                                 case "HOLIDAY_REQUEST": // Holiday requests
337                                         $OUT .= LOAD_TEMPLATE("admin_task_holiday", true, $uid);
338                                         break;
339
340                                 case "NL_UNSUBSCRIBE": // Newsletter unsubscriptions
341                                         $result = SQL_QUERY_ESC("SELECT nl_timespan FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
342                                          array(bigintval($uid)), __FILE__, __LINE__);
343                                         list($span) = SQL_FETCHROW($result);
344                                         SQL_FREERESULT($result);
345
346                                         if ($span > 0) {
347                                                 // Undone unscubscribe request
348                                                 $content = array(
349                                                         'uid' => $uid,
350                                                         'id'  => $tid
351                                                 );
352                                                 $OUT .= LOAD_TEMPLATE("admin_newsletter_tsk", true, $content);
353                                         } else {
354                                                 // Already unsubscribed
355                                                 $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_NL_UNSUBSCRIBE_ALREADY."</FONT>\n";
356                                         }
357                                         break;
358
359                                 default: // Unknown task type
360                                         $OUT .= "<FONT class=\"admin_failed medium\">".ADMIN_UNKNOWN_TASK_TYPE_1.$type.ADMIN_UNKNOWN_TASK_TYPE_2.$id.ADMIN_UNKNOWN_TASK_TYPE_3."</FONT>\n";
361                                         break;
362                                 }
363                                 $OUT .= "  </TD>
364   <TD width=\"1%\" class=\"switch_sw".$SW." bottom2 right2\">&nbsp;</TD>
365 </TR>\n";
366                         } // END - if
367                         $SW = 3 - $SW;
368                 } // END - foreach
369                 define('__TASK_ROWS', $OUT);
370
371                 // Load final template
372                 LOAD_TEMPLATE("admin_overview_list");
373         } else {
374                 if ((isset($_POST['task'])) && ((sizeof($_POST['task']) > 0) || ($_POST['task'][0] == "1"))) {
375                         // Only unassign / delete tasks when there are selected tasks posted
376                         if (!empty($_POST['unassign'])) {
377                                 // Unassign from tasks
378                                 foreach ($_POST['task'] as $id => $sel) {
379                                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin=0 WHERE id=%s AND assigned_admin=%s LIMIT 1",
380                                          array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
381                                 }
382                         } elseif (isset($_POST['del'])) {
383                                 // Delete tasks
384                                 foreach ($_POST['task'] as $id => $sel) {
385                                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND assigned_admin IN (%s,0) LIMIT 1",
386                                          array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
387                                 }
388                         }
389
390                         // Update query
391                         $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",
392                          array(GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
393                 } // END - if
394
395                 // There are uncompleted jobs!
396                 LOAD_TEMPLATE("admin_overview_header");
397                 $SW = 2;
398                 while (list($id, $admin, $uid, $type, $subj, $text, $created) = SQL_FETCHROW($result_tasks)) {
399                         $infos = "---";
400                         if ($admin == "0") {
401                                 // No admin currently is assigned
402                                 $admin = "<FONT class=\"admin_note\">".ADMIN_NO_ADMIN_ASSIGNED."</FONT>";
403                         } else {
404                                 // Load admin's data
405                                 $login = GET_ADMIN_LOGIN($admin);
406                                 if ($login != "***") {
407                                         // Admin found
408                                         $admin = "<A href=\"".URL."/modules.php?module=admin&amp;what=admins_contct&amp;admin=".$admin."\">".$login."</A>";
409                                 } else {
410                                         // Maybe deleted?
411                                         $admin = "<FONT class=\"admin_note\">".ADMIN_ID_404_1.$admin.ADMIN_ID_404_2."</FONT>";
412                                 }
413                         }
414                         $evl = "\$type_out = ADMIN_TASK_IS_".strtoupper($type).";";
415                         eval($evl);
416                         $type2 = substr($text, 0, strpos($text, ":"));
417                         // Generate infos
418                         switch ($type)
419                         {
420                         case "EXTENSION":
421                         case "EXTENSION_UPDATE":
422                                 $infos = substr($subj, 1, strpos($subj, ":") - 1);
423                                 break;
424                         }
425                         if ($uid > 0)
426                         {
427                                 // Member found otherwise it's a system task
428                                 $uid = ADMIN_USER_PROFILE_LINK($uid);
429                         }
430                          else
431                         {
432                                 $uid = "<I>".ADMIN_IS_SYSTEM_TASK."</I>";
433                         }
434
435                         $content = array(
436                                 'sw'      => $SW,
437                                 'id'      => $id,
438                                 'admin'   => $admin,
439                                 'infos'   => $infos,
440                                 'uid'     => $uid,
441                                 'type'    => $type_out,
442                                 'created' => MAKE_DATETIME($created, "2")
443                         );
444
445                         LOAD_TEMPLATE("admin_overview_list_rows", false, $content);
446                         $SW = 3 - $SW;
447                 }
448                 // Free memory
449                 SQL_FREERESULT($result_tasks);
450
451                 // Load footer template
452                 LOAD_TEMPLATE("admin_overview_footer");
453         }
454 }
455 //
456 ?>