ffbde1c309d580a5f2d62b010981ffc67172b91e
[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', getMessage('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, getMessage('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, $subj, $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' ORDER BY l.userid LIMIT %s",
120                         array($col, $ID, bigintval($max)),__FILE__, __LINE__);
121
122                 // Total number of unconfirmed mails
123                 $unconfirmed = SQL_NUMROWS($result);
124
125                 if ($unconfirmed > 0) {
126                         // At least one link left to confirm
127                         $OUT = ''; $SW = 2;
128                         while ($content = SQL_FETCHARRAY($result)) {
129                                 // Prepare data for the row template
130                                 // @TODO Rewritings: userid->userid
131                                 $content = array(
132                                         'sw'     => $SW,
133                                         'u_link' => generateUserProfileLink($content['userid']),
134                                         'userid' => $content['userid'],
135                                         'link'   => $LINK,
136                                         'id'     => $ID,
137                                         'email'  => '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . translateGender($content['gender']) . ' ' . $content['surname'] . ' ' . $content['family'] . '</a>',
138                                         'status' => translateUserStatus($content['status']),
139                                 );
140
141                                 // Load row template and switch colors
142                                 $OUT .= loadTemplate('admin_list_unconfirmed_row', true, $content);
143                                 $SW = 3 - $SW;
144                         } // END - while
145
146                         // Render it in our new listing
147                         $OUT = loadTemplate('admin_list_unconfirmed_list', true, $OUT);
148
149                         // Free memory
150                         SQL_FREERESULT($result);
151                 } else {
152                         // All links are confirmed... strange, you shall normally not get a link to this place in this scenario... hmmm.
153                         $OUT = loadTemplate('admin_settings_saved', true, getMessage('ADMIN_UNCONFIRMED_NO_LINK_LEFT'));
154                 }
155
156                 // Prepare content
157                 $content = array(
158                         'sender_link'   => generateUserProfileLink($sender),
159                         'subject'       => $subj,
160                         'text'          => $text,
161                         'url'           => generateFrametesterUrl($url),
162                         'unconfirmed'   => $unconfirmed,
163                         'stamp'         => generateDateTime($stamp, 2),
164                         'rows'          => $OUT
165                 );
166
167                 // Load final template
168                 loadTemplate('admin_list_unconfirmed', false, $content);
169         } elseif (getRequestParameter('mid') > 0) {
170                 // Data in pool or in user_stats not found, so let's find out where data is missing
171                 $result1 = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
172                         array(bigintval($ID)), __FILE__, __LINE__);
173                 $result2 = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
174                         array(bigintval($ID)), __FILE__, __LINE__);
175
176                 if (SQL_NUMROWS($result1) == 1) {
177                         // pool table
178                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNCONFIRMED_POOL_MISSING', $ID));
179                 } elseif (SQL_NUMROWS($result2) == 1) {
180                         // user_stats table
181                         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNCONFIRMED_STATS_MISSING', $ID));
182                 } else {
183                         // both or link is invalid
184                         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_UNCONFIRMED_INVALID_LINK'));
185                 }
186
187                 // Free memory
188                 SQL_FREERESULT($result1);
189                 SQL_FREERESULT($result2);
190         } elseif (isGetRequestParameterSet('bid')) {
191                 // Data in bonus table not found
192                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_UNCONFIRMED_INVALID_LINK'));
193         }
194
195         // Free result
196         SQL_FREERESULT($result_master);
197 }
198
199 // [EOF]
200 ?>