acdedf406624c3093ee421a1e7d57a3667ba2607
[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  * 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')) {
42         die();
43 } elseif (!isExtensionActive('sponsor')) {
44         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor'));
45         return;
46 } elseif (!isSponsor()) {
47         // No sponsor!
48         addFatalMessage(__FILE__, __LINE__, getMessage('SPONSOR_ONLY_AREA_ENTERED'));
49         return;
50 }
51
52 // Init message
53 $message = '';
54
55 // Data for the formular
56 $result = SQL_QUERY_ESC("SELECT
57         `status`, `receive_warnings`, `warning_interval`, `email`, `surname`, `family`, `gender`
58 FROM
59         `{?_MYSQL_PREFIX?}_sponsor_data`
60 WHERE
61         `id`='%s' AND `password`='%s'
62 LIMIT 1",
63         array(
64                 bigintval(getSession('sponsorid')),
65                 getSession('sponsorpass')
66         ), __FILE__, __LINE__);
67
68 if (SQL_NUMROWS($result) == 1) {
69         // Load sponsor data
70         $content = SQL_FETCHARRAY($result);
71         if ($content['status'] == 'CONFIRMED') {
72                 // Check if form was submitted or not
73                 if (isFormSent()) {
74                         // Check passwords
75                         if (!isPostRequestParameterSet('password')) {
76                                 // No current password entered
77                                 $message = SPONSOR_NO_CURRENT_PASSWORD_ENTERED;
78                         } elseif (md5(postRequestParameter('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                                         unsetPostRequestParameter($remove);
92                                 } // END - if
93
94                                 // Set last change timestamp
95                                 setPostRequestParameter('last_change', 'UNIX_TIMESTAMP()');
96
97                                 // Save data
98                                 $message = saveSponsorData(postRequestArray(), $content);
99                         }
100
101                         if (!empty($message)) {
102                                 // Output message
103                                 $OUT = loadTemplate('admin_settings_saved', true, $message);
104                         } else {
105                                 // No message generated
106                                 $OUT = loadTemplate('admin_settings_saved', true, getMessage('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                         // Translate current interval into fancy string
115                         $content['current'] = createFancyTime($content['warning_interval']);
116
117                         // Output formular
118                         $OUT = loadTemplate('sponsor_settings_form', true, $content);
119                 }
120         } else {
121                 // Locked or so?
122                 $STATUS = sponsorTranslateUserStatus($content['status']);
123                 $OUT = loadTemplate('admin_settings_saved', true, getMaskedMessage('SPONSOR_ACCOUNT_FAILED', $STATUS));
124         }
125 } else {
126         // Sponsor account not found!
127         $OUT = loadTemplate('admin_settings_saved', true, getMaskedMessage('SPONSOR_ACCOUNT_404', getSession('sponsorid')));
128 }
129
130 // Free memory
131 SQL_FREERESULT($result);
132
133 // [EOF]
134 ?>