login bonus will no longer be payed when turned off, "Y/N" rewritten to 'Y/N'
[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 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
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 {
52         // Count checked checkboxes
53         $SEL = 0;
54         if (isset($_POST['sel']))
55         {
56                 // Are there checked boxes?
57                 if (count($_POST['sel']) > 0)
58                 {
59                         // Count now... We use an own function for now
60                         $SEL = SELECTION_COUNT($_POST['sel']);
61                 }
62         }
63         if (isset($_POST['accept']))
64         {
65                 if ($SEL > 0)
66                 {
67                         // Accept mail orders
68                         foreach ($_POST['sel'] as $id=>$value)
69                         {
70                                 // Secure ID number
71                                 $id = bigintval($id);
72
73                                 // Unlock selected email
74                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='NEW' WHERE id=%d AND data_type='ADMIN' LIMIT 1",
75                                  array($id), __FILE__, __LINE__);
76                                 if (SQL_AFFECTEDROWS($link, __FILE__, __LINE__) == 1)
77                                 {
78                                         // Order placed in queue...
79                                         $result = SQL_QUERY_ESC("SELECT url, subject, sender FROM "._MYSQL_PREFIX."_pool WHERE id=%d LIMIT 1",
80                                          array($id), __FILE__, __LINE__);
81                                         $DATA = SQL_FETCHROW($result);
82                                         SQL_FREERESULT($result);
83
84                                         // Check for bonus extension version >= 0.4.4 for the order bonus
85                                         if ((GET_EXT_VERSION("bonus") >= "0.4.4") && ($CONFIG['bonus_active'] == 'Y'))
86                                         {
87                                                 // Add points directly
88                                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET bonus_order=bonus_order+".$CONFIG['bonus_order']." WHERE userid=%d LIMIT 1",
89                                                  array(bigintval($DATA[2])), __FILE__, __LINE__);
90
91                                                 // Subtract bonus points from system
92                                                 BONUS_POINTS_HANDLER($CONFIG['bonus_order']);
93                                         }
94
95                                         // Load email template
96                                         $msg_user = LOAD_EMAIL_TEMPLATE("order-accept", "", $DATA[2]);
97
98                                         // Send email
99                                         SEND_EMAIL($DATA[2], MEMBER_ORDER_ACCEPTED, $msg_user);
100                                 }
101                         }
102
103                         // Set message
104                         $MSG = ADMIN_MAILS_ACTIVATED;
105                 }
106                  else
107                 {
108                         // Nothing checked!
109                         $MSG = ADMIN_MAILS_NOTHING_CHECKED;
110                 }
111
112                 // Mails unlocked for mail delivery
113                 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
114         }
115          elseif (isset($_POST['reject']))
116         {
117                 if ($SEL > 0)
118                 {
119                         // Reject mail orders
120                         $SW = 2; $OUT = "";
121                         foreach ($_POST['sel'] as $id=>$value)
122                         {
123                                 // Secure ID number
124                                 $id = bigintval($id);
125
126                                 // Load URL and subject from pool
127                                 $result = SQL_QUERY_ESC("SELECT url, subject, sender FROM "._MYSQL_PREFIX."_pool WHERE id=%d LIMIT 1",
128                                  array($id), __FILE__, __LINE__);
129                                 $DATA = SQL_FETCHROW($result);
130                                 SQL_FREERESULT($result);
131
132                                 // Load email template and send it away
133                                 $msg_user = LOAD_EMAIL_TEMPLATE("order-reject", "", $DATA[2]);
134                                 SEND_EMAIL($DATA[2], MEMBER_ORDER_REJECTED, $msg_user);
135
136                                 // If you do not enter an URL to redirect to, your URL will be set!
137                                 if ((empty($_POST['redirect'])) || ($_POST['redirect'] == "http://")) $_POST['redirect'] = URL;
138
139                                 // Redirect URL
140                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET url='%s', data_type='NEW' WHERE id=%d LIMIT 1",
141                                  array($_POST['redirect'], $id),__FILE__, __LINE__);
142
143                                 // Prepare data for the row template
144                                 $content = array(
145                                         'sw'  => $SW,
146                                         'id'  => $id,
147                                         'url' => $_POST['url'][$id],
148                                 );
149
150                                 // Load row template and switch colors
151                                 $OUT .= LOAD_TEMPLATE("admin_unlock_emails_redir_row", true, $content);
152                                 $SW = 3 - $SW;
153                         }
154                         define('__URL_ROWS', $OUT);
155
156                         // Load main template
157                         LOAD_TEMPLATE("admin_unlock_emails_redir");
158                 }
159                  else
160                 {
161                         // Nothing selected
162                         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MAILS_NOTHING_CHECKED);
163                 }
164         }
165          elseif ((isset($_POST['lock'])) || ($SEL > 0))
166         {
167                 if ($SEL > 0)
168                 {
169                         // Lock URLs
170                         foreach ($_POST['sel'] as $id=>$url)
171                         {
172                                 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_url_blist WHERE url='%s' LIMIT 1",
173                                  array($url), __FILE__, __LINE__);
174                                 if (SQL_NUMROWS($result) == 0)
175                                 {
176                                         // Did not find a record so we can add it... :)
177                                         $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_url_blist (url, timestamp) VALUES ('%s', UNIX_TIMESTAMP())",
178                                          array($url), __FILE__, __LINE__);
179                                 }
180                                  else
181                                 {
182                                         // Free memory
183                                         SQL_FREERESULT($result);
184                                 }
185                         }
186
187                         // Set message
188                         $MSG = ADMIN_URLS_BLOCKED;
189                 }
190                  else
191                 {
192                         // Nothing selected
193                         $MSG = ADMIN_MAILS_NOTHING_CHECKED;
194                 }
195                 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
196         }
197          elseif ((empty($_POST['lock'])) && (empty($_POST['accept'])) && (empty($_POST['reject'])))
198         {
199                 // Mail orders are in pool so we can display them
200                 $SW = 2; $OUT = "";
201                 while (list($id, $sender, $subj, $pay, $time, $url, $tsend, $cat) = SQL_FETCHROW($result_main))
202                 {
203                         // Prepare data for the template
204                         $content = array(
205                                 'sw'        => $SW,
206                                 'id'        => $id,
207                                 'sender'    => $sender,
208                                 'u_link'    => ADMIN_USER_PROFILE_LINK($sender),
209                                 'subj'      => COMPILE_CODE($subj),
210                                 'tester'    => FRAMETESTER($url),
211                                 'url'       => $url,
212                                 'cat_title' => str_replace("\"", "&quot;", GET_CATEGORY($cat)),
213                                 'cat_link'  => $cat,
214                                 'pay_title' => str_replace("\"", "&quot;", GET_PAYMENT($pay, true)),
215                                 'pay_link'  => $pay,
216                                 'ordered'   => MAKE_DATETIME($time, "2"),
217                                 'tsend'     => $tsend,
218                         );
219
220                         // Load row template and switch colors
221                         $OUT .= LOAD_TEMPLATE("admin_unlock_emails_row", true, $content);
222                         $SW = 3 - $SW;
223                 }
224
225                 // Free memory
226                 SQL_FREERESULT($result);
227                 define('__UNLOCK_ROWS', $OUT);
228
229                 // Prepare rejection URL
230                 $REJECT = "http://";
231                 if (GET_EXT_VERSION("other") >= "0.1.6") $REJECT = $CONFIG['reject_url'];
232                 define('__REJECT_URL', $REJECT);
233
234                 // Load main template
235                 LOAD_TEMPLATE("admin_unlock_emails");
236         }
237          else
238         {
239                 // Wrong call!
240                 LOAD_TEMPLATE ("admin_settings_saved", false, ADMIN_WRONG_CALL);
241         }
242 }
243  else
244 {
245         // No mail orders fond
246         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_MAILS_IN_POOL);
247 }
248
249 CLOSE_TABLE();
250 //
251 ?>