Extension ext-earning introduced (unfinished), renamings:
[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 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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         die();
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`,`receive_warnings`,`warning_interval`,`email`,`surname`,`family`,`gender`
56 FROM
57         `{?_MYSQL_PREFIX?}_sponsor_data`
58 WHERE
59         `id`=%s AND
60         `password`='%s'
61 LIMIT 1",
62         array(
63                 bigintval(getSession('sponsor_id')),
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                                 setPostRequestElement('last_change', 'UNIX_TIMESTAMP()');
95
96                                 // Save data
97                                 $message = saveSponsorData(postRequestArray(), $content);
98                         }
99
100                         if (!empty($message)) {
101                                 // Output message
102                                 $GLOBALS['sponsor_output'] = displayMessage($message, true);
103                         } else {
104                                 // No message generated
105                                 $GLOBALS['sponsor_output'] = displayMessage('{--SPONSOR_NO_MESSAGE_GENERATED--}', true);
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                         // Output formular
114                         $GLOBALS['sponsor_output'] = loadTemplate('sponsor_settings_form', true, $content);
115                 }
116         } else {
117                 // Locked or so?
118                 $GLOBALS['sponsor_output'] = displayMessage('{%message,SPONSOR_ACCOUNT_FAILED=' . $content['status'] . '%}', true);
119         }
120 } else {
121         // Sponsor account not found
122         $GLOBALS['sponsor_output'] = displayMessage('{%message,SPONSOR_ACCOUNT_404=' . getSession('sponsor_id') . '%}', true);
123 }
124
125 // Free memory
126 SQL_FREERESULT($result);
127
128 // [EOF]
129 ?>