New functions introduced, several rewrites:
[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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } elseif (!isExtensionActive('sponsor')) {
43         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor'));
44         return;
45 } elseif (!isSponsor()) {
46         // No sponsor!
47         addFatalMessage(__FILE__, __LINE__, getMessage('SPONSOR_ONLY_AREA_ENTERED'));
48         return;
49 }
50
51 // Init message
52 $message = '';
53
54 // Data for the formular
55 $result = SQL_QUERY_ESC("SELECT
56         `status`, `receive_warnings`, `warning_interval`, `email`, `surname`, `family`, `gender`
57 FROM
58         `{?_MYSQL_PREFIX?}_sponsor_data`
59 WHERE
60         `id`='%s' AND `password`='%s'
61 LIMIT 1",
62         array(
63                 bigintval(getSession('sponsorid')),
64                 getSession('sponsorpass')
65         ), __FILE__, __LINE__);
66
67 if (SQL_NUMROWS($result) == 1) {
68         // Load sponsor data
69         $content = SQL_FETCHARRAY($result);
70         if ($content['status'] == 'CONFIRMED') {
71                 // Check if form was submitted or not
72                 if (isFormSent()) {
73                         // Check passwords
74                         if (!isPostRequestElementSet('password')) {
75                                 // No current password entered
76                                 $message = SPONSOR_NO_CURRENT_PASSWORD_ENTERED;
77                         } elseif (md5(postRequestElement('password')) != getSession('sponsorpass')) {
78                                 // Entered password didn't match password in DB
79                                 $message = SPONSOR_CURRENT_PASSWORD_DIDNOT_MATCH_DB;
80                         } else {
81                                 // Unsecure data which we don't want here
82                                 $UNSAFE = array(
83                                         'company', 'position', 'tax_ident', 'gender', 'surname', 'family',
84                                         'street_nr1', 'street_nr2', 'zip', 'city', 'country', 'phone', 'fax', 'cell',
85                                         'email', 'url'
86                                 );
87
88                                 // Remove all (maybe spoofed) unsafe data from array
89                                 foreach ($UNSAFE as $remove) {
90                                         unsetPostRequestElement($remove);
91                                 } // END - if
92
93                                 // Set last change timestamp
94                                 setRequestPostElement('last_change', 'UNIX_TIMESTAMP()');
95
96                                 // Save data
97                                 $message = saveSponsorData(postRequestArray(), $content);
98                         }
99
100                         if (!empty($message)) {
101                                 // Output message
102                                 $OUT = loadTemplate('admin_settings_saved', true, $message);
103                         } else {
104                                 // No message generated
105                                 $OUT = loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_NO_MESSAGE_GENERATED'));
106                         }
107                 } else {
108                         // Make yes/no selection
109                         $content['receive_warnings_y'] = '';
110                         $content['receive_warnings_n'] = '';
111                         $content['receive_warnings_' . strtolower($content['receive_warnings'])] = ' checked="checked"';
112
113                         // Translate current interval into fancy string
114                         $content['current'] = createFancyTime($content['warning_interval']);
115
116                         // Output formular
117                         $OUT = loadTemplate('sponsor_settings_form', true, $content);
118                 }
119         } else {
120                 // Locked or so?
121                 $STATUS = sponsorTranslateUserStatus($content['status']);
122                 $OUT = loadTemplate('admin_settings_saved', true, getMaskedMessage('SPONSOR_ACCOUNT_FAILED', $STATUS));
123         }
124 } else {
125         // Sponsor account not found!
126         $OUT = loadTemplate('admin_settings_saved', true, getMaskedMessage('SPONSOR_ACCOUNT_404', getSession('sponsorid')));
127 }
128
129 // Free memory
130 SQL_FREERESULT($result);
131
132 // [EOF]
133 ?>