A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-del_email.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/12/2004 *
4  * ===================                          Last change: 02/27/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-del_email.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Delete a bonus or normal mail                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bonus- / Mitglied-Mail loeschen                  *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Init counter for deleted mails
47 $count = '0';
48
49 if (isGetRequestParameterSet('mid')) {
50         // Load email data
51         $result = SQL_QUERY_ESC("SELECT `id`,`sender`,`subject`,`url`,`timestamp`,`cat_id`,`payment_id` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
52                 array(bigintval(getRequestParameter('mid'))), __FILE__, __LINE__);
53
54         // Delete mail only once
55         if (SQL_NUMROWS($result) == 1) {
56                 // Load data
57                 $content = SQL_FETCHARRAY($result);
58
59                 // Get points we shall pay back per mail
60                 $content['price'] = getPaymentPoints($content['payment_id'], 'price');
61                 // @TODO Unused: cat_id, payment_id
62
63                 // Prepare data for the template
64                 $content['timestamp'] = generateDateTime($content['timestamp'], 0);
65
66                 // Load template
67                 loadTemplate('admin_delete_email_normal', false, $content);
68
69                 // Load email template and send the email away
70                 $message_user = loadEmailTemplate('member_order_deleted', $content, $content['sender']);
71                 sendEmail($content['sender'], '{--MEMBER_ORDER_DELETED--}', $message_user);
72
73                 // Fetch right stats_id from pool
74                 $result_pool = SQL_QUERY_ESC("SELECT
75         s.id
76 FROM
77         `{?_MYSQL_PREFIX?}_user_stats` AS s
78 LEFT JOIN
79         `{?_MYSQL_PREFIX?}_pool` AS p
80 ON
81         s.pool_id=p.id
82 WHERE
83         s.`pool_id`=%s
84 LIMIT 1",
85                         array(bigintval(getRequestParameter('mid'))), __FILE__, __LINE__);
86                 if (SQL_NUMROWS($result_pool) == 1) {
87                         // Fetch stats id
88                         list($stats_id) = SQL_FETCHROW($result_pool);
89
90                         // Get all user links
91                         $links = countSumTotalData($stats_id, 'user_links', 'userid', 'stats_id', true);
92
93                         // Reset sent mails for recipient(s)
94                         reduceRecipientReceivedMails('stats_id', getRequestParameter('mid'), $links);
95
96                         // Calc total points and pay them back
97                         $totalPoints = $links * $content['price'];
98
99                         // Shall we pay the points back to the user?
100                         if ($totalPoints == 0) {
101                                 // No points repayed!
102                                 displayMessage('{--ADMIN_NO_POINTS_REPAYED--}');
103                         } elseif (getConfig('repay_deleted_mails') != 'SHRED') {
104                                 //* DEBUG: */ debugOutput($stats_id . ':' . $totalPoints . '/' . $links . '/' . $content['price']);
105                                 // Shall we payback to user or jackpot?
106                                 if (getConfig('repay_deleted_mails') == 'JACKPOT') {
107                                         // Set jackpot
108                                         $content['sender'] = '0';
109                                 } // END - if
110
111                                 // Pay back points
112                                 initReferalSystem();
113                                 addPointsThroughReferalSystem('mail_deleted', $content['sender'], $totalPoints);
114
115                                 // Output message
116                                 if (getConfig('repay_deleted_mails') == 'REPAY') {
117                                         // Repayed
118                                         displayMessage('{%message,ADMIN_POINTS_REPAYED=' . $totalPoints . '%}');
119                                 } else {
120                                         // To jackpot
121                                         displayMessage('{%message,ADMIN_POINTS_TO_JACKPOT=' . $totalPoints . '%}');
122                                 }
123                         } else {
124                                 // Points shredded!
125                                 displayMessage('{%message,ADMIN_POINTS_SHREDDED=' . $totalPoints . '%}');
126                         }
127
128                         // Remove links from DB
129                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s",
130                                 array(bigintval($stats_id)), __FILE__, __LINE__);
131                         $count += SQL_AFFECTEDROWS();
132
133                         // Load template for link
134                         displayMessage('<a href="{%url=modules.php?module=admin&amp;what=del_email&amp;pid=' . bigintval(getRequestParameter('mid')) . '%}">{--ADMIN_REMOVE_STATS_ENTRY--}</a>');
135                 } // END - if
136
137                 // Free the result
138                 SQL_FREERESULT($result_pool);
139
140                 // Delete mail from queue
141                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
142                         array(bigintval(getRequestParameter('mid'))), __FILE__, __LINE__);
143                 $count += SQL_AFFECTEDROWS();
144
145                 // Output link for manually removing stats entry
146                 outputHtml('{%message,ADMIN_DELETED_MAILS_COUNT=' . $count . '%}');
147         } else {
148                 // Mail already deleted!
149                 displayMessage('{--ADMIN_NORMAL_MAIL_ALREADY_DELETED--}');
150         }
151
152         // Free result
153         SQL_FREERESULT($result);
154 } elseif (isGetRequestParameterSet('pid')) {
155         // Remove stats entries
156         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
157                 array(bigintval(getRequestParameter('pid'))), __FILE__, __LINE__);
158
159         // Output message
160         displayMessage('{--ADMIN_USER_STATS_REMOVED--}');
161 } elseif ((isGetRequestParameterSet('bid')) && (isExtensionActive('bonus'))) {
162         // Load data from bonus mail
163         $result = SQL_QUERY_ESC("SELECT `id`,`subject`,`url`,`timestamp`,`mails_sent` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
164                 array(bigintval(getRequestParameter('bid'))), __FILE__, __LINE__);
165
166         // Delete mail only once
167         if (SQL_NUMROWS($result) == 1) {
168                 // Load data
169                 $content = SQL_FETCHARRAY($result);
170
171                 // Reset sent mails for recipient(s)
172                 reduceRecipientReceivedMails('bonus_id', getRequestParameter('bid'), $content['mails_sent']);
173
174                 // Init counter for deleted mails
175                 $count = '0';
176
177                 // Delete bonus mail entirely from database
178                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
179                         array(bigintval(getRequestParameter('bid'))), __FILE__, __LINE__);
180                 $count += SQL_AFFECTEDROWS();
181                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s",
182                         array(bigintval(getRequestParameter('bid'))), __FILE__, __LINE__);
183                 $count += SQL_AFFECTEDROWS();
184
185                 // Prepare data for the template
186                 $content['timestamp'] = generateDateTime($content['timestamp'], '0');
187                 $content['count']     = $count;
188
189                 // Load template
190                 loadTemplate('admin_delete_email_bonus', false, $content);
191         } else {
192                 // Mail already deleted!
193                 displayMessage('{--ADMIN_BONUS_MAIL_ALREADY_DELETED--}');
194         }
195
196         // Free result
197         SQL_FREERESULT($result);
198 } elseif ((isGetRequestParameterSet('nid')) && (isExtensionInstalledAndNewer('bonus', '0.8.7'))) {
199         // Load data from bonus mail
200         $result = SQL_QUERY_ESC("SELECT `id`,`subject`,`url`,`timestamp` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
201                 array(bigintval(getRequestParameter('nid'))), __FILE__, __LINE__);
202
203         // Delete mail only once
204         if (SQL_NUMROWS($result) == 1) {
205                 // Load data
206                 $content = SQL_FETCHARRAY($result);
207
208                 // Init counter for deleted mails
209                 $count = '0';
210
211                 // Delete bonus mail entirely from database
212                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
213                         array(bigintval(getRequestParameter('nid'))), __FILE__, __LINE__);
214                 $count += SQL_AFFECTEDROWS();
215                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s",
216                         array(bigintval(getRequestParameter('nid'))), __FILE__, __LINE__);
217                 $count += SQL_AFFECTEDROWS();
218
219                 // Prepare data for the template
220                 $content['timestamp'] = generateDateTime($content['timestamp'], '0');
221                 $content['count']     = $count;
222
223                 // Load template
224                 loadTemplate('admin_delete_email_notify', false, $content);
225         } else {
226                 // Mail already deleted!
227                 displayMessage('{--ADMIN_NOTIFY_MAIL_ALREADY_DELETED--}');
228         }
229
230         // Free result
231         SQL_FREERESULT($result);
232 } else {
233         // No mail orders fond
234         displayMessage('{--ADMIN_WRONG_CALL--}');
235 }
236
237 // [EOF]
238 ?>