f6fa31bbfa8ec9f7bf1e45c1b6387c47b5fa9926
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
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.                                  *
27  *                                                                      *
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.                         *
32  *                                                                      *
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,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 }
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 // Init variables
49 $message = '';
50
51 // Is the 'sub' parameter set?
52 if (REQUEST_ISSET_GET('sub')) {
53         // Yes, then do some sanity-checks
54         switch (REQUEST_GET('sub'))
55         {
56         case "points":
57                 if ((!REQUEST_ISSET_POST(('points_register'))) || (!REQUEST_ISSET_POST(('points_ref')))) {
58                         REQUEST_UNSET_POST('ok');
59                 }
60                 break;
61
62         case "ref":
63                 if (REQUEST_ISSET_GET('do')) {
64                         if (((!REQUEST_ISSET_POST(('lvl'))) || (!REQUEST_ISSET_POST(('perc')))) && (REQUEST_GET('do') == 'add')) {
65                                 REQUEST_UNSET_POST('ok');
66                         }
67                 }
68                 break;
69         }
70 } else {
71         // Display overview
72         REQUEST_SET_GET('sub', "overview");
73 }
74
75 if (IS_FORM_SENT()) {
76         INIT_SQLS();
77         switch (REQUEST_GET('sub'))
78         {
79         case "points":
80                 ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_config` SET points_register='".REQUEST_POST('points_register')."', points_ref='".REQUEST_POST('points_ref')."' WHERE config=0 LIMIT 1");
81                 break;
82
83         case "ref":
84                 switch (REQUEST_GET('do'))
85                 {
86                 case 'add':
87                         ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_refdepths` (level, percents) VALUES ('".REQUEST_POST('lvl')."','".REQUEST_POST('perc')."')");
88                         break;
89
90                 case "edit": // Change entries
91                         foreach (REQUEST_POST('lvl') as $id => $value) {
92                                 // Secure ID
93                                 $id = bigintval($id);
94
95                                 // Revert german commata
96                                 REQUEST_SET_POST(array('perc', $id), REVERT_COMMA(REQUEST_POST('perc', $id)));
97
98                                 // Update entry
99                                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_refdepths` SET level='%s', percents='%s' WHERE id=%s LIMIT 1",
100                                         array(bigintval($value), REQUEST_POST('perc', $id), $id), __FILE__, __LINE__);
101                         }
102                         $message = getMessage('REF_DEPTHS_SAVED');
103                         break;
104
105                 case "del":
106                         foreach (REQUEST_POST('id') as $id => $value) {
107                                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE id=%s LIMIT 1",
108                                         array(bigintval($id)), __FILE__, __LINE__);
109                         }
110                         $message = getMessage('REF_DEPTHS_DELETED');
111                         break;
112                 }
113
114                 // Update cache file
115                 if (GET_EXT_VERSION('cache') >= '0.1.2') {
116                         if ($GLOBALS['cache_instance']->loadCacheFile("refdepths")) $GLOBALS['cache_instance']->destroyCacheFile();
117                 }
118                 break;
119
120         case "settings":
121                 $REF = bigintval(REQUEST_POST('ref_payout'));
122                 ADD_SQL(sprintf("UPDATE `{!_MYSQL_PREFIX!}_config` SET
123 allow_direct_pay='%s',
124 reg_points_mode='%s',
125 ref_payout='%s'
126 WHERE config=0 LIMIT 1",
127                         REQUEST_POST('allow_direct_pay'),
128                         REQUEST_POST('reg_points_mode'),
129                         $REF
130                 ));
131                 if ((getConfig('ref_payout') == 0) && (REQUEST_POST('ref_payout') > 0)) {
132                         // Update account's ref_payout for "must-confirm"
133                         ADD_SQL(sprintf("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET ref_payout=(%s - mails_confirmed)
134 WHERE mails_confirmed < %s", $REF, $REF));
135                 } elseif ((getConfig('ref_payout') > 0) && (REQUEST_POST('ref_payout') == 0)) {
136                         // Update account's ref_payout for "not-must-confirm"
137                         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET ref_payout=0 WHERE ref_payout > 0");
138                         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET points=points+locked_points WHERE locked_points>0");
139                         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET locked_points=0 WHERE locked_points>0");
140                 }
141                 break;
142         }
143
144         if ((IS_SQLS_VALID()) && (IS_SQLS_VALID())) {
145                 if (strpos($GLOBALS['sqls'][0], "INSERT") > -1) {
146                         $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE level='%s' LIMIT 1",
147                                 array(bigintval(REQUEST_POST('lvl'))), __FILE__, __LINE__);
148                         SQL_FREERESULT($result);
149                 } // END - if
150
151                 if (COUNT_SQLS() > 0) {
152                         // Run all SQL commands
153                         runFilterChain('run_sqls');
154
155                         // Entry saved...
156                         $message = getMessage('SETTINGS_SAVED');
157
158                         // Destroy config cache file here...
159                         rebuildCacheFiles("config", "config");
160                 } else {
161                         // Prepare failed-message
162                         $message = "<span class=\"admin_failed\">{--SETTINGS_NOT_SAVED--}</span>";
163                 }
164
165                 // Remove SQL queries
166                 UNSET_SQLS();
167         }
168
169         // Shall we display a message?
170         if (!empty($message)) {
171                 // When do so...
172                 LOAD_TEMPLATE('admin_settings_saved', false, $message);
173         }
174 } elseif (REQUEST_GET('sub') == "settings") {
175         // Setup some settings like direct pay and so on
176         // Including new add-mode for one-time referal bonus
177         switch (getConfig('allow_direct_pay')) {
178         case 'Y':
179                 define('__DIRECT_Y', ' chkecked="checked"');
180                 define('__DIRECT_N', '');
181                 break;
182
183         case 'N':
184                 define('__DIRECT_Y', '');
185                 define('__DIRECT_N', ' chkecked="checked"');
186                 break;
187         }
188
189         // One-time referal bonus add-mode
190         switch (getConfig('reg_points_mode')) {
191                 case "ref"   : define('__MODE_REF', ' chkecked="checked"'); define('__MODE_DIRECT', '');         break;
192                 case "direct": define('__MODE_REF', '');         define('__MODE_DIRECT', ' chkecked="checked"'); break;
193         }
194
195         // Referal payout value
196         define('__REF_PAYOUT', round(getConfig('ref_payout')));
197
198         // Load template
199         LOAD_TEMPLATE("admin_config_point_settings");
200 } elseif (REQUEST_GET('sub') == "ref") {
201         // 12                  3     32    2                  3     32    2               3            4     43    21
202         if ((REQUEST_ISSET_POST('del')) && (REQUEST_ISSET_POST('sel')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
203                 // Delete entries
204                 $OUT = ''; $SW = 2;
205                 foreach (REQUEST_POST('sel') as $id => $value) {
206                         $result = SQL_QUERY_ESC("SELECT level, percents FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE id=%s LIMIT 1",
207                                 array(bigintval($id)), __FILE__, __LINE__);
208                         list($lvl, $perc) = SQL_FETCHROW($result);
209                         SQL_FREERESULT($result);
210
211                         // Prepare data for the row template
212                         $content = array(
213                                 'sw'  => $SW,
214                                 'id'  => $id,
215                                 'lvl' => $lvl,
216                                 'per' => TRANSLATE_COMMA($perc),
217                         );
218
219                         // Load row template and switch color
220                         $OUT .= LOAD_TEMPLATE("admin_points_del_row", true, $content);
221                         $SW = 3 - $SW;
222                 }
223                 define('__LEVEL_ROWS', $OUT);
224
225                 // Load main template
226                 LOAD_TEMPLATE("admin_points_del");
227         } elseif ((REQUEST_ISSET_POST('edit')) && (REQUEST_ISSET_POST('sel')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
228                 // Edit entries
229                 $OUT = ''; $SW = 2;
230                 foreach (REQUEST_POST('sel') as $id => $value) {
231                         $result = SQL_QUERY_ESC("SELECT level, percents FROM `{!_MYSQL_PREFIX!}_refdepths` WHERE id=%s LIMIT 1",
232                          array(bigintval($id)), __FILE__, __LINE__);
233                         list($lvl, $perc) = SQL_FETCHROW($result);
234                         SQL_FREERESULT($result);
235
236                         // Prepare data for the row template
237                         $content = array(
238                                 'sw'  => $SW,
239                                 'id'  => $id,
240                                 'lvl' => $lvl,
241                                 'per' => TRANSLATE_COMMA($perc),
242                         );
243
244                         // Load row template and switch color
245                         $OUT .= LOAD_TEMPLATE("admin_points_edit_row", true, $content);
246                         $SW = 3 - $SW;
247                 }
248                 define('__LEVEL_ROWS', $OUT);
249
250                 // Load main template
251                 LOAD_TEMPLATE("admin_points_edit");
252         } else {
253                 // Referal levels
254                 $result = SQL_QUERY("SELECT id, level, percents FROM `{!_MYSQL_PREFIX!}_refdepths` ORDER BY level", __FILE__, __LINE__);
255                 if (SQL_NUMROWS($result) > 0) {
256                         // Make referal levels editable and deletable
257                         $OUT = ''; $SW = 2;
258
259                         // List already existing categories for editing
260                         while ($content = SQL_FETCHARRAY($result)) {
261                                 // Prepare data for the row template
262                                 // @TODO Rewritings: lvl->level, per->percents in template
263                                 $content = array(
264                                         'sw'  => $SW,
265                                         'id'  => $content['id'],
266                                         'lvl' => $content['level'],
267                                         'per' => TRANSLATE_COMMA($content['percents']),
268                                 );
269
270                                 // Load row template and switch color
271                                 $OUT .= LOAD_TEMPLATE("admin_points_row", true, $content);
272                                 $SW = 3 - $SW;
273                         }
274
275                         // Free memory
276                         SQL_FREERESULT($result);
277                         define('__LEVEL_ROWS', $OUT);
278
279                         // Load main template
280                         LOAD_TEMPLATE("admin_points");
281                 }
282
283                 // Form for adding new referal levels
284                 LOAD_TEMPLATE("admin_add_reflvl");
285         }
286 } elseif (REQUEST_GET('sub') == "points") {
287         // First points for registration and other fixed points including new add-mode for one-time referal bonus...
288         define('P_REG_VALUE', getConfig('points_register'));
289         define('P_REF_VALUE', getConfig('points_ref'));
290
291         // Load templates
292         LOAD_TEMPLATE("admin_config_sub_points");
293 } else {
294         // Display selection box
295         LOAD_TEMPLATE("admin_config_points");
296 }
297
298 //
299 ?>