c8ba9bb594d96a0a2562a1101a0ed90f432ec8f8
[mailer.git] / inc / modules / admin / what-del_email.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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- / Normal-Mail loeschen                    *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  *  Module by Robert Niedziela, Megacomputing                           *
15  *          web : http://mc-p.mcserver.de                               *
16  *                                                                      *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
19  * For more information visit: http://www.mxchange.org                  *
20  *                                                                      *
21  * This program is free software; you can redistribute it and/or modify *
22  * it under the terms of the GNU General Public License as published by *
23  * the Free Software Foundation; either version 2 of the License, or    *
24  * (at your option) any later version.                                  *
25  *                                                                      *
26  * This program is distributed in the hope that it will be useful,      *
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
29  * GNU General Public License for more details.                         *
30  *                                                                      *
31  * You should have received a copy of the GNU General Public License    *
32  * along with this program; if not, write to the Free Software          *
33  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
34  * MA  02110-1301  USA                                                  *
35  ************************************************************************/
36
37 // Some security stuff...
38 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) {
39         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40         require($INC);
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", basename(__FILE__));
45
46 if (!empty($_GET['mid'])) {
47         // Load email data
48         $result = SQL_QUERY_ESC("SELECT id, sender, subject, url, timestamp, payment_id FROM "._MYSQL_PREFIX."_pool WHERE id=%d LIMIT 1",
49          array(bigintval($_GET['mid'])), __FILE__, __LINE__);
50
51         // Delete mail only once
52         if (SQL_NUMROWS($result) == 1) {
53                 // Load data
54                 list ($id, $sender, $subject, $url, $timestamp, $payId) = SQL_FETCHROW($result);
55                 SQL_FREERESULT($result);
56
57                 // Get points we shall pay back per mail
58                 $price = GET_PAY_POINTS($payId, "price");
59
60                 // Prepare data for the template
61                 define('__ID'     , $id);
62                 define('__SENDER' , ADMIN_USER_PROFILE_LINK($sender));
63                 define('__SUBJECT', $subject);
64                 define('__URL'    , DEREFERER($url));
65                 define('__ORDERED', MAKE_DATETIME($timestamp, "0"));
66
67                 // Load template
68                 LOAD_TEMPLATE("admin_del_email_normal");
69
70                 // Transfer data to data array
71                 $DATA = array($url, $subject);
72
73                 // Load email template and send the email away
74                 $msg_user = LOAD_EMAIL_TEMPLATE("order-deleted", "", $sender);
75                 SEND_EMAIL($sender, MEMBER_ORDER_DELETED, $msg_user);
76
77                 // Delete mail from queue
78                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_pool WHERE id=%d LIMIT 1",
79                  array(bigintval($_GET['mid'])), __FILE__, __LINE__);
80
81                 // Fetch right stats_id from pool
82                 $result = SQL_QUERY_ESC("SELECT s.id FROM "._MYSQL_PREFIX."_user_stats AS s
83 LEFT JOIN "._MYSQL_PREFIX."_pool AS p
84 ON s.pool_id=p.id
85 WHERE s.pool_id=%d LIMIT 1",
86  array(bigintval($_GET['mid'])), __FILE__, __LINE__);
87                 if (SQL_NUMROWS($result) == 1) {
88                         // Fetch stats id
89                         list($stats_id) = SQL_FETCHROW($result);
90                         SQL_FREERESULT($result);
91
92                         // Get all user links
93                         $result = SQL_QUERY_ESC("SELECT COUNT(id) AS 'cnt' FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%d",
94                                 array(bigintval($stats_id)), __FILE__, __LINE__);
95
96                         // Get unconfirmed links for calculation of total points
97                         list($links) = SQL_FETCHROW($result);
98
99                         // Free result
100                         SQL_FREERESULT($result);
101
102                         // Calc total points and pay them back
103                         $totalPoints = $links * $price;
104                         //* DEBUG: */ echo $stats_id.":".$totalPoints."/".$links."/".$price."<br />\n";
105                         if ($totalPoints > 0) {
106                                 // Pay back points
107                                 //* DEBUG: */ echo "PAYBACK:".$sender."<br />\n";
108                                 ADD_POINTS_REFSYSTEM($sender, $totalPoints, true, "0", false,"direct");
109                         }
110
111                         // Remove links from DB
112                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%d",
113                          array(bigintval($stats_id)), __FILE__, __LINE__);
114
115                         // Output link for manually removing stats entry
116                         LOAD_TEMPLATE("admin_settings_saved", false, "<A href=\"".URL."/modules.php?module=admin&amp;what=del_email&amp;pid=".bigintval($_GET['mid'])."\">".ADMIN_REMOVE_STATS_ENTRY."</A>");
117                 }
118         } else {
119                 // Mail already deleted!
120                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NORMAL_MAIL_ALREADY_DELETED);
121         }
122 } elseif (!empty($_GET['pid'])) {
123         // Remove stats entries
124         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%d LIMIT 1",
125          array(bigintval($_GET['pid'])), __FILE__, __LINE__);
126         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_USER_STATS_REMOVED);
127 } elseif ((!empty($_GET['bid'])) && (EXT_IS_ACTIVE("bonus"))) {
128         // Load data from bonus mail
129         $result = SQL_QUERY_ESC("SELECT id, subject, url, timestamp FROM "._MYSQL_PREFIX."_bonus WHERE id=%d",
130          array(bigintval($_GET['bid'])), __FILE__, __LINE__);
131
132         // Delete mail only once
133         if (SQL_NUMROWS($result) == 1) {
134                 // Load data
135                 list ($id, $subject, $url, $timestamp) = SQL_FETCHROW($result);
136                 SQL_FREERESULT($result);
137
138                 // Delete bonus mail entirely from database
139                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1",
140                  array(bigintval($_GET['bid'])), __FILE__, __LINE__);
141                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_links WHERE bonus_id=%d",
142                  array(bigintval($_GET['bid'])), __FILE__, __LINE__);
143
144                 // Prepare data for the template
145                 define('__ID'     , $id);
146                 define('__SUBJECT', $subject);
147                 define('__URL'    , DEREFERER($url));
148                 define('__ORDERED', MAKE_DATETIME($timestamp, "0"));
149
150                 // Load template
151                 LOAD_TEMPLATE("admin_del_email_bonus");
152         } else {
153                 // Mail already deleted!
154                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BONUS_MAIL_ALREADY_DELETED);
155         }
156 } else {
157         // No mail orders fond
158         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_WRONG_CALL);
159 }
160
161 //
162 ?>