More improved SQL queries
[mailer.git] / inc / modules / admin / what-list_links.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/28/2004 *
4  * ================                             Last change: 12/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_links.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : List unconfirmed mails of a member               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Unbestaetigte Mails eines Mitgliedes auflisten   *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!EXT_IS_ACTIVE("mailid")) {
39         addFatalMessage(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "mailid"));
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", __FILE__);
45
46 if (empty($_GET['del'])) $_GET['del'] = "";
47
48 if (!empty($_GET['u_id'])) {
49         // Check if the user already exists
50         $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
51          array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
52
53          // Is there an entry?
54         if (SQL_NUMROWS($result) == 1) {
55                 // Loads surname, family's name and the email address
56                 list($sname, $fname, $email) = SQL_FETCHROW($result);
57                 SQL_FREERESULT($result);
58
59                 // Grab user's all unconfirmed mails
60                 if (EXT_IS_ACTIVE("bonus")) {
61                         // Load bonus ID
62                         $result = SQL_QUERY_ESC("SELECT stats_id, bonus_id, link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s ORDER BY `id`",
63                          array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
64                 } else {
65                         // Load stats ID (2nd will be ignored later! But it is needed for the same fetchrow command)
66                         $result = SQL_QUERY_ESC("SELECT stats_id, stats_id, link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s ORDER BY `id`",
67                          array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
68                 }
69
70                 // Get number of rows from the query
71                 $nums = SQL_NUMROWS($result);
72
73                 if ($nums > 0) {
74                         // Some unconfirmed mails left
75                         if ($_GET['del'] == "all") {
76                                 // Delete all unconfirmed mails by this user
77                                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s LIMIT %s",
78                                         array(bigintval($_GET['u_id']), $nums), __FILE__, __LINE__);
79
80                                 // Prepare mail and send it away
81                                 $msg = LOAD_EMAIL_TEMPLATE("admin-del_links", $nums, bigintval($_GET['u_id']));
82                                 SEND_EMAIL($email, getMessage('ADMIN_DEL_LINK_SUBJ'), $msg);
83
84                                 // Display message
85                                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_LINKS_DELETED'));
86                         } else {
87                                 // List all unconfirmed mails
88                                 $SW = 2; $OUT = "";
89                                 while (list($id, $id2, $type) = SQL_FETCHROW($result)) {
90                                         // Initializes some variables
91                                         $cat = "";
92                                         $DATA = "";
93                                         $PROBLEM = GENERAL_MAIL_PROBLEM;
94                                         $result_data = false; // Closes Bug #58
95
96                                         // Load data from stats table...
97                                         switch ($type)
98                                         {
99                                         case "NORMAL":
100                                                 $result_data = SQL_QUERY_ESC("SELECT subject, timestamp_ordered, cat_id FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE id=%s LIMIT 1",
101                                                         array(bigintval($id)), __FILE__, __LINE__);
102                                                 $type = "mailid"; $DATA = $id; $PROBLEM = NORMAL_MAIL_PROBLEM;
103                                                 $LINK = "<a href=\"{!URL!}/mailid.php?uid=".$_GET['u_id']."&amp;mailid=".$id."\" target=\"_blank\">".$id."</a>";
104                                                 break;
105
106                                         case "BONUS":
107                                                 $result_data = SQL_QUERY_ESC("SELECT subject, timestamp, cat_id FROM `{!_MYSQL_PREFIX!}_bonus` WHERE id=%s LIMIT 1",
108                                                         array(bigintval($id2)), __FILE__, __LINE__);
109                                                 $type = "bonusid"; $DATA = $id2; $PROBLEM = BONUS_MAIL_PROBLEM;
110                                                 $LINK = "<a href=\"{!URL!}/mailid.php?uid=".$_GET['u_id']."&amp;bonusid=".$id2."\" target=\"_blank\">".$id2."</a>";
111                                                 break;
112
113                                         default: // Problem in application detected!
114                                                 // Log the error
115                                                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid email type %s detected.", $type));
116                                                 break;
117                                         }
118
119                                         if (SQL_NUMROWS($result_data) == 1) {
120                                                 // Mail was found!
121                                                 list($subject, $timestamp, $cat) = SQL_FETCHROW($result_data);
122                                                 SQL_FREERESULT($result_data);
123                                                 if (empty($subject)) $subject = getMessage('DEFAULT_SUBJECT_LINE');
124
125                                                 // Prepare data for the row template
126                                                 $content = array(
127                                                         'sw'    => $SW,
128                                                         'link'  => $LINK,
129                                                         'subj'  => $subject,
130                                                         'stamp' => MAKE_DATETIME($timestamp, "0"),
131                                                         'cat'   => GET_CATEGORY($cat),
132                                                 );
133
134                                                 // Load row template
135                                                 $OUT .= LOAD_TEMPLATE("admin_list_links_row", true, $content);
136                                         } else {
137                                                 // Load template for error
138                                                 $OUT .= LOAD_TEMPLATE("admin_list_links_problem",
139                                                         array(
140                                                                 'sw'            => $SW,
141                                                                 'problem'       => $PROBLEM,
142                                                                 'data'          => $DATA
143                                                         )
144                                                 );
145                                         }
146                                         $SW = 3 - $SW;
147                                 }
148
149                                 // Free memory
150                                 SQL_FREERESULT($result);
151
152                                 // Remember list in constant for the template
153                                 define('__SNAME_VALUE', $sname);
154                                 define('__FNAME_VALUE', $fname);
155                                 define('__EMAIL_VALUE', "<a href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</a>");
156                                 define('__EMAIL_LIST' , $OUT);
157                                 define('__NUMS_VALUE' , $nums);
158                                 define('__UID'        , bigintval($_GET['u_id']));
159
160                                 // Load final template
161                                 LOAD_TEMPLATE("admin_list_links");
162                         }
163                 } else {
164                         // No mails left to confirm
165                         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_LINKS_1.$_GET['u_id'].ADMIN_MEMBER_LINKS_2);
166                 }
167         } else {
168                 // User not found
169                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_404_1.$_GET['u_id'].ADMIN_MEMBER_404_2);
170         }
171 } else {
172         // Output selection form with all confirmed user accounts listed
173         ADD_MEMBER_SELECTION_BOX();
174 }
175
176 //
177 ?>