- Login failtures now counted and displayed after login in admin/member area
[mailer.git] / inc / modules / admin / what-config_points.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/12/2003 *
4  * ===============                              Last change: 12/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_points.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Setup welcome-points for registration etc.       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Einstellen der Willkommensgutschrift usw.        *
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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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']))
44 {
45         switch ($_GET['sub'])
46         {
47         case "points":
48                 if ((empty($_POST['points_register'])) || (empty($_POST['points_ref'])))
49                 {
50                         unset($_POST['ok']);
51                 }
52                 break;
53
54         case "ref":
55                 if (isset($_GET['do']))
56                 {
57                         if (((empty($_POST['lvl'])) || (empty($_POST['perc']))) && ($_GET['do'] == "add"))
58                         {
59                                 unset($_POST['ok']);
60                         }
61                 }
62                 break;
63         }
64 }
65  else
66 {
67         // Display overview
68         $_GET['sub'] = "overview";
69 }
70
71 if (isset($_POST['ok']))
72 {
73         $SQL = array();
74         switch ($_GET['sub'])
75         {
76         case "points":
77                 $SQL[] = "UPDATE "._MYSQL_PREFIX."_config SET points_register='".$_POST['points_register']."', points_ref='".$_POST['points_ref']."' WHERE config=0 LIMIT 1";
78                 break;
79
80         case "ref":
81                 switch ($_GET['do'])
82                 {
83                 case "add":
84                         $SQL[] = "INSERT INTO "._MYSQL_PREFIX."_refdepths (level, percents) VALUES ('".$_POST['lvl']."', '".$_POST['perc']."')";
85                         break;
86
87                 case "edit": // Change entries
88                         foreach ($_POST['lvl'] as $id => $value)
89                         {
90                                 // Secure ID
91                                 $id = bigintval($id);
92
93                                 // Update entry
94                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refdepths SET level='%s', percents='%s' WHERE id=%s LIMIT 1",
95                                  array(bigintval($value), $_POST['perc'][$id], $id), __FILE__, __LINE__);
96                         }
97                         $TEXT = REF_DEPTHS_SAVED;
98                         break;
99
100                 case "del":
101                         foreach ($_POST['id'] as $id => $value)
102                         {
103                                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1",
104                                  array(bigintval($id)), __FILE__, __LINE__);
105                         }
106                         $TEXT = REF_DEPTHS_DELETED;
107                         break;
108                 }
109
110                 // Update cache file
111                 if (GET_EXT_VERSION("cache") >= "0.1.2")
112                 {
113                         if ($cacheInstance->cache_file("refdepths", true)) $cacheInstance->cache_destroy();
114                 }
115                 break;
116
117         case "settings":
118                 $REF = bigintval($_POST['ref_payout']);
119                 $SQL[] = sprintf("UPDATE "._MYSQL_PREFIX."_config SET
120 allow_direct_pay='%s',
121 reg_points_mode='%s',
122 ref_payout='%s'
123 WHERE config=0 LIMIT 1",
124  $_POST['allow_direct_pay'],
125  $_POST['reg_points_mode'],
126  $REF
127                 );
128                 if (($_CONFIG['ref_payout'] == 0) && ($_POST['ref_payout'] > 0))
129                 {
130                         // Update account's ref_payout for "must-confirm"
131                         $SQL[] = sprintf("UPDATE "._MYSQL_PREFIX."_user_data SET ref_payout=(%s - mails_confirmed)
132 WHERE mails_confirmed < %s", $REF, $REF);
133                 }
134                  elseif (($_CONFIG['ref_payout'] > 0) && ($_POST['ref_payout'] == 0))
135                 {
136                         // Update account's ref_payout for "not-must-confirm"
137                         $SQL[] = "UPDATE "._MYSQL_PREFIX."_user_data SET ref_payout=0 WHERE ref_payout > 0";
138                         $SQL[] = "UPDATE "._MYSQL_PREFIX."_user_points SET points=points+locked_points WHERE locked_points>0";
139                         $SQL[] = "UPDATE "._MYSQL_PREFIX."_user_points SET locked_points=0 WHERE locked_points>0";
140                 }
141                 break;
142         }
143         if ((isset($SQL)) && (is_array($SQL)) && (!empty($SQL[0])))
144         {
145                 if (strpos($SQL[0], "INSERT") > -1)
146                 {
147                         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_refdepths WHERE level='%s' LIMIT 1",
148                          array(bigintval($_POST['lvl'])), __FILE__, __LINE__);
149                         SQL_FREERESULT($result);
150                 }
151                 if (count($SQL) > 0)
152                 {
153                         // Run all SQL commands
154                         foreach ($SQL as $s)
155                         {
156                                 $result = SQL_QUERY($s, __FILE__, __LINE__);
157                         }
158
159                         $content = "<SPAN class=\"admin_done\">".SETTINGS_SAVED."</SPAN>";
160
161                         // Destroy config cache file here...
162                         REBUILD_CACHE("config", "config");
163                 }
164                  else
165                 {
166                         $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";
167                 }
168                 unset($SQL);
169                 LOAD_TEMPLATE("admin_settings_saved", false, $content);
170         }
171          elseif (isset($TEXT))
172         {
173                 LOAD_TEMPLATE("admin_settings_saved", false, $TEXT);
174         }
175 }
176  elseif ($_GET['sub'] == "settings")
177 {
178         // Setup some settings like direct pay and so on
179         // Including new add-mode for one-time referral bonus
180         switch ($_CONFIG['allow_direct_pay'])
181         {
182         case 'Y':
183                 define('__DIRECT_Y', ' checked');
184                 define('__DIRECT_N', "");
185                 break;
186
187         case 'N':
188                 define('__DIRECT_Y', "");
189                 define('__DIRECT_N', ' checked');
190                 break;
191         }
192
193         // One-time referral bonus add-mode
194         switch ($_CONFIG['reg_points_mode'])
195         {
196                 case "ref"   : define('__MODE_REF', ' checked'); define('__MODE_DIRECT', "");         break;
197                 case "direct": define('__MODE_REF', "");         define('__MODE_DIRECT', ' checked'); break;
198         }
199
200         // Referral payout value
201         define('__REF_PAYOUT', round($_CONFIG['ref_payout']));
202
203         // Load template
204         LOAD_TEMPLATE("admin_config_point_settings");
205 }
206  elseif ($_GET['sub'] == "ref")
207 {
208          if ((isset($_POST['del'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))
209         {
210                 // Delete entries
211                 $SW = 2; $OUT = "";
212                 foreach ($_POST['sel'] as $id => $value)
213                 {
214                         $result = SQL_QUERY_ESC("SELECT level, percents FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1",
215                          array(bigintval($id)), __FILE__, __LINE__);
216                         list($lvl, $perc) = SQL_FETCHROW($result);
217                         SQL_FREERESULT($result);
218
219                         // Prepare data for the row template
220                         $content = array(
221                                 'sw'  => $SW,
222                                 'id'  => $id,
223                                 'lvl' => $lvl,
224                                 'per' => $perc,
225                         );
226
227                         // Load row template and switch color
228                         $OUT .= LOAD_TEMPLATE("admin_points_del_row", true, $content);
229                         $SW = 3 - $SW;
230                 }
231                 define('__LEVEL_ROWS', $OUT);
232
233                 // Load main template
234                 LOAD_TEMPLATE("admin_points_del");
235         }
236          elseif ((isset($_POST['edit'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))
237         {
238                 // Edit entries
239                 $SW = 2; $OUT = "";
240                 foreach ($_POST['sel'] as $id => $value)
241                 {
242                         $result = SQL_QUERY_ESC("SELECT level, percents FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1",
243                          array(bigintval($id)), __FILE__, __LINE__);
244                         list($lvl, $perc) = SQL_FETCHROW($result);
245                         SQL_FREERESULT($result);
246
247                         // Prepare data for the row template
248                         $content = array(
249                                 'sw'  => $SW,
250                                 'id'  => $id,
251                                 'lvl' => $lvl,
252                                 'per' => $perc,
253                         );
254
255                         // Load row template and switch color
256                         $OUT .= LOAD_TEMPLATE("admin_points_edit_row", true, $content);
257                         $SW = 3 - $SW;
258                 }
259                 define('__LEVEL_ROWS', $OUT);
260
261                 // Load main template
262                 LOAD_TEMPLATE("admin_points_edit");
263         }
264          else
265         {
266                 // Referral levels
267                 $result = SQL_QUERY("SELECT id, level, percents FROM "._MYSQL_PREFIX."_refdepths ORDER BY level", __FILE__, __LINE__);
268                 if (SQL_NUMROWS($result) > 0)
269                 {
270                         // Make referral levels editable and deletable
271                         $SW = 2; $OUT = "";
272
273                         // List already existing categories for editing
274                         while (list($id, $lvl, $perc) = SQL_FETCHROW($result))
275                         {
276                                 // Prepare data for the row template
277                                 $content = array(
278                                         'sw'  => $SW,
279                                         'id'  => $id,
280                                         'lvl' => $lvl,
281                                         'per' => $perc,
282                                 );
283
284                                 // Load row template and switch color
285                                 $OUT .= LOAD_TEMPLATE("admin_points_row", true, $content);
286                                 $SW = 3 - $SW;
287                         }
288
289                         // Free memory
290                         SQL_FREERESULT($result);
291                         define('__LEVEL_ROWS', $OUT);
292
293                         // Load main template
294                         LOAD_TEMPLATE("admin_points");
295                 }
296
297                 // Form for adding new referral levels
298                 LOAD_TEMPLATE("admin_add_reflvl");
299         }
300 }
301  elseif ($_GET['sub'] == "points")
302 {
303         // First points for registration and other fixed points including new add-mode for one-time referral bonus...
304         define('P_REG_VALUE', $_CONFIG['points_register']);
305         define('P_REF_VALUE', $_CONFIG['points_ref']);
306
307         // Load templates
308         LOAD_TEMPLATE("admin_config_sub_points");
309 }
310  else
311 {
312         // Display selection box
313         LOAD_TEMPLATE("admin_config_points");
314 }
315
316 //
317 ?>