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