A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[mailer.git] / inc / modules / admin / what-list_task.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/03/2004 *
4  * ================                             Last change: 08/07/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_task.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : List all tasks                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Aufgaben auflisten                          *
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 } elseif (!EXT_IS_ACTIVE("task")) {
39         addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "task");
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", __FILE__);
45
46 $whereStatement = "";
47 if (!REQUEST_ISSET_GET(('type'))) REQUEST_SET_GET('type', "your");
48
49 switch (REQUEST_GET('type'))
50 {
51 case "your": // List only your own open (new) tasks
52         $whereStatement = "assigned_admin='".GET_CURRENT_ADMIN_ID()."' AND `status`='NEW' AND task_type != 'EXTENSION_UPDATE'";
53         break;
54
55 case "updates": // List only updates assigned to you
56         $whereStatement = "assigned_admin=".GET_CURRENT_ADMIN_ID()." AND `status`='NEW' AND task_type = 'EXTENSION_UPDATE'";
57         break;
58
59 case "solved": // List only solved tasks assigned to you
60         $whereStatement = "assigned_admin=".GET_CURRENT_ADMIN_ID()." AND `status`='SOLVED'";
61         break;
62
63 case "unassigned": // List unassigned (but not deleted) tasks
64         $whereStatement = "assigned_admin='0' AND status != 'DELETED'";
65         break;
66
67 case "deleted": // List all deleted
68         $whereStatement = "`status`='DELETED'";
69         break;
70
71 case "closed": // List all closed
72         $whereStatement = "assigned_admin=".GET_CURRENT_ADMIN_ID()." AND `status`='CLOSED'";
73         break;
74
75 default: // Unknown type
76         DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown task type %s detected.", REQUEST_GET('type')));
77         LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_TASK_UNKNOWN_MODE'), REQUEST_GET('type')));
78         break;
79 }
80
81 if (!empty($whereStatement)) {
82         $SEL = 0;
83         if (REQUEST_ISSET_POST(('task'))) $SEL = SELECTION_COUNT(REQUEST_POST('task'));
84
85         if ((REQUEST_ISSET_POST(('assign'))) && ($SEL > 0)) {
86                 // Assign / do tasks
87                 LOAD_INC_ONCE("inc/modules/admin/overview-inc.php");
88                 if (empty($dmy)) $dmy = "";
89                 OUTPUT_SELECTED_TASKS(REQUEST_POST_ARRAY(), $dmy);
90         } else {
91                 // Start listing tasks matching selected filter
92                 $result_tasks = SQL_QUERY("SELECT id, assigned_admin, userid, task_type, subject, text, task_created
93 FROM `{!_MYSQL_PREFIX!}_task_system`
94 WHERE ".$whereStatement."
95 ORDER BY userid DESC, task_type DESC, subject, task_created DESC", __FILE__, __LINE__);
96                 if (($SEL > 0) && (!IS_DEMO())) {
97                         // Only unassign / delete tasks when there are selected tasks posted
98                         if (REQUEST_ISSET_POST(('unassign'))) {
99                                 // Unassign from tasks
100                                 foreach (REQUEST_POST('task') as $id => $sel) {
101                                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_task_system` SET assigned_admin=0 WHERE id=%s AND assigned_admin=%s LIMIT 1",
102                                                 array(bigintval($id), GET_CURRENT_ADMIN_ID()), __FILE__, __LINE__);
103                                 }
104                         } elseif (REQUEST_ISSET_POST('del')) {
105                                 // Delete tasks
106                                 foreach (REQUEST_POST('task') as $id => $sel) {
107                                         if (REQUEST_GET('type') == "deleted") {
108                                                 // Delete task immediately
109                                                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_task_system` WHERE id=%s LIMIT 1",
110                                                         array(bigintval($id)),__FILE__, __LINE__);
111                                         } else {
112                                                 // Mark task as to be deleted (purged by autppurge extension)
113                                                 ADMIN_DELETE_TASK($id);
114                                         }
115                                 }
116                         }
117
118                         // Update query
119                         $result_tasks = SQL_QUERY("SELECT id, assigned_admin, userid, task_type, subject, text, task_created FROM `{!_MYSQL_PREFIX!}_task_system` WHERE ".$whereStatement." ORDER BY subject, task_created DESC", __FILE__, __LINE__);
120                 }
121
122                 // There are uncompleted jobs!
123                 $type = getMessage('ADMIN_OVERVIEW_TASK_'.strtoupper(REQUEST_GET('type')).'_TYPE');
124                 // @TODO Rewrite these templates to one and add $OUT
125                 LOAD_TEMPLATE("admin_overview_header_task", false, array(
126                         'message' => $type,
127                         'type'    => REQUEST_GET('type')
128                 ));
129                 $OUT = ""; $SW = 2;
130                 while ($content = SQL_FETCHARRAY($result_tasks)) {
131                         // Init infos
132                         $content['infos'] = "---";
133
134                         // Generate link
135                         $content['assigned_admin'] = GENERATE_AID_LINK($content['assigned_admin']);
136
137                         // Get admin task
138                         $content['task_type_msg'] = getMessage('ADMIN_TASK_IS_'.strtoupper($content['task_type']).'');
139
140                         // Generate infos
141                         switch ($content['task_type'])
142                         {
143                         case "EXTENSION":
144                         case "EXTENSION_UPDATE":
145                                 $content['infos'] = substr($content['subject'], 1, strpos($content['subject'], ":") - 1);
146                                 break;
147                         }
148
149                         // Member assigned with task?
150                         if ($content['userid'] > 0) {
151                                 // Member found otherwise it's a system task
152                                 $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']);
153                         } else {
154                                 // Is a system task!
155                                 $content['userid'] = "<em>{--ADMIN_IS_SYSTEM_TASK--}</em>";
156                         }
157
158                         // Prepare content
159                         // @TODO Rewritings: admin->assigned_admin,uid->userid,type->task_type_msg in template
160                         $content = merge_array($content, array(
161                                 'sw'      => $SW,
162                                 'admin'   => $content['assigned_admin'],
163                                 'uid'     => $content['userid'],
164                                 'type'    => $content['task_type_msg'],
165                                 'created' => MAKE_DATETIME($content['task_created'], "2")
166                         ));
167
168                         // Do we have an extension task?
169                         if (($content['task_type'] == "EXTENSION") && (GET_EXT_VERSION($content['infos']) == "")) {
170                                 // Load extension row template
171                                 // @TODO Rewrite this to $OUT .= ..., true, ...
172                                 LOAD_TEMPLATE("admin_list_task_ext_rows", false, $content);
173                         } else {
174                                 // Load default row template
175                                 // @TODO Rewrite this to $OUT .= ..., true, ...
176                                 LOAD_TEMPLATE("admin_list_task_rows", false, $content);
177                         }
178
179                         // Switch colors
180                         $SW = 3 - $SW;
181                 }
182
183                 // Free memory
184                 SQL_FREERESULT($result_tasks);
185
186                 // Load footer template
187                 if (REQUEST_GET('type') == "deleted") {
188                         // Delete now button
189                         LOAD_TEMPLATE("admin_overview_footer_task");
190                 } else {
191                         // Normal footer
192                         LOAD_TEMPLATE("admin_overview_footer");
193                 }
194         }
195 }
196 //
197 ?>