New wrapper functions introduced, TODOs.txt updated
[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 - 2011 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         displayMessage(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'); $mailType = '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; $mailType = 'bonusid';
98 } else {
99         // @TODO "Please do not call me directly." Should be rewritten to a nice selection depending on ext-bonus
100         displayMessage('{--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                 // If there is a pool id and $ID is not set, we take it
114                 if (($poolData['id'] > 0) && ($ID == '-1')) {
115                         $ID = $poolData['id'];
116                 } // END - if
117
118                 // Bonus mails do always have a sender 'NULL'
119                 if ($col == 'bonus_id') {
120                         $poolData['sender'] = null;
121                 } // END - if
122
123                 // Load unconfirmed mail links. Hmmm, this select query is pretty cool
124                 // but it does only show unconfirmed mail links from existing user
125                 // accounts. So if you have delete one you did not see those links
126                 $result = SQL_QUERY_ESC("SELECT
127         l.`userid`, u.`status`, u.`surname`, u.`family`, u.`gender`, u.`email`
128 FROM
129         `{?_MYSQL_PREFIX?}_user_links` AS `l`
130 LEFT JOIN
131         `{?_MYSQL_PREFIX?}_user_data` AS `u`
132 ON
133         l.`userid`=u.`userid`
134 WHERE
135         l.`%s`=%s
136 ORDER BY
137         l.`userid` ASC
138 LIMIT %s",
139                         array(
140                                 $col,
141                                 $ID,
142                                 bigintval($poolData['max_rec'])
143                         ),__FILE__, __LINE__);
144
145                 // Do we have entries?
146                 if (!SQL_HASZERONUMS($result)) {
147                         // At least one link left to confirm
148                         $OUT = '';
149                         while ($row = SQL_FETCHARRAY($result)) {
150                                 // User data found? We can take any field of u.
151                                 if (!is_null($row['status'])) {
152                                         // Prepare data for the row template
153                                         $row = array(
154                                                 'userid' => $row['userid'],
155                                                 'link'   => $mailType,
156                                                 'id'     => $ID,
157                                                 'email'  => '<a href="' . generateEmailLink($row['email'], 'user_data') . '">' . translateGender($row['gender']) . ' ' . $row['surname'] . ' ' . $row['family'] . '</a>',
158                                                 'status' => $row['status'],
159                                         );
160
161                                         // Load row template and switch colors
162                                         $OUT .= loadTemplate('admin_list_unconfirmed_row', true, $row);
163                                 } else {
164                                         // No user data found
165                                         $OUT .= loadTemplate('admin_list_unconfirmed_row_404', true, $row);
166                                 }
167                         } // END - while
168
169                         // Render it in our new listing
170                         $OUT = loadTemplate('admin_list_unconfirmed_list', true, $OUT);
171                 } else {
172                         // All links are confirmed... strange, you shall normally not get a link to this place in this scenario... hmmm.
173                         $OUT = displayMessage('{--ADMIN_UNCONFIRMED_NO_LINK_LEFT--}', true);
174                 }
175
176                 // Prepare content
177                 $content                = $poolData;
178                 $content['unconfirmed'] = SQL_NUMROWS($result);
179                 $content['timestamp']   = generateDateTime($poolData['timestamp'], 2);
180                 $content['rows']        = $OUT;
181
182                 // Free memory
183                 SQL_FREERESULT($result);
184
185                 // Load final template
186                 loadTemplate('admin_list_unconfirmed', false, $content);
187         } elseif (getRequestParameter('mid') > 0) {
188                 // Data in pool or in user_stats not found, so let's find out where data is missing
189                 if (countSumTotalData(bigintval($ID), 'pool', 'id', 'id', true) == 1) {
190                         // pool table
191                         displayMessage(getMaskedMessage('ADMIN_UNCONFIRMED_POOL_MISSING', $ID));
192                 } elseif (countSumTotalData(bigintval($ID), 'user_stats', 'id', 'pool_id', true) == 1) {
193                         // user_stats table
194                         displayMessage(getMaskedMessage('ADMIN_UNCONFIRMED_STATS_MISSING', $ID));
195                 } else {
196                         // both or link is invalid
197                         displayMessage('{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
198                 }
199         } elseif (isGetRequestParameterSet('bid')) {
200                 // Data in bonus table not found
201                 displayMessage('{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
202         }
203
204         // Free result
205         SQL_FREERESULT($result_master);
206 } // END - if
207
208 // [EOF]
209 ?>