Rewrote a lot parts to extract 'payments' table (+ handling) into own extension:
[mailer.git] / inc / modules / admin / what-list_unconfirmed.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/09/2004 *
4  * ===================                          Last change: 10/31/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_unconfirmed.php                        *
8  * -------------------------------------------------------------------- *
9  * Short description : List unconfirmed mail links                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Unbest. Mail-Links auflisten                     *
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')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (!isExtensionActive('mailid')) {
47         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=mailid%}');
48         return;
49 } // END - if
50
51 // Don't load the admin_list_unconfirmed template by default
52 $listed = FALSE;
53
54 // Init query
55 $sql = '';
56
57 // List confirmation links from normal or bonus mails
58 if ((isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'normal')) {
59         // SQL query for mail data
60         $sql = sprintf("SELECT
61         `s`.`id`,
62         `p`.`sender`,
63         `p`.`subject`,
64         `p`.`text`,
65         `p`.`url`,
66         `p`.`timestamp`,
67         `s`.`max_rec`
68 FROM
69         `{?_MYSQL_PREFIX?}_pool` AS `p`
70 LEFT JOIN
71         `{?_MYSQL_PREFIX?}_user_stats` AS `s`
72 ON
73         `p`.`id`=`s`.`pool_id`
74 WHERE
75         `p`.`id`=%s
76 LIMIT 1",
77                 bigintval(getRequestElement('id'))
78         );
79
80         // Column, type and id for member's mail
81         $col = 'stats_id';
82         $type = 'NORMAL';
83         $ID = -1;
84
85         // Load admin_list_unconfirmed template
86         $listed = TRUE;
87         $DATA = getRequestElement('id');
88 } elseif (((isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'bonus')) && (isExtensionActive('bonus'))) {
89         // @TODO This constant might be unused? define('__LIST_UNCON_TITLE', '{--ADMIN_LIST_UNCONFIRMED_BONUS_LINKS--}');
90
91         // SQL query for mail data (both ids are required for compatiblity to above normal mail
92         // @TODO `id` has been used two times???
93         $sql = sprintf("SELECT
94         `id`,
95         `id` AS `sender`,
96         `subject`,
97         `text`,
98         `url`,
99         `timestamp`,
100         `mails_sent` AS `max_rec`
101 FROM
102         `{?_MYSQL_PREFIX?}_bonus`
103 WHERE
104         `id`=%s
105 LIMIT 1",
106                 bigintval(getRequestElement('id'))
107         );
108
109         // Column, type and id for member's mail
110         $col = 'bonus_id';
111         $type = 'BONUS';
112         $ID = getRequestElement('id');
113
114         // Load admin_list_unconfirmed template
115         $listed = TRUE;
116         $DATA = $ID;
117 } else {
118         // @TODO "Please do not call me directly." Should be rewritten to a nice selection depending on ext-bonus
119         displayMessage('{--ADMIN_CALL_NOT_DIRECTLY--}');
120 }
121
122 // Shall I display links or not?
123 if (($listed === TRUE) && (!empty($sql))) {
124         // Load mail data
125         $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
126
127         // Is there an entry?
128         if (SQL_NUMROWS($result_master) == 1) {
129                 // Mail order / bonus mail found
130                 $poolData = SQL_FETCHARRAY($result_master);
131
132                 // If there is a pool id and $ID is not set, we take it
133                 if (($poolData['id'] > 0) && ($ID == '-1')) {
134                         $ID = $poolData['id'];
135                 } // END - if
136
137                 // Bonus mails do always have a sender 'NULL'
138                 if ($col == 'bonus_id') {
139                         $poolData['sender'] = NULL;
140                 } // END - if
141
142                 // Load unconfirmed mail links. Hmmm, this select query is pretty cool
143                 // but it does only show unconfirmed mail links from existing user
144                 // accounts. So if you have delete one you did not see those links
145                 $result = SQL_QUERY_ESC("SELECT
146         l.`userid`,
147         `u`.`status`,
148         `u`.`surname`,
149         `u`.`family`,
150         `u`.`gender`,
151         `u`.`email`
152 FROM
153         `{?_MYSQL_PREFIX?}_user_links` AS `l`
154 LEFT JOIN
155         `{?_MYSQL_PREFIX?}_user_data` AS `u`
156 ON
157         l.`userid`=`u`.`userid`
158 WHERE
159         l.`%s`=%s
160 ORDER BY
161         l.`userid` ASC
162 LIMIT %s",
163                         array(
164                                 $col,
165                                 $ID,
166                                 bigintval($poolData['max_rec'])
167                         ),__FILE__, __LINE__);
168
169                 // Are there entries?
170                 if (!SQL_HASZERONUMS($result)) {
171                         // At least one link left to confirm
172                         $OUT = '';
173                         while ($row = SQL_FETCHARRAY($result)) {
174                                 // User data found? We can take any field of u.
175                                 if (!is_null($row['status'])) {
176                                         // Prepare data for the row template
177                                         $row = array(
178                                                 'userid' => $row['userid'],
179                                                 'type'   => getRequestElement('type'),
180                                                 'id'     => $ID,
181                                                 'email'  => '<a href="' . generateEmailLink($row['email'], 'user_data') . '">{%pipe,translateGender=' . $row['gender'] . '%} ' . $row['surname'] . ' ' . $row['family'] . '</a>',
182                                                 'status' => $row['status'],
183                                         );
184
185                                         // Load row template and switch colors
186                                         $OUT .= loadTemplate('admin_list_unconfirmed_row', TRUE, $row);
187                                 } else {
188                                         // No user data found
189                                         $OUT .= loadTemplate('admin_list_unconfirmed_row_404', TRUE, $row);
190                                 }
191                         } // END - while
192
193                         // Render it in our new listing
194                         $OUT = loadTemplate('admin_list_unconfirmed_list', TRUE, $OUT);
195                 } else {
196                         // All links are confirmed... strange, you shall normally not get a link to this place in this scenario... hmmm.
197                         $OUT = displayMessage('{--ADMIN_UNCONFIRMED_NO_LINK_LEFT--}', TRUE);
198                 }
199
200                 // Prepare content
201                 $content                = $poolData;
202                 $content['unconfirmed'] = SQL_NUMROWS($result);
203                 $content['timestamp']   = generateDateTime($poolData['timestamp'], 2);
204                 $content['rows']        = $OUT;
205
206                 // Free memory
207                 SQL_FREERESULT($result);
208
209                 // Load final template
210                 loadTemplate('admin_list_unconfirmed', FALSE, $content);
211         } elseif (getRequestElement('id') > 0) {
212                 // Data in pool or in user_stats not found, so let's find out where data is missing
213                 if (countSumTotalData(bigintval($ID), 'pool', 'id', 'id', TRUE) == 1) {
214                         // pool table
215                         displayMessage('{%message,ADMIN_UNCONFIRMED_POOL_MISSING=' . $ID . '%}');
216                 } elseif (countSumTotalData(bigintval($ID), 'user_stats', 'id', 'pool_id', TRUE) == 1) {
217                         // user_stats table
218                         displayMessage('{%message,ADMIN_UNCONFIRMED_STATS_MISSING=' . $ID . '%}');
219                 } else {
220                         // both or link is invalid
221                         displayMessage('{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
222                 }
223         } elseif ((isPostRequestElementSet('id')) && (isGetRequestElementSet('type')) && (postRequestElement('type') == 'bonus')) {
224                 // Data in bonus table not found
225                 displayMessage('{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
226         }
227
228         // Free result
229         SQL_FREERESULT($result_master);
230 } // END - if
231
232 // [EOF]
233 ?>