Security line in all includes changed
[mailer.git] / inc / modules / admin / what-email_details.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 10/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-email_details.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : See all email details of ordered mails           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Details einer gebuchten Mail ansehen        *
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  *           Moded What-email_details.php   / also Editet !             *
34  * Auf langsammen Servern (wie mein z.B Dauert das Laden)               *
35  * enorm hoch zu lang. Jetzt werden nur auftraege aufgelistet die       *
36  * NEU sind ( DB NEW) oder ADMIN freischalten muss (DB ADMIN )          *
37  * oder noch als TEMP gespecihert sind                                  *
38  * der rest der schon als SEND sich melden darf wird per                *
39  * what-email_archiv .php aufgerufen                                    *
40  * beste gruesse Robert Niedziela / www.personal-webserver.de           *
41  * oder auch www.mc-p.org                                               *
42  ************************************************************************/
43
44 // Some security stuff...
45 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
46         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
47         require($INC);
48 }
49
50 // Add description as navigation point
51 ADD_DESCR("admin", basename(__FILE__));
52
53 // Normal mails ordered by your members
54 //              0     1       2       3       4           5          6          7       8        9          10
55 $SQL = "SELECT id, sender, subject, text, receivers, payment_id, data_type, timestamp, url, target_send, cat_id
56  FROM "._MYSQL_PREFIX."_pool
57  WHERE data_type IN('ADMIN', 'TEMP', 'NEW', 'ACTIVE')
58  ORDER BY timestamp DESC";
59 $WHO = _ALL;
60 $SQL2 = "";
61
62 if (!empty($_GET['mid']))
63 {
64         // Only a specific mail shall be displayed
65         //              0     1       2       3       4           5          6          7       8        9          10
66         $SQL = "SELECT id, sender, subject, text, receivers, payment_id, data_type, timestamp, url, target_send, cat_id
67          FROM "._MYSQL_PREFIX."_pool
68          WHERE id='".bigintval($_GET['mid'])."'
69          LIMIT 1";
70         $WHO = MAIL_ID.": ".$_GET['mid'];
71 }
72  elseif (!empty($_GET['u_id']))
73 {
74         // All mails by a specific member shall be displayed
75         //              0     1       2       3       4           5          6          7       8        9          10
76         $SQL = "SELECT id, sender, subject, text, receivers, payment_id, data_type, timestamp, url, target_send, cat_id
77          FROM "._MYSQL_PREFIX."_pool
78          WHERE sender='".bigintval($_GET['u_id'])."'
79          ORDER by timestamp DESC";
80         $WHO = USER_ID.": ".$_GET['u_id'];
81 }
82
83 if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL)) {
84         // Bonus mails sent by you
85         //               0     1       2        3        4      5       6          7       8      9         10          11        12
86         $SQL2 = "SELECT id, subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent, clicks
87          FROM "._MYSQL_PREFIX."_bonus
88          ORDER BY timestamp DESC";
89
90         // Check for maximum pages
91         $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__);
92 }
93
94 // Check for maximum pages
95 $result_normal = SQL_QUERY($SQL, __FILE__, __LINE__);
96
97 // Set offset an current page to default values
98 if (empty($_GET['page']))   $_GET['page']   = "1";
99 if (empty($_GET['offset'])) $_GET['offset'] = $_CONFIG['mails_page'];
100
101 // Add limitation to SQL string
102 if (empty($_GET['mid']))
103 {
104         // Create limitation line
105         $ADD = " LIMIT ".(bigintval($_GET['offset']) * bigintval($_GET['page']) - bigintval($_GET['offset'])).", ".bigintval($_GET['offset']);
106
107         // For normal mails
108         $SQL .= $ADD;
109
110         // For bonus mails
111         if (!empty($SQL2)) $SQL2 .= $ADD;
112 }
113
114 // Run SQL query for normal mails
115 $result_list = SQL_QUERY($SQL, __FILE__, __LINE__);
116 if ((!empty($SQL2)) && ($WHO == _ALL)) $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__);
117
118 // Calculate pages
119 $PAGES = round(SQL_NUMROWS($result_normal) / $_CONFIG['mails_page'] + 0.3);
120 SQL_FREERESULT($result_normal);
121
122 $MAIL = false;
123 if (SQL_NUMROWS($result_list) > 0) {
124         // Init rows
125         $OUT = ""; $content = array();
126
127         // Walk through all entries
128         while ($pool = SQL_FETCHARRAY($result_list)) {
129                 // Unconfirmed mails and sent mails
130                 $result_uncon = SQL_QUERY_ESC("SELECT max_rec, clicks FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%s LIMIT 1",
131                  array(bigintval($pool['id'])), __FILE__, __LINE__);
132                 list($pool['sent_email'], $pool['clicks']) = SQL_FETCHROW($result_uncon);
133                 SQL_FREERESULT($result_uncon);
134
135                 // Unconfirmed mails
136                 $pool['unconfirmed'] = $pool['sent_email'] - $pool['clicks'];
137                 if ($pool['unconfirmed'] > 0) {
138                         // Add link to list_unconfirmed what-file
139                         $pool['unconfirmed'] = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=list_unconfirmed&amp;mid=".$pool['id']."\">".$pool['unconfirmed']."</A></STRONG>";
140                 } elseif ($pool['unconfirmed'] < 0) {
141                         // Sometimes rarely displayed minus values will be "fixed" to zero
142                         $pool['unconfirmed'] = 0;
143                 }
144
145                 // Prepare content
146                 $content = $pool;
147                 $content['sender_link'] = ADMIN_USER_PROFILE_LINK($pool['sender']);
148                 $content['subject']     = COMPILE_CODE($pool['subject']);
149                 $content['text']        = COMPILE_CODE($pool['text']);
150                 $content['payment']     = GET_PAYMENT($pool['payment_id']);
151                 $content['category']    = GET_CATEGORY($pool['cat_id']);
152                 $content['receivers']   = str_replace(";", ", ", $pool['receivers']);
153                 $content['type']        = GET_POOL_TYPE($pool['data_type']);
154                 $content['frametester'] = FRAMETESTER($pool['url']);
155                 $content['timestamp']   = MAKE_DATETIME($pool['timestamp'], "0");
156
157                 // Load row template
158                 $OUT .= LOAD_TEMPLATE("admin_list_emails_row", true, $content);
159         } // END - while
160
161         // Free memory
162         SQL_FREERESULT($result_list);
163
164         // Add navigation (with change box and colspan=3)
165         $content['nav'] = "";
166         if ($PAGES > 1) $content['nav'] = ADD_EMAIL_NAV($PAGES, $_CONFIG['mails_page'], false, "3", true);
167
168         // Prepare content
169         $content['rows'] = $OUT;
170         $content['who'] = $WHO;
171
172         // Mail orders are in pool so we can display them
173         LOAD_TEMPLATE("admin_list_emails", false, $content);
174
175         $MAIL = true;
176         if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL)) {
177                 // Check only if bonus extension is active
178                 if (SQL_NUMROWS($result_bonus) > 0) OUTPUT_HTML("<br /><br />");
179         }
180 }
181
182 if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL)) {
183         // Load bonus mails only when extension is active
184         if (SQL_NUMROWS($result_bonus) > 0) {
185                 // Calculate pages
186                 $PAGES = round(SQL_NUMROWS($result_bonus) / $_CONFIG['mails_page'] + 0.5);
187
188                 // List emails
189                 $OUT = ""; $content = array();
190                 while ($bonus = SQL_FETCHARRAY($result_bonus)) {
191                         // Calculate unconfirmed emails
192                         $bonus['unconfirmed'] = $bonus['mails_sent'] - $bonus['clicks'];
193
194                         // Add link?
195                         if ($bonus['unconfirmed'] > 0) {
196                                 // Add link to list_unconfirmed what-file
197                                 $bonus['unconfirmed'] = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=list_unconfirmed&amp;bid=".$bonus['id']."\">".$bonus['unconfirmed']."</A></STRONG>";
198                         } // END - if
199
200                         // Prepare content
201                         $content = $bonus;
202                         $content['time']        = CREATE_FANCY_TIME($content['time']);
203                         $content['category']    = GET_CATEGORY($content['cat_id']);
204                         $content['receivers']   = str_replace(";", ", ", $content['receivers']);
205                         $content['type']        = GET_POOL_TYPE($content['data_type']);
206                         $content['frametester'] = FRAMETESTER($content['url']);
207                         $content['timestamp']   = MAKE_DATETIME($content['timestamp'], "0");
208
209                         // Load row template
210                         $OUT .= LOAD_TEMPLATE("admin_list_bonus_emails_row", true, $content);
211                 }
212
213                 // Add navigation (without change box but with colspan=3)
214                 $content['nav'] = "";
215                 if ($PAGES > 1) $content['nav'] = ADD_EMAIL_NAV($PAGES, $_CONFIG['mails_page'], false, "3", true);
216
217                 // Prepare content
218                 $content['rows'] = $OUT;
219
220                 // Load main template
221                 LOAD_TEMPLATE("admin_list_bonus_emails", false, $content);
222                 $MAIL = true;
223         }
224 }
225
226 if (!$MAIL) {
227         // No mail orders fond
228         OUTPUT_HTML("<SPAN class=\"admin_failed\">".ADMIN_NO_MAILS_IN_POOL."</SPAN>");
229 }
230
231 //
232 ?>