More queries now depends on UNIX_TIMESTAMP() SQL function, wrong index in autopurge...
[mailer.git] / inc / modules / admin / what-list_rallyes.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 06/29/2004 *
4  * ================                             Last change: 02/11/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_rallyes.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : List existing rallyes                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bestehende Rallyes 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 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 if (empty($_GET['sub'])) $_GET['sub'] = "";
44 $MSG = "";
45
46 // Quick actions on a rallye
47 if (isset($_GET['rallye']))
48 {
49         // Activate / deactivate
50         $SQL = "";
51         if (isset($_GET['activate']))
52         {
53                 switch ($_GET['activate'])
54                 {
55                 case "1": // Activate
56                         $SQL = "UPDATE "._MYSQL_PREFIX."_rallye_data SET is_active='Y' WHERE id=%s AND is_active='N' LIMIT 1";
57                         break;
58
59                 case "0": // Deactivate
60                         $SQL = "UPDATE "._MYSQL_PREFIX."_rallye_data SET is_active='N' WHERE id=%s AND is_active='Y' LIMIT 1";
61                         break;
62                 }
63         }
64
65         // Automatic notification
66         if (isset($_GET['notify']))
67         {
68                 switch ($_GET['notify'])
69                 {
70                 case "1": // Activate
71                         $SQL = "UPDATE "._MYSQL_PREFIX."_rallye_data SET send_notify='Y' WHERE id=%s AND send_notify='N' LIMIT 1";
72                         break;
73
74                 case "0": // Deactivate
75                         $SQL = "UPDATE "._MYSQL_PREFIX."_rallye_data SET send_notify='N' WHERE id=%s AND send_notify='Y' LIMIT 1";
76                         break;
77                 }
78         }
79
80         // Automatic adding of new members
81         if (isset($_GET['auto']))
82         {
83                 switch ($_GET['auto'])
84                 {
85                 case "1": // Activate
86                         $SQL = "UPDATE "._MYSQL_PREFIX."_rallye_data SET auto_add_new_user='Y' WHERE id=%s AND auto_add_new_user='N' LIMIT 1";
87                         break;
88
89                 case "0": // Deactivate
90                         $SQL = "UPDATE "._MYSQL_PREFIX."_rallye_data SET auto_add_new_user='N' WHERE id=%s AND auto_add_new_user='Y' LIMIT 1";
91                         break;
92                 }
93         }
94
95         // Run SQL command
96         if (!empty($SQL))
97         {
98                 $result = SQL_QUERY_ESC($SQL, array(bigintval($_GET['rallye'])), __FILE__, __LINE__);
99         }
100 }
101  elseif (isset($_POST['remove']))
102 {
103         // Delete rallyes
104         $SEL = SELECTION_COUNT($_POST['sel']);
105         if ($SEL > 0)
106         {
107                 // Delete selected rallyes and all it's data
108                 foreach ($_POST['sel'] as $id => $sel)
109                 {
110                         // Remove selected rallye entirely...
111                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_rallye_data WHERE id=%s LIMIT 1",
112                          array(bigintval($id)), __FILE__, __LINE__);
113                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_rallye_prices WHERE rallye_id=%s",
114                          array(bigintval($id)), __FILE__, __LINE__);
115                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_rallye_users WHERE rallye_id=%s",
116                          array(bigintval($id)), __FILE__, __LINE__);
117                 }
118
119                 // Output message
120                 $MSG = RALLYE_DELETED;
121         }
122          else
123         {
124                 // No rallye selected to delete!
125                 $MSG = RALLYE_DELETE_NOTHING_SELECTED;
126         }
127 }
128  elseif (isset($_POST['change']))
129 {
130         // Change rallye
131         $SEL = SELECTION_COUNT($_POST['title']);
132         if ($SEL > 0)
133         {
134                 // Change selected rallyes and all it's data
135                 foreach ($_POST['title'] as $id => $title)
136                 {
137                         // Secure ID number
138                         $id = bigintval($id);
139
140                         // Generate timestamps
141                         $START = mktime($_POST['start_hour'][$id], $_POST['start_min'][$id], $_POST['start_sec'][$id], $_POST['start_month'][$id], $_POST['start_day'][$id], $_POST['start_year'][$id]);
142                         $END   = mktime($_POST['end_hour'][$id]  , $_POST['end_min'][$id]  , $_POST['end_sec'][$id]  , $_POST['end_month'][$id]  , $_POST['end_day'][$id]  , $_POST['end_year'][$id]  );
143
144                         // Update entry
145                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_rallye_data SET
146 title='%s',
147 descr='%s',
148 template='%s',
149 start_time='%s',
150 end_time='%s',
151 min_users='%s',
152 min_prices='%s'
153 WHERE id='".$id."' LIMIT 1",
154  array($title, $_POST['descr'][$id], $_POST['templ'][$id], bigintval($START), bigintval($END), bigintval($_POST['min_users'][$id]), bigintval($_POST['min_prices'][$id]), $id),
155  __FILE__, __LINE__);
156                 }
157
158                 // Output message
159                 $MSG = RALLYE_CHANGED;
160         }
161 }
162
163 if (isset($_POST['edit']))
164 {
165         // Check for selections
166         $SEL = SELECTION_COUNT($_POST['sel']);
167         if ($SEL > 0)
168         {
169                 // Make all selected and deactivated rallyes editable
170                 $SW = 2; $OUT = "";
171                 foreach ($_POST['sel'] as $id => $sel)
172                 {
173                         // Load rallye basic data
174                         $result = SQL_QUERY_ESC("SELECT title, descr, template, start_time, end_time, min_users, min_prices FROM "._MYSQL_PREFIX."_rallye_data WHERE id=%s LIMIT 1",
175                          array(bigintval($id)), __FILE__, __LINE__);
176                         list($title, $descr, $templ, $start, $end, $min_users, $min_prices) = SQL_FETCHROW($result);
177                         SQL_FREERESULT($result);
178
179                         // Starting day
180                         $content['s_sec']   = ADD_SELECTION("sec"  , date("s", $start), "start", $id);
181                         $content['s_min']   = ADD_SELECTION("min"  , date("i", $start), "start", $id);
182                         $content['s_hour']  = ADD_SELECTION("hour" , date("G", $start), "start", $id);
183                         $content['s_day']   = ADD_SELECTION("day"  , date("d", $start), "start", $id);
184                         $content['s_month'] = ADD_SELECTION("month", date("m", $start), "start", $id);
185                         $content['s_year']  = ADD_SELECTION("year" , date('Y', $start), "start", $id);
186
187                         // Ending day
188                         $content['e_sec']   = ADD_SELECTION("sec"  , date("s", $end)  , "end"  , $id);
189                         $content['e_min']   = ADD_SELECTION("min"  , date("i", $end)  , "end"  , $id);
190                         $content['e_hour']  = ADD_SELECTION("hour" , date("G", $end)  , "end"  , $id);
191                         $content['e_day']   = ADD_SELECTION("day"  , date("d", $end)  , "end"  , $id);
192                         $content['e_month'] = ADD_SELECTION("month", date("m", $end)  , "end"  , $id);
193                         $content['e_year']  = ADD_SELECTION("year" , date('Y', $end)  , "end"  , $id);
194
195                         // Remember over values
196                         $content['templ']      = RALLYE_TEMPLATE_SELECTION("templ[".$id."]", $templ);
197                         $content['sw']         = $SW;
198                         $content['id']         = $id;
199                         $content['title']      = $title;
200                         $content['descr']      = $descr;
201                         $content['min_users']  = $min_users;
202                         $content['min_prices'] = $min_prices;
203
204                         // Output row
205                         $OUT .= LOAD_TEMPLATE("admin_edit_rallyes_row", true, $content);
206
207                         // Color switching
208                         $SW = 3 - $SW;
209                 }
210                 // Remember rows in constant
211                 define('__RALLYE_ROWS', $OUT);
212
213                 // Load final template
214                 LOAD_TEMPLATE("admin_edit_rallyes");
215         }
216          else
217         {
218                 // Nothing selected to edit
219                 LOAD_TEMPLATE("admin_settings_saved", false, LOAD_TEMPLATE("admin_list_rallye_noselect", true));
220         }
221 }
222  elseif (($_GET['sub'] == "users") && ($_GET['rallye'] > 0))
223 {
224         // List users and their refs before start and current
225         $result = SQL_QUERY_ESC("SELECT userid, refs, curr_points FROM "._MYSQL_PREFIX."_rallye_users WHERE rallye_id=%s ORDER BY userid",
226          array(bigintval($_GET['rallye'])), __FILE__, __LINE__);
227         if (SQL_NUMROWS($result) > 0)
228         {
229                 $SW = 2; $OUT = "";
230                 define('__RALLYE_VALUE', $_GET['rallye']);
231                 while (list($uid, $old, $opoints) = SQL_FETCHROW($result))
232                 {
233                         // Check for referral count
234                         $cnt = RALLYE_GET_REFCOUNT($uid, $old);
235
236                         // Output row
237                         $Bl = ""; $Br = "";
238                         if (($opoints > 0) && ($cnt > 0)) { $Bl = "<STRONG>"; $Br = "</STRONG>"; }
239                         if (($old > 0) || ($cnt > 0))
240                         {
241                                 // Insert link to referral list
242                                 //* DEBUG: */ echo "-".$uid."/".$cnt."/".$old."-<br />";
243                                 $cnt = ADMIN_USER_PROFILE_LINK($uid, $cnt, "list_refs");
244                                 $old = ADMIN_USER_PROFILE_LINK($uid, $old, "list_refs");
245                         }
246                         $content = array(
247                                 'sw'      => $SW ,
248                                 'uid'     => $uid,
249                                 'bold_l'  => $Bl ,
250                                 'bold_r'  => $Br ,
251                                 'old'     => $old,
252                                 'cnt'     => $cnt,
253                                 'opoints' => TRANSLATE_COMMA($opoints),
254                         );
255                         $OUT .= LOAD_TEMPLATE("admin_list_rallye_usr_row", true, $content);
256                         $SW = 3 - $SW;
257                 }
258
259                 // Free memory
260                 SQL_FREERESULT($result);
261                 define('__RALLYE_USER_ROWS', $OUT);
262
263                 // Load template
264                 LOAD_TEMPLATE("admin_list_rallye_usr");
265         }
266          else
267         {
268                 // No entries found?
269                 LOAD_TEMPLATE("admin_settings_saved", false, RALLYE_ADMIN_USERS_404);
270         }
271 }
272  else
273 {
274         // Start listing rallyes
275         $result = SQL_QUERY("SELECT id, admin_id, title, descr, template, start_time, end_time, auto_add_new_user, is_active, send_notify, notified, min_users, min_prices
276 FROM "._MYSQL_PREFIX."_rallye_data
277 ORDER BY start_time DESC",
278  __FILE__, __LINE__);
279         if (SQL_NUMROWS($result) > 0)
280         {
281                 // List found rallyes
282                 $SW = 2; $OUT = "";
283                 while (list($id, $aid, $title, $descr, $templ, $start, $end, $auto_add, $active, $notify, $notified, $min_users, $min_prices) = SQL_FETCHROW($result))
284                 {
285                         // Load admin login
286                         $alogin = GET_ADMIN_LOGIN($aid);
287
288                         // Count assigned prices
289                         $result_prices = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_rallye_prices WHERE rallye_id=%s",
290                          array(bigintval($id)), __FILE__, __LINE__);
291
292                         // Count joined userids
293                         $result_user = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_rallye_users WHERE rallye_id=%s",
294                          array($id), __FILE__, __LINE__);
295                         $joined = SQL_NUMROWS($result_user);
296
297                         // Did some users joined this rallye?
298                         if ($joined > 0)
299                         {
300                                 // List joined users
301                                 $joined = "<A href=\"".URL."/modules.php?module=admin&amp;what=list_rallyes&amp;sub=users&amp;rallye=".$id."\" title=\"".RALLYE_LIST_USERS."\">".$joined."</A>";
302                         }
303
304                         // Alter some variables
305                         if (empty($alogin)) $alogin = "???";
306                         if (empty($templ))  $templ  = "---";
307                         if (empty($descr))  $descr  = "---";
308
309                         // Transfer data into array for the template
310                         $content = array(
311                                 'select'     => "<INPUT type=\"checkbox\" name=\"sel[".$id."]\" class=\"admin_normal\" value=\"1\">",
312                                 'aid'        => $aid,
313                                 'email_link' => CREATE_EMAIL_LINK($aid),
314                                 'alogin'     => $alogin,
315                                 'id'         => $id,
316                                 'sw'         => $SW,
317                                 'title'      => $title,
318                                 'template'   => $templ,
319                                 'joined'     => $joined,
320                                 'start_date' => MAKE_DATETIME($start, "2"),
321                                 'end_date'   => MAKE_DATETIME($end  , "2"),
322                                 'active_lnk' => TRANSLATE_YESNO($active),
323                                 'notify_lnk' => TRANSLATE_YESNO($notify),
324                                 'auto_lnk'   => TRANSLATE_YESNO($auto_add),
325                                 'notified'   => TRANSLATE_YESNO($notified),
326                                 'prices_cnt' => SQL_NUMROWS($result_prices),
327                                 'descr'      => COMPILE_CODE($descr),
328                                 'min_users'  => $min_users,
329                                 'min_prices' => $min_prices,
330                         );
331
332                         // Free memory
333                         SQL_FREERESULT($result_prices);
334                         SQL_FREERESULT($result_user);
335
336                         // Is the rallye active or not?
337                         switch ($active)
338                         {
339                         case 'Y':
340                                 // Rallye is active so do not edit it!
341                                 $content['select'] = "<STRONG class=\"big\">".$id."</STRONG>";
342                                 $content['active_title'] = RALLYE_DEACTIVATE_NOW;
343                                 $content['active'] = 0;
344                                 break;
345
346                         case 'N':
347                                 $content['active_title'] = RALLYE_ACTIVATE_NOW;
348                                 $content['active'] = "1";
349                                 break;
350                         }
351
352                         // Notification to members?
353                         switch ($notify)
354                         {
355                         case 'Y':
356                                 $content['notify_title'] = RALLYE_STOP_NOTIFY_NOW;
357                                 $content['notify'] = 0;
358                                 break;
359
360                         case 'N':
361                                 $content['notify_title'] = RALLYE_START_NOTIFY_NOW;
362                                 $content['notify'] = "1";
363                                 break;
364                         }
365
366                         // Auto-add of new joined members?
367                         switch ($auto_add)
368                         {
369                         case 'Y':
370                                 $content['auto_title'] = RALLYE_STOP_AUTO_ADD_NOW;
371                                 $content['auto'] = 0;
372                                 break;
373
374                         case 'N':
375                                 $content['auto_title'] = RALLYE_START_AUTO_ADD_NOW;
376                                 $content['auto'] = "1";
377                                 break;
378                         }
379
380                         // Output row
381                         $OUT .= LOAD_TEMPLATE("admin_list_rallyes_row", true, $content);
382                         $SW = 3 - $SW;
383                 }
384
385                 // Free memory
386                 SQL_FREERESULT($result);
387                 define('__RALLYE_ROWS', $OUT);
388
389                 // Load template
390                 LOAD_TEMPLATE("admin_list_rallyes");
391         }
392          else
393         {
394                 // No rallyes setup so far
395                 LOAD_TEMPLATE("admin_settings_saved", false, RALLYE_NO_RALLYES_SETUP);
396         }
397 }
398 //
399 ?>