1eac55824e5311d6b74cfc43d8f6942e108d1193
[mailer.git] / inc / filter / register_filter.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/02/2011 *
4  * ===================                          Last change: 06/02/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : _filter.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Filters for ext-                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Filter fuer ext-                                 *
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         die();
41 } // END - if
42
43 // Run a filter for must-fillout fields
44 function FILTER_REGISTER_MUST_FILLOUT ($filterData) {
45         // Get all fields for output
46         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
47         $result = sqlQuery('SELECT `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC',
48                 __FUNCTION__, __LINE__);
49
50         // Walk through all entries
51         while ($row = sqlFetchArray($result)) {
52                 // Must the user fill out this element?
53                 $value = '';
54                 if ($row['field_required'] == 'Y') {
55                         $value = '<span class="notice">(*)</span>';
56                 } // END - if
57
58                 // Add it
59                 $filterData['must_fillout_' . strtolower($row['field_name']) . ''] = $value;
60         } // END - while
61
62         // Free memory
63         sqlFreeResult($result);
64
65         // Return it
66         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
67         return $filterData;
68 }
69
70 /**
71  * Run a filter for pre user registration - generic code (e.g. create hash,
72  * init global array elements). WARNING: This filter MUST run filter before all
73  * others, make your extension/-update depending on ext-register to avoid
74  * missing global array elements, etc.
75  *
76  * @param       $filterData             Filter data from previous filter
77  * @return      $filterData             Unchanged filter data
78  */
79 function FILTER_PRE_USER_REGISTRATION_GENERIC ($filterData) {
80         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
81
82         // Generate hash which will be inserted into confirmation mail
83         $GLOBALS['register_confirm_hash'] = generateHash(sha1(
84                 // Get total confirmed, ...
85                 getTotalConfirmedUser() . getEncryptSeparator() .
86                 // ... unconfirmed ...
87                 getTotalUnconfirmedUser() . getEncryptSeparator() .
88                 // ... and locked users
89                 getTotalLockedUser() . getEncryptSeparator() .
90                 postRequestElement('month') . '-' .
91                 postRequestElement('day') . '-' .
92                 postRequestElement('year') . getEncryptSeparator() .
93                 postRequestElement('password1') . getEncryptSeparator() .
94                 detectServerName() . getEncryptSeparator() .
95                 detectRemoteAddr() . getEncryptSeparator() .
96                 detectUserAgent() . '/' .
97                 getSiteKey() . '/' .
98                 getDateKey() . '/' .
99                 getConfig('CACHE_BUSTER')
100         ));
101
102         // Old way with enterable two-char-code
103         $GLOBALS['register_country_row'] = '`country`';
104         $GLOBALS['register_country_data'] = substr(postRequestElement('cntry'), 0, 2);
105
106         // Init "status" as for many users
107         setPostRequestElement('status', 'UNCONFIRMED');
108
109         // Add ip for later POST pings
110         setPostRequestElement('remote_addr', detectRemoteAddr());
111
112         // Generic initialization is done
113         $filterData['init_done'] = TRUE;
114
115         // Return it
116         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
117         //* NOISY-DEBUG: */ print __FUNCTION__.':filterData=<pre>'.print_r($filterData,TRUE).'</pre>';
118         return $filterData;
119 }
120
121 // Filter to run generic user registation (default)
122 function FILTER_GENERIC_USER_REGISTRATION ($filterData) {
123         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
124
125         // Is generic user registration selected?
126         if ((isPostRequestElementSet('provider')) && (postRequestElement('provider') == 'register')) {
127                 // Run it
128                 $filterData['status'] = doGenericUserRegistration();
129
130                 // Interrupt filter chain
131                 interruptFilterChain();
132         } // END - if
133
134         // Return it
135         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
136         return $filterData;
137 }
138
139 // Filter to run generic user registation check (default)
140 function FILTER_GENERIC_USER_REGISTRATION_CHECK () {
141         // Default is form is not sent
142         $isFormSent = FALSE;
143         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
144
145         // Is the registration provider set?
146         if ((isFormSent()) && (isPostRequestElementSet('provider')) && (postRequestElement('provider') == 'register')) {
147                 // Check form
148                 $isFormSent = isRegistrationDataComplete();
149
150                 // Interrupt filter chain
151                 interruptFilterChain();
152         } // END - if
153
154         // Return it
155         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
156         return $isFormSent;
157 }
158
159 // Filter to run generic things on registration done
160 function FILTER_GENERIC_USER_REGISTRATION_DONE () {
161         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
162
163         // Is generic user registration selected?
164         if ((isPostRequestElementSet('provider')) && (postRequestElement('provider') == 'register')) {
165                 // Run it
166                 displayMessage('{--REGISTRATION_DONE--}');
167
168                 // Interrupt filter chain
169                 interruptFilterChain();
170         } // END - if
171
172         // Return NULL
173         return NULL;
174 }
175
176 // Filter to run generic things on registration failed
177 function FILTER_GENERIC_USER_REGISTRATION_FAILED () {
178         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
179
180         // Is generic user registration selected?
181         if ((isPostRequestElementSet('provider')) && (postRequestElement('provider') == 'register')) {
182                 // This should not be reached
183                 reportBug(__FUNCTION__, __LINE__, 'This filter should not handle it.');
184         } // END - if
185
186         // Return NULL
187         return NULL;
188 }
189
190 // Filter to run generic things on registration form
191 function FILTER_GENERIC_USER_REGISTRATION_FORM () {
192         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
193
194         // Is generic user registration selected?
195         if (((isGetRequestElementSet('provider')) && (getRequestElement('provider') == 'register')) || ((!isGetRequestElementSet('provider')) && (getDefaultRegistrationProvider() == 'register'))) {
196                 // Display generic form
197                 doDisplayGenericUserRegistrationForm();
198
199                 // Interrupt filter chain
200                 interruptFilterChain();
201         } // END - if
202
203         // Return NULL
204         return NULL;
205 }
206
207 // [EOF]
208 ?>