6762cc915fbf0a4b9b06d7c793ff0a38f3ad4954
[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
60 $WHO = _ALL;
61 $SQL2 = "";
62
63 if (!empty($_GET['mid']))
64 {
65         // Only a specific mail shall be displayed
66         //              0     1       2       3       4           5          6          7       8        9          10
67         $SQL = "SELECT id, sender, subject, text, receivers, payment_id, data_type, timestamp, url, target_send, cat_id
68          FROM "._MYSQL_PREFIX."_pool
69          WHERE id='".bigintval($_GET['mid'])."'
70          LIMIT 1";
71         $WHO = MAIL_ID.": ".$_GET['mid'];
72 }
73  elseif (!empty($_GET['u_id']))
74 {
75         // All mails by a specific member shall be displayed
76         //              0     1       2       3       4           5          6          7       8        9          10
77         $SQL = "SELECT id, sender, subject, text, receivers, payment_id, data_type, timestamp, url, target_send, cat_id
78          FROM "._MYSQL_PREFIX."_pool
79          WHERE sender='".bigintval($_GET['u_id'])."'
80          ORDER by timestamp DESC";
81         $WHO = USER_ID.": ".$_GET['u_id'];
82 }
83
84 if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL)) {
85         // Bonus mails sent by you
86         //               0     1       2        3        4      5       6          7       8      9         10          11        12
87         $SQL2 = "SELECT id, subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent, clicks
88          FROM "._MYSQL_PREFIX."_bonus
89          ORDER BY timestamp DESC";
90
91         // Check for maximum pages
92         $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__);
93 }
94
95 // Check for maximum pages
96 $result_normal = SQL_QUERY($SQL, __FILE__, __LINE__);
97
98 // Set offset an current page to default values
99 if (empty($_GET['page']))   $_GET['page']   = "1";
100 if (empty($_GET['offset'])) $_GET['offset'] = $_CONFIG['mails_page'];
101
102 // Add limitation to SQL string
103 if (empty($_GET['mid']))
104 {
105         // Create limitation line
106         $ADD = " LIMIT ".(bigintval($_GET['offset']) * bigintval($_GET['page']) - bigintval($_GET['offset'])).", ".bigintval($_GET['offset']);
107
108         // For normal mails
109         $SQL .= $ADD;
110
111         // For bonus mails
112         if (!empty($SQL2)) $SQL2 .= $ADD;
113 }
114
115 // Run SQL query for normal mails
116 $result_list = SQL_QUERY($SQL, __FILE__, __LINE__);
117 if ((!empty($SQL2)) && ($WHO == _ALL)) $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__);
118
119 // Calculate pages
120 $PAGES = round(SQL_NUMROWS($result_normal) / $_CONFIG['mails_page'] + 0.3);
121 SQL_FREERESULT($result_normal);
122
123 $MAIL = false;
124 if (SQL_NUMROWS($result_list) > 0) {
125         // Init rows
126         $OUT = ""; $content = array();
127
128         // Walk through all entries
129         while ($pool = SQL_FETCHARRAY($result_list)) {
130                 // Unconfirmed mails and sent mails
131                 $result_uncon = SQL_QUERY_ESC("SELECT max_rec, clicks FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%s LIMIT 1",
132                  array(bigintval($pool['id'])), __FILE__, __LINE__);
133                 list($pool['sent_email'], $pool['clicks']) = SQL_FETCHROW($result_uncon);
134                 SQL_FREERESULT($result_uncon);
135
136                 // Unconfirmed mails
137                 $pool['unconfirmed'] = $pool['sent_email'] - $pool['clicks'];
138                 if ($pool['unconfirmed'] > 0) {
139                         // Add link to list_unconfirmed what-file
140                         $pool['unconfirmed'] = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=list_unconfirmed&amp;mid=".$pool['id']."\">".$pool['unconfirmed']."</A></STRONG>";
141                 } elseif ($pool['unconfirmed'] < 0) {
142                         // Sometimes rarely displayed minus values will be "fixed" to zero
143                         $pool['unconfirmed'] = 0;
144                 }
145
146                 // Prepare content
147                 $content = $pool;
148                 $content['sender_link'] = ADMIN_USER_PROFILE_LINK($pool['sender']);
149                 $content['subject']     = COMPILE_CODE($pool['subject']);
150                 $content['text']        = COMPILE_CODE($pool['text']);
151                 $content['payment']     = GET_PAYMENT($pool['payment_id']);
152                 $content['category']    = GET_CATEGORY($pool['cat_id']);
153                 $content['receivers']   = str_replace(";", ", ", $pool['receivers']);
154                 $content['type']        = TRANSLATE_POOL_TYPE($pool['data_type']);
155                 $content['frametester'] = FRAMETESTER($pool['url']);
156                 $content['url']         = COMPILE_CODE($pool['url']);
157                 $content['timestamp']   = MAKE_DATETIME($pool['timestamp'], "0");
158
159                 // Load row template
160                 $OUT .= LOAD_TEMPLATE("admin_list_emails_row", true, $content);
161         } // END - while
162
163         // Free memory
164         SQL_FREERESULT($result_list);
165
166         // Add navigation (with change box and colspan=3)
167         $content['nav'] = "";
168         if ($PAGES > 1) $content['nav'] = ADD_EMAIL_NAV($PAGES, $_CONFIG['mails_page'], false, "3", true);
169
170         // Prepare content
171         $content['rows'] = $OUT;
172         $content['who'] = $WHO;
173
174         // Mail orders are in pool so we can display them
175         LOAD_TEMPLATE("admin_list_emails", false, $content);
176
177         $MAIL = true;
178         if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL)) {
179                 // Check only if bonus extension is active
180                 if (SQL_NUMROWS($result_bonus) > 0) OUTPUT_HTML("<br /><br />");
181         }
182 }
183
184 if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL)) {
185         // Load bonus mails only when extension is active
186         if (SQL_NUMROWS($result_bonus) > 0) {
187                 // Calculate pages
188                 $PAGES = round(SQL_NUMROWS($result_bonus) / $_CONFIG['mails_page'] + 0.5);
189
190                 // List emails
191                 $OUT = ""; $content = array();
192                 while ($bonus = SQL_FETCHARRAY($result_bonus)) {
193                         // Calculate unconfirmed emails
194                         $bonus['unconfirmed'] = $bonus['mails_sent'] - $bonus['clicks'];
195
196                         // Add link?
197                         if ($bonus['unconfirmed'] > 0) {
198                                 // Add link to list_unconfirmed what-file
199                                 $bonus['unconfirmed'] = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=list_unconfirmed&amp;bid=".$bonus['id']."\">".$bonus['unconfirmed']."</A></STRONG>";
200                         } // END - if
201
202                         // Prepare content
203                         $content = $bonus;
204                         $content['time']        = CREATE_FANCY_TIME($content['time']);
205                         $content['category']    = GET_CATEGORY($content['cat_id']);
206                         $content['receivers']   = str_replace(";", ", ", $content['receivers']);
207                         $content['type']        = TRANSLATE_POOL_TYPE($content['data_type']);
208                         $content['frametester'] = FRAMETESTER($content['url']);
209                         $content['timestamp']   = MAKE_DATETIME($content['timestamp'], "0");
210
211                         // Load row template
212                         $OUT .= LOAD_TEMPLATE("admin_list_bonus_emails_row", true, $content);
213                 }
214
215                 // Add navigation (without change box but with colspan=3)
216                 $content['nav'] = "";
217                 if ($PAGES > 1) $content['nav'] = ADD_EMAIL_NAV($PAGES, $_CONFIG['mails_page'], false, "3", true);
218
219                 // Prepare content
220                 $content['rows'] = $OUT;
221
222                 // Load main template
223                 LOAD_TEMPLATE("admin_list_bonus_emails", false, $content);
224                 $MAIL = true;
225         }
226 }
227
228 if (!$MAIL) {
229         // No mail orders fond
230         OUTPUT_HTML("<SPAN class=\"admin_failed\">".ADMIN_NO_MAILS_IN_POOL."</SPAN>");
231 }
232
233 //
234 ?>