Updated copyright year.
[mailer.git] / inc / modules / sponsor / settings.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/11/2005 *
4  * ===================                          Last change: 05/19/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : settings.php                                     *
8  * -------------------------------------------------------------------- *
9  * Short description : Sponsor can manage his settings                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Der Sponsor kann seine Einstellungen aendern     *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         exit();
36 } elseif (!isExtensionActive('sponsor')) {
37         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
38         return;
39 } elseif (!isSponsor()) {
40         // No sponsor!
41         addFatalMessage(__FILE__, __LINE__, '{--SPONSOR_ONLY_AREA_ENTERED--}');
42         return;
43 }
44
45 // Init message
46 $message = '';
47
48 // Data for the formular
49 $result = sqlQueryEscaped("SELECT
50         `status`,
51         `receive_warnings`,
52         `warning_interval`,
53         `email`,
54         `surname`,
55         `family`,
56         `gender`
57 FROM
58         `{?_MYSQL_PREFIX?}_sponsor_data`
59 WHERE
60         `id`=%s AND
61         `password`='%s'
62 LIMIT 1",
63         array(
64                 bigintval(getSession('sponsor_id')),
65                 getSession('sponsorpass')
66         ), __FILE__, __LINE__);
67
68 if (sqlNumRows($result) == 1) {
69         // Load sponsor data
70         $content = sqlFetchArray($result);
71         if ($content['status'] == 'CONFIRMED') {
72                 // Check if form was submitted or not
73                 if (isFormSent()) {
74                         // Check passwords
75                         if (!isPostRequestElementSet('password')) {
76                                 // No current password entered
77                                 $message = SPONSOR_NO_CURRENT_PASSWORD_ENTERED;
78                         } elseif (md5(postRequestElement('password')) != getSession('sponsorpass')) {
79                                 // Entered password didn't match password in DB
80                                 $message = '{--SPONSOR_CURRENT_PASSWORD_DIDNOT_MATCH_DB--}';
81                         } else {
82                                 // Unsecure data which we don't want here
83                                 $UNSAFE = array(
84                                         'company', 'position', 'tax_ident', 'gender', 'surname', 'family',
85                                         'street_nr1', 'street_nr2', 'zip', 'city', 'country', 'phone', 'fax', 'cell',
86                                         'email', 'url'
87                                 );
88
89                                 // Remove all (maybe spoofed) unsafe data from array
90                                 foreach ($UNSAFE as $remove) {
91                                         unsetPostRequestElement($remove);
92                                 } // END - if
93
94                                 // Set last change timestamp
95                                 setPostRequestElement('last_change', 'UNIX_TIMESTAMP()');
96
97                                 // Save data
98                                 $message = saveSponsorData(postRequestArray(), $content);
99                         }
100
101                         if (!empty($message)) {
102                                 // Output message
103                                 $GLOBALS['sponsor_output'] = returnMessage($message);
104                         } else {
105                                 // No message generated
106                                 $GLOBALS['sponsor_output'] = returnMessage('{--SPONSOR_NO_MESSAGE_GENERATED--}');
107                         }
108                 } else {
109                         // Make yes/no selection
110                         $content['receive_warnings_y'] = '';
111                         $content['receive_warnings_n'] = '';
112                         $content['receive_warnings_' . strtolower($content['receive_warnings'])] = ' checked="checked"';
113
114                         // Output formular
115                         $GLOBALS['sponsor_output'] = loadTemplate('sponsor_settings_form', TRUE, $content);
116                 }
117         } else {
118                 // Locked or so?
119                 $GLOBALS['sponsor_output'] = returnMessage('{%message,SPONSOR_ACCOUNT_FAILED=' . $content['status'] . '%}');
120         }
121 } else {
122         // Sponsor account not found
123         $GLOBALS['sponsor_output'] = returnMessage('{%message,SPONSOR_ACCOUNT_404=' . getSession('sponsor_id') . '%}');
124 }
125
126 // Free memory
127 sqlFreeResult($result);
128
129 // [EOF]
130 ?>