More fixes
[mailer.git] / inc / modules / member / what-unconfirmed.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ===============                              Last change: 07/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-unconfirmed.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Unconfirmed mails                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Unbest&auml;tigte Mails                              *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } elseif (!isMember()) {
43         redirectToIndexMemberOnlyModule();
44 } elseif ((!isExtensionActive('mailid')) && (!isAdmin())) {
45         redirectToUrl('modules.php?module=login');
46 }
47
48 // Add description as navigation point
49 addMenuDescription('member', __FILE__);
50
51 // Shall we display a mail?
52 if ((isGetRequestElementSet('bonusid')) && (isExtensionActive('bonus'))) {
53         // Display bonus mail by loading it's full data
54         $result_data = SQL_QUERY_ESC("SELECT
55         `id`, `subject`, `timestamp`, `cat_id`, `points`, `text`, `is_notify`, `data_type`, `time`, `url`
56 FROM
57         `{?_MYSQL_PREFIX?}_bonus`
58 WHERE
59         `id`=%s
60 LIMIT 1",
61                 array(bigintval(getRequestElement('bonusid'))), __FILE__, __LINE__);
62
63         // Load data
64         $content = SQL_FETCHARRAY($result_data);
65
66         // Translate some data
67         $content['timestamp'] = generateDateTime($content['timestamp'], 2);
68         $content['category']  = getCategory($content['cat_id']);
69         $content['points']    = translateComma($content['points']);
70         $content['is_notify'] = translateYesNo($content['is_notify']);
71         $content['sender']    = getMessage('_ADMIN_SHORT');
72         $content['time']      = createFancyTime($content['time']);
73         $content['userid']    = getUserId();
74
75         // Get timestamp from insert
76         $content['user_status'] = sprintf(getMessage('MEMBER_MAIL_BONUS_CONFIRMED_ON'),
77                 generateDateTime(getTimestampFromUserStats('bonusid', $content['id']), 2)
78         );
79
80         // Display it depending on mail (data) type
81         loadTemplate('member_mail_bonus_'.strtolower($content['data_type']), false, $content);
82
83         // Free result
84         SQL_FREERESULT($result_data);
85 } elseif (isGetRequestElementSet(('mailid'))) {
86         // Display regular member mail by loading its full data
87         $result_data = SQL_QUERY_ESC("SELECT
88         s.id, s.subject, p.text, s.timestamp_ordered AS `timestamp`, s.cat_id, pay.price AS points, p.sender, pay.time, p.data_type
89 FROM
90         `{?_MYSQL_PREFIX?}_user_stats` AS s
91 LEFT JOIN
92         `{?_MYSQL_PREFIX?}_pool` AS p
93 ON
94         s.pool_id=p.id
95 LEFT JOIN
96         `{?_MYSQL_PREFIX?}_payments` AS pay
97 ON
98         p.payment_id=pay.id
99 WHERE
100         s.id=%s
101 LIMIT 1",
102                 array(bigintval(getRequestElement('mailid'))), __FILE__, __LINE__);
103
104         // Load data
105         $content = SQL_FETCHARRAY($result_data);
106
107         // Translate some data
108         $content['timestamp'] = generateDateTime($content['timestamp'], 2);
109         $content['category']  = getCategory($content['cat_id']);
110         $content['points']    = translateComma($content['points']);
111         $content['time']      = createFancyTime($content['time']);
112         $content['userid']    = getUserId();
113
114         // Get timestamp from insert
115         $content['user_status'] = sprintf(getMessage('MEMBER_MAIL_NORMAL_CONFIRMED_ON'),
116                 generateDateTime(getTimestampFromUserStats('mailid', $content['id']), 2)
117         );
118
119         // Display it depending on mail (data) type
120         loadTemplate('member_mail_normal_'.strtolower($content['data_type']), false, $content);
121
122         // Free result
123         SQL_FREERESULT($result_data);
124 }
125
126 if (isExtensionActive('bonus')) {
127         // Load bonus ID
128         $result = SQL_QUERY_ESC("SELECT `stats_id`, `bonus_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `bonus_id` DESC, stats_id DESC",
129                 array(getUserId()), __FILE__, __LINE__);
130 } else {
131         // Don't load bonus ID
132         $result = SQL_QUERY_ESC("SELECT `stats_id`, `stats_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `stats_id` DESC",
133                 array(getUserId()), __FILE__, __LINE__);
134 }
135
136 // Mails left for confirmation?
137 if (SQL_NUMROWS($result) > 0) {
138         // Please confirm these mails!
139         $sum = 0; $OUT = ''; $SW = 2;
140
141         // Init content
142         $content = array();
143
144         // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
145         while (list($id, $id2, $type) = SQL_FETCHROW($result)) {
146                 // Load data from stats table...
147                 $cat = ''; $result_data = false;
148                 switch ($type)
149                 {
150                         case 'NORMAL':
151                                 $result_data = SQL_QUERY_ESC("SELECT
152         s.subject, s.timestamp_ordered, s.cat_id, s.payment_id, p.sender
153 FROM
154         `{?_MYSQL_PREFIX?}_user_stats` AS s
155 LEFT JOIN
156         `{?_MYSQL_PREFIX?}_pool` AS p
157 ON
158         s.pool_id=p.id
159 WHERE
160         s.id=%s
161 LIMIT 1",
162                                 array(bigintval($id)), __FILE__, __LINE__);
163                                 $type = 'mailid'; $DATA = $id; $PROBLEM = getMessage('NORMAL_MAIL_PROBLEM');
164                                 break;
165
166                         case 'BONUS':
167                                 $result_data = SQL_QUERY_ESC("SELECT subject, timestamp, cat_id, points, 0 FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
168                          array(bigintval($id2)), __FILE__, __LINE__);
169                          $type = 'bonusid'; $DATA = $id2; $PROBLEM = getMessage('BONUS_MAIL_PROBLEM');
170                          break;
171
172                         default: // Unknown type detected!
173                                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown mail type %s detected.", $type));
174                                 break;
175                 }
176
177                 // Data found to this mail?
178                 if ((SQL_NUMROWS($result_data) == 1) && (($type == 'mailid') || ($type == 'bonusid'))) {
179                         // Mail was found!
180                         list($subject, $timestamp, $cat, $pay, $sender) = SQL_FETCHROW($result_data);
181
182                         // Subject line found?
183                         if (empty($subject)) {
184                                 // No subject line!
185                                 $subject = getMessage('DEFAULT_SUBJECT_LINE');
186                         } // END - if
187
188                         // Prepare sender id
189                         if (($sender > 0) && ($type == 'mailid')) {
190                                 // Sender id
191                                 $sender = bigintval($sender);
192                         } elseif ($type == 'bonusid') {
193                                 // Is admin
194                                 $sender = getMessage('_ADMIN_SHORT');
195                         } else {
196                                 // Deleted
197                                 $sender = getMessage('EMAIL_STATUS_DELETED');
198                         }
199
200                         // Prepare data for template
201                         $content = array(
202                                 'sw'      => $SW,
203                                 'userid'     => getUserId(),
204                                 'data'    => bigintval($DATA),
205                                 'type'    => $type,
206                                 'subject' => $subject,
207                                 'sender'  => $sender,
208                                 'stamp'   => generateDateTime($timestamp, 2),
209                                 'cat'     => getCategory($cat),
210                                 'points'  => translateComma($pay),
211                         );
212
213                         // Load row template
214                         if (getConfig('show_points_unconfirmed') == 'Y') {
215                                 $OUT .= loadTemplate('member_unconfirmed_row', true, $content);
216                         } else {
217                                 $OUT .= loadTemplate('member_unconfirmed_row_nopoints', true, $content);
218                         }
219
220                         // Count points
221                         $sum += $pay;
222                 } else {
223                         // Prepare data for template
224                         $content = array(
225                                 'sw'    => $SW,
226                                 'data'  => $content,
227                                 'probl' => $PROBLEM,
228                         );
229
230                         // Display points or not?
231                         if (getConfig('show_points_unconfirmed') == 'Y') {
232                                 $OUT .= loadTemplate('member_unconfirmed_404', true, $content);
233                         } else {
234                                 $OUT .= loadTemplate('member_unconfirmed_404_nopoints', true, $content);
235                         }
236                 }
237
238                 // Free result
239                 SQL_FREERESULT($result_data);
240
241                 // Switch color
242                 $SW = 3 - $SW;
243         } // END - while
244
245         // Free memory
246         SQL_FREERESULT($result);
247
248         // Remember total points
249         $content['total_points'] = translateComma($sum);
250
251         // Remember all generated rows in constant for the template
252         $content['rows'] = $OUT;
253
254         // Load main template
255         if (getConfig('show_points_unconfirmed') == 'Y') {
256                 loadTemplate('member_unconfirmed_table', false, $content);
257         } else {
258                 loadTemplate('member_unconfirmed_table_nopoints', false, $content);
259         }
260 } else {
261         // No mails left to confirm... :)
262         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_NO_MAILS_TO_CONFIRM'));
263 }
264
265 // [EOF]
266 ?>