fef5dfb8840c067e4d4637a392e8a4b890792d49
[mailer.git] / unsupported / affiliblatt / inc / extensions / ext-affiliblatt.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/27/2008 *
4  * ================                             Last change: 08/27/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-affliliblatt.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Extension for contacting the API of AffiliBlatt  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Erweitertung zur Anbindung an die API von        *
12  *                     AffiliBlatt                                      *
13  * -------------------------------------------------------------------- *
14  *                                                                      *
15  * -------------------------------------------------------------------- *
16  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
17  * For more information visit: http://www.mxchange.org                  *
18  *                                                                      *
19  * This program is free software; you can redistribute it and/or modify *
20  * it under the terms of the GNU General Public License as published by *
21  * the Free Software Foundation; either version 2 of the License, or    *
22  * (at your option) any later version.                                  *
23  *                                                                      *
24  * This program is distributed in the hope that it will be useful,      *
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
27  * GNU General Public License for more details.                         *
28  *                                                                      *
29  * You should have received a copy of the GNU General Public License    *
30  * along with this program; if not, write to the Free Software          *
31  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
32  * MA  02110-1301  USA                                                  *
33  ************************************************************************/
34
35 // Some security stuff...
36 if (!defined('__SECURITY')) {
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.0";
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");
49
50 switch ($EXT_LOAD_MODE)
51 {
52 case "register": // Do stuff when installation is running (modules.php?module=admin&action=login is called)
53         // SQL commands to run
54         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_id` BIGINT(20) NOT NULL DEFAULT 0";
55         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_sid` BIGINT(20) NOT NULL DEFAULT 0";
56         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_passwd` VARCHAR(255) NOT NULL DEFAULT ''";
57         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_erotic_allowed` TINYINT(2) NOT NULL DEFAULT 0";
58         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_tm_max_reload` SMALLINT(6) NOT NULL DEFAULT ".(24 * 8)."";
59         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_tm_min_wait` SMALLINT(6) NOT NULL DEFAULT 60";
60         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_tm_clicks_remain` INT(7) NOT NULL DEFAULT 1000";
61         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_tm_min_pay` FLOAT(20,5) NOT NULL DEFAULT 0.00000";
62         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_requests_total` SMALLINT(6) NOT NULL DEFAULT 200";
63         $SQLs[] = "ALTER TABLE `"._MYSQL_PREFIX."_config` ADD `affliliblatt_requests_remain` SMALLINT(6) NOT NULL DEFAULT 200";
64
65         // Admin menu
66         $SQLs[] = "INSERT INTO `"._MYSQL_PREFIX."_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_affliliblatt','AffiliBlatt Interface 2.0','Einstellungen zum AffiliBlatt Interface 2.0, wie User-ID, Interface-Passwort und vieles mehr.',17)";
67         $SQLs[] = "INSERT INTO `"._MYSQL_PREFIX."_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('email','list_affliliblatt_tm','AffiliBlatt Textmails','Listet Textmail-Buchungen &uuml;ber das Interface 2.0 von AffiliBlatt nach Ihren eingestellten Kriterien auf. <strong>Vorsicht:</strong> Jede Aktualisierung dieser Liste kostet Ihnen eine Abfrage!',10)";
68
69         // Reload lock table
70         $SQLs[] = "DROP TABLE IF EXISTS `"._MYSQL_PREFIX."_affliliblatt_reload`";
71         $SQLs[] = "CREATE TABLE `"._MYSQL_PREFIX."_affliliblatt_reload` (
72 `id` BIGINT(20) NOT NULL AUTO_INCREMENT,
73 `type` VARCHAR(255) NOT NULL DEFAULT 'general',
74 `y_id` BIGINT(20) NOT NULL DEFAULT 0,
75 `y_reload` SMALLINT(6) NOT NULL DEFAULT 0,
76 `inserted` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
77 PRIMARY KEY (`id`),
78 UNIQUE `y_type` (`type`,`y_id`)
79 ) TYPE=MyISAM COMMENT='Reload lock reminder for AffiliBlatt campaigns'";
80         break;
81
82 case "remove": // Do stuff when removing extension
83         // SQL commands to run
84         $SQLs[] = "DELETE LOW_PRIORITY FROM `"._MYSQL_PREFIX."_admin_menu` WHERE `what` IN('config_affliliblatt','list_affliliblatt_tm') LIMIT 2";
85         $SQLs[] = "DROP TABLE IF EXISTS `"._MYSQL_PREFIX."_affliliblatt_reload`";
86         break;
87
88 case "activate": // Do stuff when admin activates this extension
89         // SQL commands to run
90         break;
91
92 case "deactivate": // Do stuff when admin deactivates this extension
93         // SQL commands to run
94         break;
95
96 case "update": // Update an extension
97         switch ($EXT_VER)
98         {
99         case "0.0.1": // SQL queries for v0.0.1
100                 $SQLs[] = "";
101
102                 // Update notes (these will be set as task text!)
103                 $UPDATE_NOTES = "";
104                 break;
105         }
106         break;
107
108 default: // Do stuff when extension is loaded
109         // The translation table
110         $affliliblattTranslationTable = array(
111                 // Error messages
112                 'error_codes' => array(
113                         1  => 'wrong_pass',
114                         2  => 'wrong_sid',
115                         3  => 'website_locked',
116                         4  => 'api_data_error',
117                         5  => 'requests_depleted',
118                         6  => 'zero_result',
119                         10 => 'incomplete_request'
120                 ),
121                 // For text mails
122                 'textmail' => array(
123                         0 => 'id',
124                         1 => 'name',
125                         2 => 'reload',
126                         3 => 'wait',
127                         4 => 'remain',
128                         5 => 'pay',
129                         6 => 'text'
130                 )
131         );
132         break;
133 }
134
135 // Language file prefix
136 $EXT_LANG_PREFIX = "affliliblatt";
137
138 // Keep this extension always active!
139 $EXT_ALWAYS_ACTIVE = "Y";
140
141 //
142 ?>