0887f450cde89cbf883d116cdb2b9ae8f77484c8
[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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (!isExtensionActive('mailid')) {
49         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('mailid'));
50         return;
51 } // END - if
52
53 // Don't load the admin_list_unconfirmed template by default
54 $listed = false;
55
56 // List confirmation links from normal or bonus mails
57 if (isGetRequestParameterSet('mid')) {
58         // SQL query for mail data
59         $sql = "SELECT
60         s.id, p.sender, p.subject, p.text, p.url, p.timestamp, s.max_rec
61 FROM
62         `{?_MYSQL_PREFIX?}_pool` AS p
63 LEFT JOIN
64         `{?_MYSQL_PREFIX?}_user_stats` AS s
65 ON
66         p.id=s.pool_id
67 WHERE
68         p.id='".getRequestParameter('mid')."'
69 LIMIT 1";
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', '{--LIST_UNCONFIRMED_BONUS_LINKS--}');
78
79         // SQL query for mail data (both ids are required for compatiblity to above normal mail
80         $sql = "SELECT `id`, `id`, `subject`, `text`, `url`, `timestamp`, `mails_sent` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`='".getRequestParameter('bid')."' LIMIT 1";
81
82         // Column, type and id for member's mail
83         $col = 'bonus_id'; $type = 'BONUS'; $ID = getRequestParameter('bid');
84
85         // Load admin_list_unconfirmed template
86         $listed = true; $DATA = $ID; $LINK = 'bonusid';
87 } else {
88         // @TODO "Please do not call me directly." Should be rewritten to a nice selection depending on ext-bonus
89         loadTemplate('admin_settings_saved', false, '{--ADMIN_CALL_NOT_DIRECTLY--}');
90 }
91
92 // Shall I display links or not?
93 if ($listed === true) {
94         // Load mail data
95         $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
96
97         // Do we have an entry?
98         if (SQL_NUMROWS($result_master) == 1) {
99                 // Mail order / bonus mail found!
100                 // @TODO Rewrite this to $content = SQL_FETCHARRAY(), look some lines above for two differrent queries
101                 list($stats_id, $sender, $subject, $text, $url, $stamp, $max) = SQL_FETCHROW($result_master);
102
103                 // Transfer data to constants for the template
104                 if (($stats_id > 0) && ($ID == '-1')) $ID = $stats_id;
105                 if ($col == 'bonus_id') $sender = '0';
106
107                 // Load unconfirmed mail links. Hmmm, this select query is pretty cool
108                 // but it does only show unconfirmed mail links from existing user
109                 // accounts. So if you have delete one you did not see those links
110                 $result = SQL_QUERY_ESC("SELECT
111         l.userid, u.status, u.surname, u.family, u.gender, u.email
112 FROM
113         `{?_MYSQL_PREFIX?}_user_links` AS l
114 LEFT JOIN
115         `{?_MYSQL_PREFIX?}_user_data` AS u
116 ON
117         l.userid=u.userid
118 WHERE
119         l.%s='%s'
120 ORDER BY
121         l.userid ASC
122 LIMIT %s",
123                         array(
124                                 $col,
125                                 $ID,
126                                 bigintval($max)
127                         ),__FILE__, __LINE__);
128
129                 // Total number of unconfirmed mails
130                 $unconfirmed = SQL_NUMROWS($result);
131
132                 if ($unconfirmed > 0) {
133                         // At least one link left to confirm
134                         $OUT = ''; $SW = 2;
135                         while ($content = SQL_FETCHARRAY($result)) {
136                                 // User data found? We can take any field of u.
137                                 if (!is_null($content['status'])) {
138                                         // Prepare data for the row template
139                                         $content = array(
140                                                 'sw'     => $SW,
141                                                 'userid' => $content['userid'],
142                                                 'link'   => $LINK,
143                                                 'id'     => $ID,
144                                                 'email'  => '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . translateGender($content['gender']) . ' ' . $content['surname'] . ' ' . $content['family'] . '</a>',
145                                                 'status' => $content['status'],
146                                         );
147
148                                         // Load row template and switch colors
149                                         $OUT .= loadTemplate('admin_list_unconfirmed_row', true, $content);
150                                 } else {
151                                         // Insert color-switch
152                                         $content['sw'] = $SW;
153
154                                         // No user data found
155                                         $OUT .= loadTemplate('admin_list_unconfirmed_row_404', true, $content);
156                                 }
157
158                                 // Switch color
159                                 $SW = 3 - $SW;
160                         } // END - while
161
162                         // Render it in our new listing
163                         $OUT = loadTemplate('admin_list_unconfirmed_list', true, $OUT);
164
165                         // Free memory
166                         SQL_FREERESULT($result);
167                 } else {
168                         // All links are confirmed... strange, you shall normally not get a link to this place in this scenario... hmmm.
169                         $OUT = loadTemplate('admin_settings_saved', true, '{--ADMIN_UNCONFIRMED_NO_LINK_LEFT--}');
170                 }
171
172                 // Prepare content
173                 $content = array(
174                         'sender'      => $sender,
175                         'subject'     => $subject,
176                         'text'        => $text,
177                         'url'         => $url,
178                         'unconfirmed' => $unconfirmed,
179                         'stamp'       => generateDateTime($stamp, 2),
180                         'rows'        => $OUT
181                 );
182
183                 // Load final template
184                 loadTemplate('admin_list_unconfirmed', false, $content);
185         } elseif (getRequestParameter('mid') > 0) {
186                 // Data in pool or in user_stats not found, so let's find out where data is missing
187                 $result1 = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
188                         array(bigintval($ID)), __FILE__, __LINE__);
189                 $result2 = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
190                         array(bigintval($ID)), __FILE__, __LINE__);
191
192                 if (SQL_NUMROWS($result1) == 1) {
193                         // pool table
194                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNCONFIRMED_POOL_MISSING', $ID));
195                 } elseif (SQL_NUMROWS($result2) == 1) {
196                         // user_stats table
197                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNCONFIRMED_STATS_MISSING', $ID));
198                 } else {
199                         // both or link is invalid
200                         loadTemplate('admin_settings_saved', false, '{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
201                 }
202
203                 // Free memory
204                 SQL_FREERESULT($result1);
205                 SQL_FREERESULT($result2);
206         } elseif (isGetRequestParameterSet('bid')) {
207                 // Data in bonus table not found
208                 loadTemplate('admin_settings_saved', false, '{--ADMIN_UNCONFIRMED_INVALID_LINK--}');
209         }
210
211         // Free result
212         SQL_FREERESULT($result_master);
213 } // END - if
214
215 // [EOF]
216 ?>