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