wernis extension is now alpha code (only listing in admin area is missing), naming...
[mailer.git] / inc / extensions / ext-doubler.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/03/2005 *
4  * ================                             Last change: 02/03/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-doubler.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Double points                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Punkte verdoppeln                                *
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'])))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Version number
42 $EXT_VERSION = "0.1.6";
43
44 // Auto-set extension version
45 if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;
46
47 // Version history array (add more with , "0.1" and so on)
48 $EXT_VER_HISTORY = array("0.0", "0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6", "0.0.7", "0.0.8", "0.0.9", "0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6");
49
50 switch ($EXT_LOAD_MODE)
51 {
52 case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
53         // Doubler table
54         $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_doubler";
55         $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_doubler (
56 id bigint(20) not null auto_increment,
57 userid bigint(20) not null default '0',
58 refid bigint(20) not null default '0',
59 points double(20,5) not null default '0.00000',
60 remote_ip varchar(15) not null default '0.0.0.0',
61 timemark varchar(10) not null default '',
62 completed enum('Y', 'N') not null default 'N',
63 is_ref enum('Y', 'N') not null default 'N',
64 KEY(refid),
65 KEY(userid),
66 PRIMARY KEY(id)
67 )TYPE=MYISAM";
68
69         //
70         // --- SETTINGS ---
71         //
72         // Minimum points to double
73         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_min double(20,5) not null default '100.00000'";
74         // Maximum points to double
75         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_max double(20,5) not null default '10000.00000'";
76         // Points left on users account after doubling
77         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_left bigint(20) not null default '1000'";
78         // Charge for doubling points which goes to the webmaster (shreddered in fact!)
79         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_charge float(7,3) not null default '0.030'";
80         // Referral percents
81         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_ref float(7,3) not null default '0.020'";
82         // Shall I use the jackpot to take points from? (Y/N, default=Y)
83         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_jackpot enum('Y', 'N') not null default 'Y'";
84         // A user account to take points from (default: 0->none)
85         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_uid bigint(20) not null default '0'";
86         // Total payed out points from your doublers
87         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_points double(20,5) not null default '0.00000'";
88         // Sending mode of mails (immediately/daily reset)
89         // --> This also means who fast the doubled points will be payed out!
90         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_send_mode enum('DIRECT', 'RESET') not null default 'DIRECT'";
91         // Timeout for entries to be purged (default: one week)
92         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_timeout bigint(20) not null default '".(60*60*24*7)."'";
93         // Number of newest entries to display
94         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_new tinyint(3) not null default '10'";
95         // Number of entries which will be payed out soon
96         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_pay tinyint(3) not null default '10'";
97         // Number of entries which are already payed out
98         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_old tinyint(3) not null default '10'";
99         // Points used by every member
100         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD doubler_points double(20,5) not null default '0.00000'";
101         // Counter for usage of the doubler
102         $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_counter bigint(20) not null default '0'";
103
104         //
105         // --- MENU SYSTEMS ---
106         //
107         // Admin menu
108         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', '', '{!POINTS!}-Verdoppler', 'Einstellungen und Eintr&auml;ge auflisten.', 4)";
109         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', 'list_doubler', 'Auflisten', 'Eintr&auml;ge aus der Verdiensttabelle auflisten', 1)";
110         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', 'config_doubler', 'Einstellungen', 'Prozentuale Geb&uuml;hr usw. einstellen.', 2)";
111
112         // Guest menu (informations / default doubler link)
113         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_guest_menu (action, what, title, sort, visible, locked) VALUES ('main', 'doubler', 'Verdoppeln!', 3, 'Y', 'Y')";
114
115         // Member menu
116         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_member_menu (action, what, title, visible, locked, sort) VALUES ('main', 'doubler', 'Verdoppeln!', 'Y', 'Y', 7)";
117         break;
118
119 case "remove": // Do stuff when removing extension
120         // SQL commands to run
121         $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_doubler";
122         $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='doubler' LIMIT 3";
123         $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_guest_menu WHERE what='doubler' LIMIT 1";
124         $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_member_menu WHERE what='doubler' LIMIT 1";
125         break;
126
127 case "activate": // Do stuff when admin activates this extension
128         // SQL commands to run
129         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE what='doubler' LIMIT 1";
130         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='Y', locked='N' WHERE what='doubler' LIMIT 1";
131         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='N', hidden='N', admin_only='N', mem_only='N' WHERE module='doubler' LIMIT 1";
132         break;
133
134 case "deactivate": // Do stuff when admin deactivates this extension
135         // SQL commands to run
136         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='Y' WHERE what='doubler' LIMIT 1";
137         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='Y', locked='Y' WHERE what='doubler' LIMIT 1";
138         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='Y' WHERE module='doubler' LIMIT 1";
139         break;
140
141 case "update": // Update an extension
142         switch ($EXT_VER)
143         {
144         case "0.0.1": // SQL queries for v0.0.1
145                 // Update notes (these will be set as task text!)
146                 $UPDATE_NOTES = "Problem mit User-ID behoben!";
147                 break;
148
149         case "0.0.2": // SQL queries for v0.0.2
150                 // Total used points
151                 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_used double(20,5) not null default '0.00000'";
152
153                 // Update notes (these will be set as task text!)
154                 $UPDATE_NOTES = "Geb&uuml;hr wird vom Verdoppler-Pott abgezogen.";
155                 break;
156
157         case "0.0.3": // SQL queries for v0.0.3
158                 // Update notes (these will be set as task text!)
159                 $UPDATE_NOTES = "Drei SQL-Fehler beseitigt.";
160                 break;
161
162         case "0.0.4": // SQL queries for v0.0.4
163                 // Shall I use the doubler's account to take points from? (Y/N, default=Y)
164                 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_own enum('Y', 'N') not null default 'Y'";
165
166                 // Update notes (these will be set as task text!)
167                 $UPDATE_NOTES = POINTS."-Guthaben des Verdopplers kann optional nicht mit einbezogen werden.";
168                 break;
169
170         case "0.0.5": // SQL queries for v0.0.5
171                 // Update notes (these will be set as task text!)
172                 $UPDATE_NOTES = "Counter-Stand und noch zum Verdoppeln &uuml;brige {!POINTS!} in Templates eingebunden. Auflistung in Admin-Bereich komplettiert.";
173                 break;
174
175         case "0.0.6": // SQL queries for v0.0.6
176                 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_config SET doubler_used=doubler_used+(SUM(d.points)*c.doubler_charge)
177 FROM "._MYSQL_PREFIX."_doubler AS d, "._MYSQL_PREFIX."_config AS c
178 WHERE d.completed='N'";
179                 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_max_sent tinyint(4) not null default '1'";
180                 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_group_sent tinyint(4) not null default '1'";
181                 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_sent_all enum('Y', 'N') not null default 'Y'";
182
183                 // Update notes (these will be set as task text!)
184                 $UPDATE_NOTES = "Geb&uuml;hrenabzug wird beim Einzahlen abgezogen (wurde von Auszahlung abgezogen) und maximal bei Auszahlung zu kontrollierende Accounts einstellbar.<br>Template <u>admin_config_doubler_pro.tpl</u> ist &uuml;berfl&uuml;ssig geworden. Bitte l&ouml;schen Sie dies!";
185                 break;
186
187         case "0.0.7": // SQL queries for v0.0.7
188                 // Update notes (these will be set as task text!)
189                 $UPDATE_NOTES = "W&ouml;rter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.<br /><br />Minus-Guthaben des Verdoppler-Accounts repariert und Mitgliedsmail erweitert mit Transaktionsummer und IP-Nummer.";
190                 break;
191
192         case "0.0.8": // SQL queries for v0.0.8
193                 // Update notes (these will be set as task text!)
194                 $UPDATE_NOTES = "Bitte verschieben Sie die doubler-Templates (Ordner: ".PATH."/templates/".GET_LANGUAGE()."/html/) in den neuen Order doubler!";
195                 break;
196
197         case "0.0.9": // SQL queries for v0.0.9
198                 // Update notes (these will be set as task text!)
199                 $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
200                 break;
201
202         case "0.1.0": // SQL queries for v0.2.1
203                 // Update notes (these will be set as task text!)
204                 $UPDATE_NOTES = "Vorbereitung auf die neue Mediendaten v0.0.4.";
205                 break;
206
207         case "0.1.1": // SQL queries for v0.1.1
208                 // Update notes (these will be set as task text!)
209                 $UPDATE_NOTES = "Zwei SQL-Fehler in <STRONG>inc/doubler_send.php</STRONG> beseitigt.";
210                 break;
211
212         case "0.1.2": // SQL queries for v0.1.2
213                 // Update notes (these will be set as task text!)
214                 $UPDATE_NOTES = "Sicherheitsupdate f&uuml;r die Include-Befehle.";
215                 break;
216
217         case "0.1.3": // SQL queries for v0.1.3
218                 // Update notes (these will be set as task text!)
219                 $UPDATE_NOTES = "De-/Aktivieren des mit dieser Erweiterung verkn&uuml;pften Modules eingebunden.";
220                 break;
221
222         case "0.1.4": // SQL queries for v0.1.4
223                 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET action='extras', sort='4' WHERE what='doubler' LIMIT 1";
224
225                 // Update notes (these will be set as task text!)
226                 $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";
227                 break;
228
229         case "0.1.5": // SQL queries for v0.1.5
230                 // Update notes (these will be set as task text!)
231                 $UPDATE_NOTES = "Hash-Erstellung von <STRONG>md5()</STRONG> auf bessere Funktion <STRONG>generateHash()</STRONG> umgestellt.";
232                 break;
233
234         case "0.1.6": // SQL queries for v0.1.6
235                 // Update notes (these will be set as task text!)
236                 $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";
237                 break;
238         }
239         break;
240
241 default: // Do stuff when extension is loaded
242         $DUMMY = LOAD_CONFIG("0");
243         $_CONFIG['doubler_charge']      = $DUMMY['doubler_charge'];
244         $_CONFIG['doubler_jackpot']     = $DUMMY['doubler_jackpot'];
245         $_CONFIG['doubler_own']         = $DUMMY['doubler_own'];
246         $_CONFIG['doubler_uid']         = $DUMMY['doubler_uid'];
247         $_CONFIG['doubler_points']      = $DUMMY['doubler_points'];
248         $_CONFIG['doubler_used']        = $DUMMY['doubler_used'];
249         $_CONFIG['doubler_send_mode']   = $DUMMY['doubler_send_mode'];
250         $_CONFIG['doubler_timeout']     = $DUMMY['doubler_timeout'];
251         $_CONFIG['doubler_display_new'] = $DUMMY['doubler_display_new'];
252         $_CONFIG['doubler_display_pay'] = $DUMMY['doubler_display_pay'];
253         $_CONFIG['doubler_display_old'] = $DUMMY['doubler_display_old'];
254         $_CONFIG['doubler_ref']         = $DUMMY['doubler_ref'];
255         $_CONFIG['doubler_min']         = $DUMMY['doubler_min'];
256         $_CONFIG['doubler_max']         = $DUMMY['doubler_max'];
257         $_CONFIG['doubler_left']        = $DUMMY['doubler_left'];
258         $_CONFIG['doubler_counter']     = $DUMMY['doubler_counter'];
259         $_CONFIG['doubler_max_sent']    = $DUMMY['doubler_max_sent'];
260         $_CONFIG['doubler_group_sent']  = $DUMMY['doubler_group_sent'];
261         $_CONFIG['doubler_sent_all']    = $DUMMY['doubler_sent_all'];
262         unset($DUMMY);
263
264         if ((defined('__DAILY_RESET')) && ($_CONFIG['doubler_send_mode'] == "RESET"))
265         {
266                 // So let's check for points
267                 $INC_POOL[] = PATH."inc/doubler_send.php";
268         }
269         break;
270 }
271
272 // Language file prefix
273 $EXT_LANG_PREFIX = "doubler";
274
275 // Extension is always active?
276 $EXT_ALWAYS_ACTIVE = 'N';
277
278 //
279 ?>