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