* Member template added for the surfbar which notifies the user that the URL is
[mailer.git] / inc / modules / admin / what-unlock_emails.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 07/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-unlock_emails.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Unlock ordered emails                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Werbebuchungen freigeben                         *
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 // Define some variables
44 global $DATA, $link;
45
46 // Check for mails
47 $result_main = SQL_QUERY("SELECT id, sender, subject, payment_id, timestamp, url, target_send, cat_id FROM "._MYSQL_PREFIX."_pool WHERE data_type='ADMIN' ORDER BY timestamp", __FILE__, __LINE__);
48
49 OPEN_TABLE("100%", "admin_content admin_content_align", "");
50 if ((SQL_NUMROWS($result_main) > 0) || (isset($_POST['lock']))) {
51         // Count checked checkboxes
52         $SEL = 0;
53         if (isset($_POST['sel'])) {
54                 // Are there checked boxes?
55                 if (count($_POST['sel']) > 0) {
56                         // Count now... We use an own function for now
57                         $SEL = SELECTION_COUNT($_POST['sel']);
58                 }
59         }
60
61         if (isset($_POST['accept'])) {
62                 if ($SEL > 0) {
63                         // Accept mail orders
64                         foreach ($_POST['sel'] as $id => $value) {
65                                 // Secure ID number
66                                 $id = bigintval($id);
67
68                                 // Unlock selected email
69                                 //$result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='NEW' WHERE id=%d AND data_type='ADMIN' LIMIT 1",
70                                 // array($id), __FILE__, __LINE__);
71                                 if (SQL_AFFECTEDROWS($link, __FILE__, __LINE__) == 1) {
72                                         // Order placed in queue...
73                                         $result = SQL_QUERY_ESC("SELECT po.url, po.subject, po.sender, pay.payment
74 FROM "._MYSQL_PREFIX."_pool AS po
75 INNER JOIN "._MYSQL_PREFIX."_payments AS pay
76 ON po.payment_id=pay.id
77 WHERE po.id=%d
78 LIMIT 1",
79                                          array($id), __FILE__, __LINE__);
80                                         $DATA = SQL_FETCHROW($result);
81                                         SQL_FREERESULT($result);
82
83                                         // Check for bonus extension version >= 0.4.4 for the order bonus
84                                         if ((GET_EXT_VERSION("bonus") >= "0.4.4") && ($_CONFIG['bonus_active'] == "Y")) {
85                                                 // Add points directly
86                                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET bonus_order=bonus_order+".$_CONFIG['bonus_order']." WHERE userid=%d LIMIT 1",
87                                                  array(bigintval($DATA[2])), __FILE__, __LINE__);
88
89                                                 // Subtract bonus points from system
90                                                 BONUS_POINTS_HANDLER($_CONFIG['bonus_order']);
91                                         }
92
93                                         // Check for surfbar extension
94                                         if (EXT_IS_ACTIVE("surfbar")) {
95                                                 // Add the url
96                                                 $insertId = SURFBAR_ADMIN_ADD_URL($DATA[0], $DATA[2], $DATA[3]);
97
98                                                 // Load email template
99                                                 $msg_user = LOAD_EMAIL_TEMPLATE("order_accept_sb", $insertId, $DATA[2]);
100                                         } else {
101                                                 // Load email template
102                                                 $msg_user = LOAD_EMAIL_TEMPLATE("order-accept", "", $DATA[2]);
103                                         }
104
105                                         // Send email
106                                         SEND_EMAIL($DATA[2], MEMBER_ORDER_ACCEPTED, $msg_user);
107                                 }
108                         }
109
110                         // Set message
111                         $MSG = ADMIN_MAILS_ACTIVATED;
112                 } else {
113                         // Nothing checked!
114                         $MSG = ADMIN_MAILS_NOTHING_CHECKED;
115                 }
116
117                 // Mails unlocked for mail delivery
118                 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
119         } elseif (isset($_POST['reject'])) {
120                 if ($SEL > 0) {
121                         // Reject mail orders
122                         $SW = 2; $OUT = "";
123                         foreach ($_POST['sel'] as $id=>$value) {
124                                 // Secure ID number
125                                 $id = bigintval($id);
126
127                                 // Load URL and subject from pool
128                                 $result = SQL_QUERY_ESC("SELECT url, subject, sender FROM "._MYSQL_PREFIX."_pool WHERE id=%d LIMIT 1",
129                                  array($id), __FILE__, __LINE__);
130                                 $DATA = SQL_FETCHROW($result);
131                                 SQL_FREERESULT($result);
132
133                                 // Load email template and send it away
134                                 $msg_user = LOAD_EMAIL_TEMPLATE("order-reject", "", $DATA[2]);
135                                 SEND_EMAIL($DATA[2], MEMBER_ORDER_REJECTED, $msg_user);
136
137                                 // If you do not enter an URL to redirect to, your URL will be set!
138                                 if ((empty($_POST['redirect'])) || ($_POST['redirect'] == "http://")) $_POST['redirect'] = URL;
139
140                                 // Redirect URL
141                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET url='%s', data_type='NEW' WHERE id=%d LIMIT 1",
142                                  array($_POST['redirect'], $id),__FILE__, __LINE__);
143
144                                 // Prepare data for the row template
145                                 $content = array(
146                                         'sw'  => $SW,
147                                         'id'  => $id,
148                                         'url' => $_POST['url'][$id],
149                                 );
150
151                                 // Load row template and switch colors
152                                 $OUT .= LOAD_TEMPLATE("admin_unlock_emails_redir_row", true, $content);
153                                 $SW = 3 - $SW;
154                         }
155                         define('__URL_ROWS', $OUT);
156
157                         // Load main template
158                         LOAD_TEMPLATE("admin_unlock_emails_redir");
159                 } else {
160                         // Nothing selected
161                         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MAILS_NOTHING_CHECKED);
162                 }
163         } elseif ((isset($_POST['lock'])) || ($SEL > 0)) {
164                 if ($SEL > 0) {
165                         // Lock URLs
166                         foreach ($_POST['sel'] as $id=>$url) {
167                                 // Lookup in blacklist
168                                 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_url_blist WHERE url='%s' LIMIT 1",
169                                  array($url), __FILE__, __LINE__);
170                                 if (SQL_NUMROWS($result) == 0) {
171                                         // Did not find a record so we can add it... :)
172                                         $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_url_blist (url, timestamp) VALUES ('%s', UNIX_TIMESTAMP())",
173                                          array($url), __FILE__, __LINE__);
174                                 } else {
175                                         // Free memory
176                                         SQL_FREERESULT($result);
177                                 }
178                         }
179
180                         // Set message
181                         $MSG = ADMIN_URLS_BLOCKED;
182                 } else {
183                         // Nothing selected
184                         $MSG = ADMIN_MAILS_NOTHING_CHECKED;
185                 }
186                 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
187         } elseif ((empty($_POST['lock'])) && (empty($_POST['accept'])) && (empty($_POST['reject']))) {
188                 // Mail orders are in pool so we can display them
189                 $SW = 2; $OUT = "";
190                 while (list($id, $sender, $subj, $pay, $time, $url, $tsend, $cat) = SQL_FETCHROW($result_main))
191                 {
192                         // Prepare data for the template
193                         $content = array(
194                                 'sw'        => $SW,
195                                 'id'        => $id,
196                                 'sender'    => $sender,
197                                 'u_link'    => ADMIN_USER_PROFILE_LINK($sender),
198                                 'subj'      => COMPILE_CODE($subj),
199                                 'tester'    => FRAMETESTER($url),
200                                 'url'       => $url,
201                                 'cat_title' => str_replace("\"", "&quot;", GET_CATEGORY($cat)),
202                                 'cat_link'  => $cat,
203                                 'pay_title' => str_replace("\"", "&quot;", GET_PAYMENT($pay, true)),
204                                 'pay_link'  => $pay,
205                                 'ordered'   => MAKE_DATETIME($time, "2"),
206                                 'tsend'     => $tsend,
207                         );
208
209                         // Load row template and switch colors
210                         $OUT .= LOAD_TEMPLATE("admin_unlock_emails_row", true, $content);
211                         $SW = 3 - $SW;
212                 }
213
214                 // Free memory
215                 SQL_FREERESULT($result);
216                 define('__UNLOCK_ROWS', $OUT);
217
218                 // Prepare rejection URL
219                 $REJECT = "http://";
220                 if (GET_EXT_VERSION("other") >= "0.1.6") $REJECT = $_CONFIG['reject_url'];
221                 define('__REJECT_URL', $REJECT);
222
223                 // Load main template
224                 LOAD_TEMPLATE("admin_unlock_emails");
225         } else {
226                 // Wrong call!
227                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_WRONG_CALL);
228         }
229 } else {
230         // No mail orders fond
231         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_MAILS_IN_POOL);
232 }
233
234 CLOSE_TABLE();
235 //
236 ?>