Updated copyright notice as there are changes in this 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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://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')) {
40         exit();
41 } elseif (!isExtensionActive('sponsor')) {
42         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
43         return;
44 } elseif (!isSponsor()) {
45         // No sponsor!
46         addFatalMessage(__FILE__, __LINE__, '{--SPONSOR_ONLY_AREA_ENTERED--}');
47         return;
48 }
49
50 // Init message
51 $message = '';
52
53 // Data for the formular
54 $result = SQL_QUERY_ESC("SELECT
55         `status`,
56         `receive_warnings`,
57         `warning_interval`,
58         `email`,
59         `surname`,
60         `family`,
61         `gender`
62 FROM
63         `{?_MYSQL_PREFIX?}_sponsor_data`
64 WHERE
65         `id`=%s AND
66         `password`='%s'
67 LIMIT 1",
68         array(
69                 bigintval(getSession('sponsor_id')),
70                 getSession('sponsorpass')
71         ), __FILE__, __LINE__);
72
73 if (SQL_NUMROWS($result) == 1) {
74         // Load sponsor data
75         $content = SQL_FETCHARRAY($result);
76         if ($content['status'] == 'CONFIRMED') {
77                 // Check if form was submitted or not
78                 if (isFormSent()) {
79                         // Check passwords
80                         if (!isPostRequestElementSet('password')) {
81                                 // No current password entered
82                                 $message = SPONSOR_NO_CURRENT_PASSWORD_ENTERED;
83                         } elseif (md5(postRequestElement('password')) != getSession('sponsorpass')) {
84                                 // Entered password didn't match password in DB
85                                 $message = '{--SPONSOR_CURRENT_PASSWORD_DIDNOT_MATCH_DB--}';
86                         } else {
87                                 // Unsecure data which we don't want here
88                                 $UNSAFE = array(
89                                         'company', 'position', 'tax_ident', 'gender', 'surname', 'family',
90                                         'street_nr1', 'street_nr2', 'zip', 'city', 'country', 'phone', 'fax', 'cell',
91                                         'email', 'url'
92                                 );
93
94                                 // Remove all (maybe spoofed) unsafe data from array
95                                 foreach ($UNSAFE as $remove) {
96                                         unsetPostRequestElement($remove);
97                                 } // END - if
98
99                                 // Set last change timestamp
100                                 setPostRequestElement('last_change', 'UNIX_TIMESTAMP()');
101
102                                 // Save data
103                                 $message = saveSponsorData(postRequestArray(), $content);
104                         }
105
106                         if (!empty($message)) {
107                                 // Output message
108                                 $GLOBALS['sponsor_output'] = displayMessage($message, TRUE);
109                         } else {
110                                 // No message generated
111                                 $GLOBALS['sponsor_output'] = displayMessage('{--SPONSOR_NO_MESSAGE_GENERATED--}', TRUE);
112                         }
113                 } else {
114                         // Make yes/no selection
115                         $content['receive_warnings_y'] = '';
116                         $content['receive_warnings_n'] = '';
117                         $content['receive_warnings_' . strtolower($content['receive_warnings'])] = ' checked="checked"';
118
119                         // Output formular
120                         $GLOBALS['sponsor_output'] = loadTemplate('sponsor_settings_form', TRUE, $content);
121                 }
122         } else {
123                 // Locked or so?
124                 $GLOBALS['sponsor_output'] = displayMessage('{%message,SPONSOR_ACCOUNT_FAILED=' . $content['status'] . '%}', TRUE);
125         }
126 } else {
127         // Sponsor account not found
128         $GLOBALS['sponsor_output'] = displayMessage('{%message,SPONSOR_ACCOUNT_404=' . getSession('sponsor_id') . '%}', TRUE);
129 }
130
131 // Free memory
132 SQL_FREERESULT($result);
133
134 // [EOF]
135 ?>