Performance hacks, encapsulation and more EL code usage:
[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, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.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         loadTemplate('admin_settings_saved', false, 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 (isGetRequestParameterSet('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(getRequestParameter('mid'))
72         );
73
74         // Column, type and id for member's mail
75         $col = 'stats_id'; $type = 'NORMAL'; $ID = '-1';
76
77         // Load admin_list_unconfirmed template
78         $listed = true; $DATA = getRequestParameter('mid'); $LINK = 'mailid';
79 } elseif ((isGetRequestParameterSet('bid')) && (isExtensionActive('bonus'))) {
80         // @TODO This constant might be unused? define('__LIST_UNCON_TITLE', '{--ADMIN_LIST_UNCONFIRMED_BONUS_LINKS--}');
81
82         // SQL query for mail data (both ids are required for compatiblity to above normal mail
83         $sql = sprintf("SELECT
84         `id`, `id` AS `sender`, `subject`, `text`, `url`, `timestamp`, `mails_sent` AS `max_rec`
85 FROM
86         `{?_MYSQL_PREFIX?}_bonus`
87 WHERE
88         `id`=%s
89 LIMIT 1",
90                 bigintval(getRequestParameter('bid'))
91         );
92
93         // Column, type and id for member's mail
94         $col = 'bonus_id'; $type = 'BONUS'; $ID = getRequestParameter('bid');
95
96         // Load admin_list_unconfirmed template
97         $listed = true; $DATA = $ID; $LINK = 'bonusid';
98 } else {
99         // @TODO "Please do not call me directly." Should be rewritten to a nice selection depending on ext-bonus
100         loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}');
101 }
102
103 // Shall I display links or not?
104 if (($listed === true) && (!empty($sql))) {
105         // Load mail data
106         $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
107
108         // Do we have an entry?
109         if (SQL_NUMROWS($result_master) == 1) {
110                 // Mail order / bonus mail found!
111                 $poolData = SQL_FETCHARRAY($result_master);
112
113                 // Transfer data to constants for the template
114                 if (($poolData['id'] > 0) && ($ID == '-1')) $ID = $poolData['id'];
115                 if ($col == 'bonus_id') $poolData['sender'] = '0';
116
117                 // Load unconfirmed mail links. Hmmm, this select query is pretty cool
118                 // but it does only show unconfirmed mail links from existing user
119                 // accounts. So if you have delete one you did not see those links
120                 $result = SQL_QUERY_ESC("SELECT
121         l.`userid`, u.`status`, u.`surname`, u.`family`, u.`gender`, u.`email`
122 FROM
123         `{?_MYSQL_PREFIX?}_user_links` AS `l`
124 LEFT JOIN
125         `{?_MYSQL_PREFIX?}_user_data` AS `u`
126 ON
127         l.`userid`=u.`userid`
128 WHERE
129         l.`%s`=%s
130 ORDER BY
131         l.`userid` ASC
132 LIMIT %s",
133                         array(
134                                 $col,
135                                 $ID,
136                                 bigintval($poolData['max_rec'])
137                         ),__FILE__, __LINE__);
138
139                 // Do we have entries?
140                 if (!SQL_HASZERONUMS($result)) {
141                         // At least one link left to confirm
142                         $OUT = '';
143                         while ($row = SQL_FETCHARRAY($result)) {
144                                 // User data found? We can take any field of u.
145                                 if (!is_null($row['status'])) {
146                                         // Prepare data for the row template
147                                         $row = array(
148                                                 'userid' => $row['userid'],
149                                                 'link'   => $LINK,
150                                                 'id'     => $ID,
151                                                 'email'  => '<a href="' . generateEmailLink($row['email'], 'user_data') . '">' . translateGender($row['gender']) . ' ' . $row['surname'] . ' ' . $row['family'] . '</a>',
152                                                 'status' => $row['status'],
153                                         );
154
155                                         // Load row template and switch colors
156                                         $OUT .= loadTemplate('admin_list_unconfirmed_row', true, $row);
157                                 } else {
158                                         // No user data found
159                                         $OUT .= loadTemplate('admin_list_unconfirmed_row_404', true, $row);
160                                 }
161                         } // END - while
162
163                         // Render it in our new listing
164                         $OUT = loadTemplate('admin_list_unconfirmed_list', true, $OUT);
165                 } else {
166                         // All links are confirmed... strange, you shall normally not get a link to this place in this scenario... hmmm.
167                         $OUT = loadTemplate('admin_settings_saved', true, '{--ADMIN_UNCONFIRMED_NO_LINK_LEFT--}');
168                 }
169
170                 // Prepare content
171                 $content                = $poolData;
172                 $content['unconfirmed'] = SQL_NUMROWS($result);
173                 $content['timestamp']   = generateDateTime($poolData['timestamp'], 2);
174                 $content['rows']        = $OUT;
175
176                 // Free memory
177                 SQL_FREERESULT($result);
178
179                 // Load final template
180                 loadTemplate('admin_list_unconfirmed', false, $content);
181         } elseif (getRequestParameter('mid') > 0) {
182                 // Data in pool or in user_stats not found, so let's find out where data is missing
183                 if (countSumTotalData(bigintval($ID), 'pool', 'id', 'id', true) == 1) {
184                         // pool table
185                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNCONFIRMED_POOL_MISSING', $ID));
186                 } elseif (countSumTotalData(bigintval($ID), 'user_stats', 'id', 'pool_id', true) == 1) {
187                         // user_stats table
188                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNCONFIRMED_STATS_MISSING', $ID));
189                 } else {
190                         // both or link is invalid
191                         loadTemplate('admin_settings_saved', false, '{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
192                 }
193         } elseif (isGetRequestParameterSet('bid')) {
194                 // Data in bonus table not found
195                 loadTemplate('admin_settings_saved', false, '{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
196         }
197
198         // Free result
199         SQL_FREERESULT($result_master);
200 } // END - if
201
202 // [EOF]
203 ?>