Rewrote script to use more EL, introduced wrappers for sending pool:
[mailer.git] / inc / modules / member / what-unconfirmed.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  : Unbestaetigte Mails                              *
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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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')) {
40         exit();
41 } elseif (!isMember()) {
42         redirectToIndexMemberOnlyModule();
43 }
44
45 // Add description as navigation point
46 addYouAreHereLink('member', __FILE__);
47
48 // Essential extension ext-mailid must be active
49 if (!isExtensionActive('mailid')) {
50         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=mailid%}');
51         return;
52 } // END - if
53
54 // Shall we display a mail?
55 if ((isGetRequestElementSet('bonusid')) && (isExtensionActive('bonus'))) {
56         // Display bonus mail by loading it's full data
57         $result_data = SQL_QUERY_ESC('SELECT
58         `id`,
59         `subject`,
60         `timestamp`,
61         `cat_id`,
62         `points`,
63         `text`,
64         `is_notify`,
65         `data_type`,
66         `time`,
67         `url`
68 FROM
69         `{?_MYSQL_PREFIX?}_bonus`
70 WHERE
71         `id`=%s
72 LIMIT 1',
73                 array(bigintval(getRequestElement('bonusid'))), __FILE__, __LINE__);
74
75         // Load data
76         $content = SQL_FETCHARRAY($result_data);
77
78         // Translate some data
79         $content['timestamp'] = generateDateTime($content['timestamp'], '2');
80         $content['userid'] = getMemberId();
81         $content['user_mail_status'] = '{%message,MEMBER_MAIL_BONUS_CONFIRMED_UNKNOWN=' . $content['id'] . '%}';
82
83         // Is ext-user active?
84         if (isExtensionActive('user')) {
85                 // Default is never confirmed
86                 $content['user_mail_status'] = '{%message,MEMBER_MAIL_BONUS_NEVER_CONFIRMED=' . $content['id'] . '%}';
87
88                 // Get the timestamp from the mail
89                 $confirmedStamp = getEpocheTimeFromUserStats('bonusid', $content['id']);
90
91                 // Have confirmed it?
92                 if ($confirmedStamp > 0) {
93                         // Get timestamp from insert
94                         $content['user_mail_status'] = '{%message,MEMBER_MAIL_BONUS_CONFIRMED_ON=' . generateDateTime($confirmedStamp, '2') . '%}';
95                 } // END - if
96         } // END - if
97
98         // Display it depending on mail (data) type
99         loadTemplate('member_mail_bonus_' . strtolower($content['data_type']), FALSE, $content);
100
101         // Free result
102         SQL_FREERESULT($result_data);
103 } elseif (isGetRequestElementSet('mailid')) {
104         // Display regular member mail by loading its full data
105         $result_data = SQL_QUERY_ESC("SELECT
106         `s`.`id`,
107         `s`.`subject`,
108         `p`.`text`,
109         `s`.`timestamp_ordered` AS `timestamp`,
110         `s`.`cat_id`,
111         `p`.`payment_id`,
112         `p`.`sender`,
113         `p`.`data_type`
114 FROM
115         `{?_MYSQL_PREFIX?}_user_stats` AS `s`
116 LEFT JOIN
117         `{?_MYSQL_PREFIX?}_pool` AS `p`
118 ON
119         s.pool_id=p.id
120 WHERE
121         `s`.`id`=%s
122 LIMIT 1",
123                 array(bigintval(getRequestElement('mailid'))), __FILE__, __LINE__);
124
125         // Load data
126         $content = SQL_FETCHARRAY($result_data);
127
128         // Translate some data
129         $content['timestamp'] = generateDateTime($content['timestamp'], '2');
130         // @TODO This call cannot be saved as EL code cannot be "framed" in other EL code
131         $content['userid'] = getMemberId();
132         $content['user_mail_status'] = '{%message,MEMBER_MAIL_NORMAL_CONFIRMED_UNKNOWN=' . $content['id'] . '%}';
133
134         // Is ext-user active?
135         if (isExtensionActive('user')) {
136                 // Default is never confirmed
137                 $content['user_mail_status'] = '{%message,MEMBER_MAIL_NORMAL_NEVER_CONFIRMED=' . $content['id'] . '%}';
138
139                 // Get the timestamp from the mail
140                 $confirmedStamp = getEpocheTimeFromUserStats('mailid', $content['id']);
141
142                 // Have confirmed it?
143                 if ($confirmedStamp > 0) {
144                         // Get timestamp from insert
145                         $content['user_mail_status'] = '{%message,MEMBER_MAIL_NORMAL_CONFIRMED_ON=' . generateDateTime($confirmedStamp, '2') . '%}';
146                 } // END - if
147         } // END - if
148
149         // Display it depending on mail (data) type
150         loadTemplate('member_mail_normal_' . strtolower($content['data_type']), FALSE, $content);
151
152         // Free result
153         SQL_FREERESULT($result_data);
154 }
155
156 if (isExtensionActive('bonus')) {
157         // Load bonus id
158         $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",
159                 array(getMemberId()), __FILE__, __LINE__);
160 } else {
161         // Don't load bonus id if ext-bonus is not installed
162         $result = SQL_QUERY_ESC("SELECT `stats_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `stats_id` DESC",
163                 array(getMemberId()), __FILE__, __LINE__);
164 }
165
166 // Mails left for confirmation?
167 if (!SQL_HASZERONUMS($result)) {
168         // Please confirm these mails!
169         $sum = '0'; $OUT = '';
170
171         // Init content
172         $content = array();
173
174         // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
175         while ($row = SQL_FETCHARRAY($result)) {
176                 // Load data from stats table...
177                 $cat = '';
178                 $result_data = FALSE;
179                 $message = '{--MEMBER_GENERAL_MAIL_PROBLEM--}';
180                 $data = $row['stats_id'] . '/' . $row['bonus_id'] . '/' . $row['link_type'];
181                 switch ($row['link_type']) {
182                         case 'NORMAL':
183                                 $result_data = SQL_QUERY_ESC("SELECT
184         `s`.`subject`,
185         `s`.`timestamp_ordered` AS `timestamp`,
186         `s`.`cat_id`,
187         `s`.`payment_id`,
188         `p`.`sender`
189 FROM
190         `{?_MYSQL_PREFIX?}_user_stats` AS `s`
191 LEFT JOIN
192         `{?_MYSQL_PREFIX?}_pool` AS `p`
193 ON
194         `s`.`pool_id`=`p`.`id`
195 WHERE
196         `s`.`id`=%s
197 LIMIT 1",
198                                         array(bigintval($row['stats_id'])), __FILE__, __LINE__);
199                                 $row['link_type'] = 'mailid';
200                                 $data = $row['stats_id'];
201                                 $message = '{--NORMAL_MAIL_PROBLEM--}';
202                                 break;
203
204                         case 'BONUS':
205                                 $result_data = SQL_QUERY_ESC("SELECT `subject`, `timestamp`, `cat_id`, `points`, NULL FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
206                                         array(bigintval($row['bonus_id'])), __FILE__, __LINE__);
207                                 $row['link_type'] = 'bonusid';
208                                 $data = $row['bonus_id'];
209                                 $message = '{--BONUS_MAIL_PROBLEM--}';
210                                 break;
211
212                         default: // Unknown type detected!
213                                 reportBug(__FILE__, __LINE__, sprintf("Unknown mail type %s detected.", $row['link_type']));
214                                 break;
215                 } // END - switch
216
217                 // Data found to this mail?
218                 if ((SQL_NUMROWS($result_data) == 1) && (($row['link_type'] == 'mailid') || ($row['link_type'] == 'bonusid'))) {
219                         // Mail was found
220                         $rowData = SQL_FETCHARRAY($result_data);
221
222                         // Subject line found?
223                         if (empty($rowData['subject'])) {
224                                 // No subject line!
225                                 $rowData['subject'] = '{--DEFAULT_SUBJECT--}';
226                         } // END - if
227
228                         // Prepare sender id
229                         if ((isValidId($rowData['sender'])) && ($row['link_type'] == 'mailid')) {
230                                 // Sender id
231                                 $rowData['sender'] = bigintval($rowData['sender']);
232                         } elseif ($row['link_type'] == 'bonusid') {
233                                 // Is admin
234                                 $rowData['sender'] = '{--USERNAME_ADMIN_SHORT--}';
235                         } else {
236                                 // Deleted
237                                 $rowData['sender'] = '{--EMAIL_STATUS_DELETED--}';
238                         }
239
240                         // Prepare data for template
241                         // @TODO cat_id is unused
242                         $rowData = array(
243                                 'data'              => bigintval($data),
244                                 // @TODO This 'userid' cannot be saved because of encapsulated EL code
245                                 'userid'            => getMemberId(),
246                                 'link_type'         => $row['link_type'],
247                                 'subject'           => $rowData['subject'],
248                                 'sender'            => $rowData['sender'],
249                                 'timestamp_ordered' => generateDateTime($rowData['timestamp_ordered'], 2),
250                                 'payment_id'        => $rowData['payment_id'],
251                         );
252
253                         // Load row template
254                         if (isShowPointsUnconfirmedEnabled()) {
255                                 $OUT .= loadTemplate('member_list_unconfirmed_row', TRUE, $rowData);
256                         } else {
257                                 $OUT .= loadTemplate('member_list_unconfirmed_nopoints_row', TRUE, $rowData);
258                         }
259
260                         // Count points (price)
261                         $sum += getPaymentPrice($rowData['payment_id']);
262                 } else {
263                         // Prepare data for template
264                         $rowData = array(
265                                 'data'    => $data,
266                                 'message' => $message,
267                         );
268
269                         // Display points or not?
270                         if (isShowPointsUnconfirmedEnabled()) {
271                                 $OUT .= loadTemplate('member_list_unconfirmed_404_row', TRUE, $rowData);
272                         } else {
273                                 $OUT .= loadTemplate('member_list_unconfirmed_nopoints_404_row', TRUE, $rowData);
274                         }
275                 }
276
277                 // Free result
278                 SQL_FREERESULT($result_data);
279         } // END - while
280
281         // Free memory
282         SQL_FREERESULT($result);
283
284         // Remember total points
285         $content['total_points'] = $sum;
286
287         // Remember all generated rows in constant for the template
288         $content['rows'] = $OUT;
289
290         // Load main template
291         if (isShowPointsUnconfirmedEnabled()) {
292                 loadTemplate('member_list_unconfirmed', FALSE, $content);
293         } else {
294                 loadTemplate('member_list_unconfirmed_nopoints', FALSE, $content);
295         }
296 } else {
297         // No mails left to confirm... :)
298         displayMessage('{--MEMBER_NO_MAILS_TO_CONFIRM--}');
299 }
300
301 // [EOF]
302 ?>