2 /************************************************************************
3 * MXChange v0.2.1 Start: 09/28/2003 *
4 * =============== Last change: 07/13/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-unlock_emails.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Unlock ordered emails *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Werbebuchungen freigeben *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
37 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
43 // Define some variables
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__);
49 OPEN_TABLE("100%", "admin_content admin_content_align", "");
50 if ((SQL_NUMROWS($result_main) > 0) || (isset($_POST['lock'])))
52 // Count checked checkboxes
54 if (isset($_POST['sel']))
56 // Are there checked boxes?
57 if (count($_POST['sel']) > 0)
59 // Count now... We use an own function for now
60 $SEL = SELECTION_COUNT($_POST['sel']);
63 if (isset($_POST['accept']))
68 foreach ($_POST['sel'] as $id=>$value)
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)
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);
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"))
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__);
91 // Subtract bonus points from system
92 BONUS_POINTS_HANDLER($_CONFIG['bonus_order']);
95 // Load email template
96 $msg_user = LOAD_EMAIL_TEMPLATE("order-accept", "", $DATA[2]);
99 SEND_EMAIL($DATA[2], MEMBER_ORDER_ACCEPTED, $msg_user);
104 $MSG = ADMIN_MAILS_ACTIVATED;
109 $MSG = ADMIN_MAILS_NOTHING_CHECKED;
112 // Mails unlocked for mail delivery
113 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
115 elseif (isset($_POST['reject']))
119 // Reject mail orders
121 foreach ($_POST['sel'] as $id=>$value)
124 $id = bigintval($id);
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);
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);
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;
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__);
143 // Prepare data for the row template
147 'url' => $_POST['url'][$id],
150 // Load row template and switch colors
151 $OUT .= LOAD_TEMPLATE("admin_unlock_emails_redir_row", true, $content);
154 define('__URL_ROWS', $OUT);
156 // Load main template
157 LOAD_TEMPLATE("admin_unlock_emails_redir");
162 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MAILS_NOTHING_CHECKED);
165 elseif ((isset($_POST['lock'])) || ($SEL > 0))
170 foreach ($_POST['sel'] as $id=>$url)
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)
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__);
183 SQL_FREERESULT($result);
188 $MSG = ADMIN_URLS_BLOCKED;
193 $MSG = ADMIN_MAILS_NOTHING_CHECKED;
195 LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
197 elseif ((empty($_POST['lock'])) && (empty($_POST['accept'])) && (empty($_POST['reject'])))
199 // Mail orders are in pool so we can display them
201 while (list($id, $sender, $subj, $pay, $time, $url, $tsend, $cat) = SQL_FETCHROW($result_main))
203 // Prepare data for the template
208 'u_link' => ADMIN_USER_PROFILE_LINK($sender),
209 'subj' => COMPILE_CODE($subj),
210 'tester' => FRAMETESTER($url),
212 'cat_title' => str_replace("\"", """, GET_CATEGORY($cat)),
214 'pay_title' => str_replace("\"", """, GET_PAYMENT($pay, true)),
216 'ordered' => MAKE_DATETIME($time, "2"),
220 // Load row template and switch colors
221 $OUT .= LOAD_TEMPLATE("admin_unlock_emails_row", true, $content);
226 SQL_FREERESULT($result);
227 define('__UNLOCK_ROWS', $OUT);
229 // Prepare rejection URL
231 if (GET_EXT_VERSION("other") >= "0.1.6") $REJECT = $_CONFIG['reject_url'];
232 define('__REJECT_URL', $REJECT);
234 // Load main template
235 LOAD_TEMPLATE("admin_unlock_emails");
240 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_WRONG_CALL);
245 // No mail orders fond
246 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_MAILS_IN_POOL);