2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 04/23/2005 *
4 * =================== Last change: 05/18/2008 *
6 * -------------------------------------------------------------------- *
7 * File : sponsor_functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Functions for the sponsor area *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Funktionen fuer den Sponsorenbereich *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
46 function handlSponsorRequest (&$postData, $update=false, $messageArray=array(), $RET_STATUS=false) {
47 // Init a lot variables
56 'ok', 'edit', 'terms', 'pay_type'
65 // Check if sponsor already exists
66 foreach ($postData as $k => $v) {
67 if (!(array_search($k, $SKIPPED) > -1)) {
68 // Check only posted input entries not the submit button
73 if (!isEmailValid($v)) {
74 // Email address is not valid
77 // Do we want to add a new sponsor or update his data?
78 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE email='%s' LIMIT 1",
79 array($postData['email']), __FUNCTION__, __LINE__);
81 // Is a sponsor alread in the db?
82 if (SQL_NUMROWS($result) == 1) {
84 if ((getWhat() == 'add_sponsor') || ($update)) {
94 SQL_FREERESULT($result);
103 $k = 'password'; $v = md5($v);
107 if (!isUrlValid($v)) $SAVE = false;
111 // Test if there is are time selections
112 convertSelectionsToTimestamp($postData, $DATA, $k, $skip);
116 if ((!empty($k)) && ($skip == false)) {
118 $DATA['keys'][] = $k; $DATA['values'][] = $v;
124 if ($SAVE === true) {
125 // Default is no force even when a guest want to abuse this force switch
126 if ((empty($postData['force'])) || (!isAdmin())) $postData['force'] = '0';
128 // SQL and message string is empty by default
129 $sql = ''; $message = '';
134 $sql = "UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET ";
135 foreach ($DATA['keys'] as $k => $v) {
136 $sql .= $v."='%s', ";
139 // Remove last ", " from SQL string
140 $sql = substr($sql, 0, -2)." WHERE `id`='%s' LIMIT 1";
141 $DATA['values'][] = bigintval(getRequestParameter('id'));
144 $message = getMessageFromIndexedArray(getMessage('ADMIN_SPONSOR_UPDATED'), 'updated', $messageArray);
146 } elseif (($ALREADY === false) || (($postData['force'] == 1) && (isAdmin()))) {
147 // Add new sponsor, first add more data
148 $DATA['keys'][] = 'sponsor_created'; $DATA['values'][] = time();
149 $DATA['keys'][] = 'status';
150 if (($update === true) && (isAdmin()) && (getWhat() == 'add_sponsor')) {
151 // Only allowed for admin
152 $DATA['values'][] = 'PENDING';
155 $DATA['values'][] = 'UNCONFIRMED';
157 // Generate hash code
158 $DATA['keys'][] = 'hash';
159 $DATA['values'][] = md5(session_id().':'.$postData['email'].':'.detectRemoteAddr().':'.detectUserAgent().':'.time());
160 $DATA['keys'][] = 'remote_addr';
161 $DATA['values'][] = detectRemoteAddr();
164 // Implode all data into strings
165 $keyArray = implode("`, `" , $DATA['keys']);
166 $valueArray = str_repeat("%s', '", count($DATA['values']) - 1);
169 $sql = "INSERT INTO `{?_MYSQL_PREFIX?}_sponsor_data` (`" . $keyArray . "`) VALUES ('" . $valueArray . "%s')";
172 $message = getMessageFromIndexedArray(getMessage('ADMIN_SPONSOR_ADDED'), 'added', $messageArray);
174 } elseif (($update === true) && (isAdmin())) {
175 // Add all data as hidden data
177 foreach ($postData as $k => $v) {
178 // Do not add 'force' !
180 $OUT .= '<input type="hidden" name="' . secureString($k) . '" value="' . SQL_ESCAPE($v) . '" />';
185 $content['hidden'] = $OUT;
186 $content['email'] = $postData['email'];
188 // Ask for adding a sponsor with same email address
189 loadTemplate('admin_add_sponsor_already', false, $content);
193 $message = getMaskedMessage('SPONSOR_ALREADY_FOUND', $postData['email']);
199 $result = SQL_QUERY_ESC($sql, $DATA['values'], __FUNCTION__, __LINE__);
203 if (($update === true) && (isAdmin())) {
204 loadTemplate('admin_settings_saved', false, $message);
208 $message = getMessageFromIndexedArray(getMessage('SPONSOR_DATA_NOT_SAVED'), 'failed', $messageArray);
209 loadTemplate('admin_settings_saved', false, $message);
212 // Shall we return the status?
213 if ($RET_STATUS === true) return $ret;
217 function sponsorTranslateUserStatus ($status) {
218 // Construct constant name
219 $constantName = sprintf("ACCOUNT_%s", $status);
221 // Is the constant there?
222 if (defined($constantName)) {
224 $ret = constant($constantName);
227 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
228 $ret = getMaskedMessage('UNKNOWN_STATUS', $status);
233 // Search for an email address in the database
234 function isSponsorRegisteredWithEmail ($email) {
235 // Do we already have the provided email address in our DB?
236 $ret = (countSumTotalData($email, 'sponsor_data', 'id', 'email', true) == 1);
242 // Wether the current user is a sponsor
243 function isSponsor () {
246 if ((isSessionVariableSet('sponsorid')) && (isSessionVariableSet('sponsorpass'))) {
247 // Check cookies against database records...
248 $result = SQL_QUERY_ESC("SELECT
251 `{?_MYSQL_PREFIX?}_sponsor_data`
253 `id`='%s' AND `password`='%s' AND `status`='CONFIRMED'
256 bigintval(getSession('sponsorid')),
257 getSession('sponsorpass')
258 ), __FUNCTION__, __LINE__);
259 if (SQL_NUMROWS($result) == 1) {
265 SQL_FREERESULT($result);
273 function addSponsorMenu ($current) {
275 $WHERE = " AND active='Y'";
276 if (isAdmin()) $WHERE = '';
278 // Load main menu entries
279 $result_main = SQL_QUERY("SELECT action AS main_action, title AS main_title FROM `{?_MYSQL_PREFIX?}_sponsor_menu`
280 WHERE (`what`='' OR `what` IS NULL) ".$WHERE."
281 ORDER BY `sort`", __FUNCTION__, __LINE__);
282 if (SQL_NUMROWS($result_main) > 0) {
283 // Load every menu and it's sub menus
284 while ($content = SQL_FETCHARRAY($result_main)) {
286 $result_sub = SQL_QUERY_ESC("SELECT what AS sub_what, title AS sub_title FROM `{?_MYSQL_PREFIX?}_sponsor_menu`
287 WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ".$WHERE."
289 array($content['main_action']), __FUNCTION__, __LINE__);
290 if (SQL_NUMROWS($result_sub) > 0) {
293 while ($content2 = SQL_FETCHARRAY($result_sub)) {
295 $content = merge_array($content, $content2);
297 // Check if current selected menu is matching the loaded one
298 if ($current == $content['sub_what']) $content['sub_title'] = '<strong>' . $content['sub_title'] . '</strong>';
300 // Prepare data for the sub template
302 'what' => $content['sub_what'],
303 'title' => $content['sub_title']
307 $SUB .= loadTemplate('sponsor_what', true, $content);
310 // Prepare data for the main template
312 'title' => $content['main_title'],
316 // Load menu template
317 $OUT .= loadTemplate('sponsor_action', true, $content);
319 // No sub menus active
320 $OUT .= loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_NO_SUB_MENUS_ACTIVE'));
324 SQL_FREERESULT($result_sub);
327 // No main menus active
328 $OUT .= loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_NO_MAIN_MENUS_ACTIVE'));
332 SQL_FREERESULT($result_main);
339 function addSponsorContent ($what) {
341 $INC = sprintf("inc/modules/sponsor/%s.php", $what);
342 if (isIncludeReadable($INC)) {
343 // Every sponsor action will output nothing directly. It will be written into $OUT!
344 loadIncludeOnce($INC);
347 $OUT .= loadTemplate('admin_settings_saved', true, getMaskedMessage('SPONSOR_CONTENT_404', $what));
355 function updateSponsorLogin () {
361 // Update last online timestamp
362 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data`
363 SET `last_online`=UNIX_TIMESTAMP()
364 WHERE `id`='%s' AND `password`='%s' LIMIT 1",
366 bigintval(getSession('sponsorid')),
367 getSession('sponsorpass')
368 ), __FUNCTION__, __LINE__);
370 // This update went fine?
371 $login = (SQL_AFFECTEDROWS() == 1);
378 // Saves sponsor's data
379 function saveSponsorData ($postData, $content) {
382 // Unsecure data which we don't want
383 $UNSAFE = array('password', 'id', 'remote_addr', 'sponsor_created', 'last_online', 'status', 'ref_count',
384 'points_amount', 'points_used', 'refid', 'hash', 'last_pay', 'last_curr', 'pass_old',
385 'ok', 'pass1', 'pass2');
387 // Set default message ("not saved")
388 $message = getMessage('SPONSOR_ACCOUNT_DATA_NOT_SAVED');
390 // Check for submitted passwords
391 if ((!empty($postData['pass1'])) && (!empty($postData['pass2']))) {
392 // Are both passwords the same?
393 if ($postData['pass1'] == $postData['pass2']) {
394 // Okay, then set password and remove pass1 and pass2
395 $postData['password'] = md5($postData['pass1']);
399 // Remove all (maybe spoofed) unsafe data from array
400 foreach ($UNSAFE as $remove) {
401 unset($postData[$remove]);
404 // This array is for the submitted data which we will use with the SQL_QUERY_ESC() function to
408 // Prepare SQL string
409 $sql = "UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET";
410 foreach ($postData as $key => $value) {
411 // Mmmmm, too less security here???
412 $sql .= " `".secureString($key)."`='%s',";
414 // We will secure this later inside the SQL_QUERY_ESC() function
415 $DATA[] = secureString($value);
418 // Check if email has changed
419 if ((!empty($content['email'])) && (!empty($postData['email']))) {
420 if ($content['email'] != $postData['email']) {
421 // Change email address
424 // Okay, has changed then add status with UNCONFIRMED and new hash code
425 $sql .= " `status`='EMAIL', `hash`='%s',";
427 // Generate hash code
428 $HASH = md5(session_id().':'.$postData['email'].':'.detectRemoteAddr().':'.detectUserAgent().':'.time());
433 // Remove last commata
434 $sql = substr($sql, 0, -1);
437 $sql .= " WHERE `id`=%s AND password='%s' LIMIT 1";
438 $DATA[] = bigintval(getSession('sponsorid'));
439 $DATA[] = getSession('sponsorpass');
441 // Saving data was completed... ufff...
443 case 'account': // Change account data
444 if ($EMAIL === true) {
445 $message = getMessage('SPONSOR_ACCOUNT_EMAIL_CHANGED');
446 $templ = 'admin_sponsor_change_email';
447 $subj = getMessage('ADMIN_SPONSOR_ACC_EMAIL_SUBJ');
449 $message = getMessage('SPONSOR_ACCOUNT_DATA_SAVED');
450 $templ = 'admin_sponsor_change_data';
451 $subj = getMessage('ADMIN_SPONSOR_ACC_DATA_SUBJ');
455 case 'settings': // Change settings
456 // Translate some data
457 $content['receive'] = translateYesNo($content['receive_warnings']);
458 $content['interval'] = createFancyTime($content['warning_interval']);
460 // Set message template and subject for admin
461 $message = getMessage('SPONSOR_SETTINGS_SAVED');
462 $templ = 'admin_sponsor_settings';
463 $subj = getMessage('ADMIN_SPONSOR_SETTINGS_SUBJ');
466 default: // Unknown sponsor what value!
467 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown sponsor module (what) %s detected.", getWhat()));
468 $message = getMaskedMessage('SPONSOR_UNKNOWN_WHAT', getWhat());
469 $templ = ''; $subj = '';
473 // Has an entry updated?
474 if (SQL_AFFECTEDROWS() == 1) {
475 // Template and subject are set?
476 if (!empty($templ) && !empty($subj)) {
477 // Run SQL command and check for success
478 $result = SQL_QUERY_ESC($sql, $DATA, __FUNCTION__, __LINE__);
480 // Add all data to content
481 $content['new_data'] = $postData;
483 // Translate some data
484 if (isset($content['gender'])) $content['gender'] = translateGender($content['gender']);
485 if (isset($content['new_data']['gender'])) $content['new_data']['gender'] = translateGender($content['new_data']['gender']);
486 if (isset($content['receive_warnings'])) $content['new_data']['receive'] = translateYesNo($content['new_data']['receive_warnings']);
487 if (isset($content['warning_interval'])) $content['new_data']['interval'] = createFancyTime($content['new_data']['warning_interval']);
489 // Send email to admins
490 sendAdminNotification($subj, $templ, $content);
492 // Shall we send mail to the sponsor's new email address?
493 if ($content['receive_warnings'] == 'Y') {
495 * Okay send email with confirmation link to new address and with no confirmation link
496 * to the old address.
499 // First to old address
501 case 'account': // Change account data
502 $email_msg = loadEmailTemplate('sponsor_change_data', $content);
503 sendEmail($content['email'], getMessage('SPONSOR_ACC_DATA_SUBJ'), $email_msg);
505 if ($EMAIL === true) {
506 // Add hash code to content array
507 $content['hash'] = $HASH;
509 // Second mail goes to the new address
510 $email_msg = loadEmailTemplate('sponsor_change_email', $content);
511 sendEmail($content['email'], getMessage('SPONSOR_ACC_EMAIL_SUBJ'), $email_msg);
515 case 'settings': // Change settings
517 $email_msg = loadEmailTemplate('sponsor_settings', $content);
518 sendEmail($content['email'], getMessage('SPONSOR_SETTINGS_SUBJ'), $email_msg);
525 // Return final message