2 /************************************************************************
3 * Mailer v0.2.1-FINAL 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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2009 by Roland Haeder *
21 * Copyright (c) 2009, 2010 by Mailer Developer Team *
22 * For more information visit: http://www.mxchange.org *
24 * This program is free software; you can redistribute it and/or modify *
25 * it under the terms of the GNU General Public License as published by *
26 * the Free Software Foundation; either version 2 of the License, or *
27 * (at your option) any later version. *
29 * This program is distributed in the hope that it will be useful, *
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
32 * GNU General Public License for more details. *
34 * You should have received a copy of the GNU General Public License *
35 * along with this program; if not, write to the Free Software *
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
38 ************************************************************************/
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
49 $result_main = SQL_QUERY("SELECT
50 `id`, `sender`, `subject`, `payment_id`, `timestamp`, `url`, `target_send`, `cat_id`
52 `{?_MYSQL_PREFIX?}_pool`
56 `timestamp` ASC", __FILE__, __LINE__);
58 if ((!SQL_HASZERONUMS($result_main)) || (isFormSent('lock'))) {
59 if (isFormSent('accept')) {
60 if (ifPostContainsSelections()) {
62 foreach (postRequestParameter('sel') as $id => $value) {
66 // Order placed in queue...
67 $result = SQL_QUERY_ESC("SELECT
68 po.url, po.subject, po.sender, pay.payment, po.payment_id
70 `{?_MYSQL_PREFIX?}_pool` AS po
72 `{?_MYSQL_PREFIX?}_payments` AS pay
78 array($id), __FILE__, __LINE__);
81 if (SQL_NUMROWS($result) == 1) {
83 $content = SQL_FETCHARRAY($result);
86 SQL_FREERESULT($result);
88 // Is the surfbar installed?
89 // @TODO Rewrite these if-blocks to a filter
90 if ((isExtensionActive('surfbar')) && (getConfig('surfbar_migrate_order') == 'Y')) {
91 // Then "migrate" the URL to the surfbar
92 SURFBAR_ADMIN_MIGRATE_URL($content['url'], $content['sender']);
95 // Check for bonus extension version >= 0.4.4 for the order bonus
96 if ((isExtensionInstalledAndNewer('bonus', '0.4.4')) && (isBonusRallyeActive())) {
97 // Add points directly
98 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_order`=`bonus_order`+{?bonus_order?} WHERE `userid`=%s LIMIT 1",
99 array(bigintval($content['sender'])), __FILE__, __LINE__);
101 // Subtract bonus points from system
102 handleBonusPoints(getConfig('bonus_order'));
105 // Load email template
106 $message_user = loadEmailTemplate('order-accept', $content, $content['sender']);
109 sendEmail($content['sender'], '{--MEMBER_ORDER_ACCEPTED--}', $message_user);
111 // Unlock selected email
112 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_pool` SET `data_type`='NEW' WHERE `id`=%s AND `data_type`='ADMIN' LIMIT 1",
113 array($id), __FILE__, __LINE__);
118 $message = '{--ADMIN_MAILS_ACTIVATED--}';
121 $message = '{--ADMIN_MAILS_NOTHING_CHECKED--}';
124 // Mails unlocked for mail delivery
125 loadTemplate('admin_settings_saved', false, $message);
126 } elseif (isPostRequestParameterSet(('reject'))) {
127 if (ifPostContainsSelections()) {
128 // Reject mail orders
130 foreach (postRequestParameter('sel') as $id => $value) {
132 $id = bigintval($id);
134 // Load URL and subject from pool
135 $result = SQL_QUERY_ESC("SELECT `url`, `subject`, `sender` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
136 array($id), __FILE__, __LINE__);
139 $content = SQL_FETCHARRAY($result);
142 SQL_FREERESULT($result);
144 // Load email template and send it away
145 $message_user = loadEmailTemplate('order-reject', $content, $content['sender']);
146 sendEmail($content['sender'], '{--MEMBER_ORDER_REJECTED--}', $message_user);
148 // If you do not enter an URL to redirect to, your URL will be set!
149 if ((!isPostRequestParameterSet('redirect')) || (postRequestParameter('redirect') == 'http://')) setPostRequestParameter('redirect', getUrl());
152 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_pool` SET url='%s', `data_type`='NEW' WHERE `id`=%s LIMIT 1",
153 array(postRequestParameter('redirect'), $id),__FILE__, __LINE__);
155 // Prepare data for the row template
158 'url' => postRequestParameter('url', $id),
161 // Load row template and switch colors
162 $OUT .= loadTemplate('admin_unlock_emails_redir_row', true, $content);
165 // Load main template
166 loadTemplate('admin_unlock_emails_redir', false, $OUT);
169 loadTemplate('admin_settings_saved', false, '{--ADMIN_MAILS_NOTHING_CHECKED--}');
171 } elseif ((isFormSent('lock')) && (ifPostContainsSelections()) && (getConfig('url_blacklist') == 'Y')) {
173 foreach (postRequestParameter('sel') as $id => $url) {
175 $id = bigintval($id);
177 // Lookup in blacklist
178 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_url_blacklist` WHERE `url`='%s' LIMIT 1",
179 array($url), __FILE__, __LINE__);
180 if (SQL_HASZERONUMS($result)) {
181 // Did not find a record so we can add it... :)
182 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_url_blacklist` (`url`,`pool_id`) VALUES ('%s',%s)",
183 array($url, $id), __FILE__, __LINE__);
187 SQL_FREERESULT($result);
191 loadTemplate('admin_settings_saved', false, '{--ADMIN_URLS_BLOCKED--}');
192 } elseif ((!isFormSent('lock')) && (!isFormSent('accept')) && (!isFormSent('reject'))) {
193 // Mail orders are in pool so we can display them
195 while ($content = SQL_FETCHARRAY($result_main)) {
196 // Prepare data for the template
197 $content['timestamp'] = generateDateTime($content['timestamp'], 2);
199 // Load row template and switch colors
200 $OUT .= loadTemplate('admin_unlock_emails_row', true, $content);
204 SQL_FREERESULT($result_main);
207 $content['rows'] = $OUT;
209 // Load main template
210 loadTemplate('admin_unlock_emails', false, $content);
211 } elseif ((isFormSent('lock')) && (getConfig('url_blacklist') != 'Y')) {
212 // URL blacklist not activated
213 loadTemplate('admin_settings_saved', false, '{--ADMIN_URL_BLACKLIST_DISABLED--}');
216 loadTemplate('admin_settings_saved', false, '{--ADMIN_WRONG_CALL--}');
219 // No mail orders fond
220 loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_MAILS_IN_POOL--}');