Extension 'ext-coupon' moved to branch, SQLs improved:
[mailer.git] / inc / modules / admin / what-unlock_sponsor.php
index d8018db2d332e2acf86cf9dd0906daf4e42dd045..3a1852f82561ac98ef5512ffd68d79ce115d7d1a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 04/23/2005 *
- * ===============                              Last change: 05/18/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 04/23/2005 *
+ * ===================                          Last change: 05/19/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-unlock_sponsor.php                          *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Sponsorenaccounts freigeben                      *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
- * This program is free software. You can redistribute it and/or modify *
+ * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License.       *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
  *                                                                      *
  * This program is distributed in the hope that it will be useful,      *
  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin()))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addYouAreHereLink('admin', __FILE__);
 
 // Check if admin has submitted form
-if (isset($HTTP_POST_VARS['ok']))
-{
+if (isFormSent()) {
        // Does he have selected at least one sponsor?
-       if (SELECTION_COUNT($HTTP_POST_VARS['id']) > 0)
-       {
+       if (ifPostContainsSelections('id')) {
                // At least one entry selected
-               foreach ($HTTP_POST_VARS['id'] as $id=>$sel)
-               {
+               foreach (postRequestParameter('id') as $id => $selected) {
+                       // Secure id number and init $content
+                       $content = array(
+                               'id'    => bigintval($id),
+                               'refid' => 0
+                       );
+
                        // Load his personal data
-                       $result_main = SQL_QUERY_ESC("SELECT salut, surname, family, email, remote_addr, sponsor_created, points_amount, refid
-FROM "._MYSQL_PREFIX."_sponsor_data
-WHERE status='PENDING' AND id='%s' LIMIT 1",
- array(bigintval($id)), __FILE__, __LINE__);
-                       $refid = 0;
-                       if (SQL_NUMROWS($result_main) == 1)
-                       {
-                               // Load data and free memory
-                               list($salut, $sname, $fname, $email, $ip, $created, $points, $refid) = SQL_FETCHROW($result_main);
+                       $result_main = SQL_QUERY_ESC("SELECT
+       `id`, `gender`, `surname`, `family`, `email`, `remote_addr`,
+       UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`,
+       `points_amount`, `points_used`,
+       (`points_amount` + `points_used`) AS `points`,
+       `refid`
+FROM
+       `{?_MYSQL_PREFIX?}_sponsor_data`
+WHERE
+       `status` IN('PENDING','UNCONFIRMED') AND
+       `id`=%s
+LIMIT 1",
+                       array($content['id']), __FILE__, __LINE__);
+
+                       /// Is there an entry?
+                       if (SQL_NUMROWS($result_main) == 1) {
+                               // Load data
+                               $content = SQL_FETCHARRAY($result_main);
 
                                // Check for open payments and close them
-                               $result = SQL_QUERY_ESC("SELECT DISTINCT so.aid, so.pay_count, so.pay_ordered, so.pay_status,
-sp.pay_name, sp.pay_rate, sp.pay_currency
-FROM "._MYSQL_PREFIX."_sponsor_orders AS so
-LEFT JOIN "._MYSQL_PREFIX."_sponsor_paytypes AS sp
-ON sp.id=so.payid
-WHERE so.sponsorid='%s'
-ORDER BY sp.pay_name",
- array(bigintval($id)), __FILE__, __LINE__);
-                               if (SQL_NUMROWS($result) > 0)
-                               {
+                               $result = SQL_QUERY_ESC("SELECT
+       so.admin_id, so.pay_count,
+       UNIX_TIMESTAMP(so.pay_ordered) AS `pay_ordered`,
+       so.pay_status, sp.pay_name, sp.pay_rate, sp.pay_currency
+FROM
+       `{?_MYSQL_PREFIX?}_sponsor_orders` AS so
+LEFT JOIN
+       `{?_MYSQL_PREFIX?}_sponsor_paytypes` AS sp
+ON
+       sp.id=so.payment_id
+WHERE
+       so.sponsor_id=%s
+ORDER BY
+       sp.pay_name ASC",
+                                       array($content['id']), __FILE__, __LINE__);
+                               if (!SQL_HASZERONUMS($result)) {
                                        // Payment does exist
-                                       while(list($aid, $count, $ordered, $status, $pname, $prate, $pcurr) = SQL_FETCHROW($result))
-                                       {
-                                               if ($aid == "0")
-                                               {
-                                                       // No admin assigned!
-                                                       $aid = SPONSOR_NO_ADMIN;
-                                               }
-                                                else
-                                               {
-                                                       // Load admin's email address for contact
-                                                       $result_aid = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id='%s' LIMIT 1",
-                                                        array(bigintval($aid)), __FILE__, __LINE__);
-                                                       list($aid) = SQL_FETCHROW($result_aid);
-                                                       SQL_FREERESULT($result_aid);
+                                       while ($content2 = SQL_FETCHARRAY($result)) {
+                                               // Merge both arrays
+                                               $content = merge_array($content, $content2);
 
-                                                       // Check if admin login is still in db
-                                                       if (empty($aid)) $aid = ADMIN_NOT_FOUND;
-                                               }
+                                               // Set default email
+                                               $content['email'] = '{--SPONSOR_NO_ADMIN--}';
+                                               if ($content['admin_id'] > 0) {
+                                                       // Load admin's email address for contact
+                                                       $content['email'] = getAdminEmail($content['admin_id']);
+                                               } // END - if
 
                                                // Transfer data to array
-                                               $content = array(
-                                                       'aid'   => $aid,
-                                                       'order' => ($count * $prate)." ".$pcurr,
-                                                       'stamp' => MAKE_DATETIME($ordered, "2"),
-                                                       'pname' => $pname,
+                                               $data = array(
+                                                       'admin_id' => $content['email'],
+                                                       'order'    => ($content['pay_count'] * $content['pay_rate']) . ' ' . $content['pay_currency'],
+                                                       'stamp'    => generateDateTime($content['pay_ordered'], 2),
+                                                       'pname'    => $content['pay_name'],
                                                );
-       
+
                                                // Load email template
-                                               $content['msg'] = LOAD_EMAIL_TEMPLATE("sponsor_unlock_sponsor_pay", $content, $id);
+                                               $content['message'] = loadEmailTemplate('sponsor_unlock_sponsor_pay', $data, $content['id']);
                                        }
-                               }
-                                        else
-                               {
+                               } else {
                                        // No payments found
-                                       $content['msg'] = SPONSOR_NO_PAYMENTS_FOUND;
+                                       $content['message'] = '{--SPONSOR_NO_PAYMENTS_FOUND--}';
                                }
 
                                // Free memory
                                SQL_FREERESULT($result);
+                       } else {
+                               // Not found
+                               displayMessage(getMaskedMessage('ADMIN_SPONSOR_ACCOUNT_404_ALREADY_CONFIRMED', $content['id']));
+                               return;
                        }
 
                        // Free memory
                        SQL_FREERESULT($result_main);
 
                        // Unlock sponsor account
-                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET status='CONFIRMED'
-WHERE id='%s' AND status='PENDING' LIMIT 1",
- array(bigintval($id)), __FILE__, __LINE__);
-
-                       // Update, if applyable, referral count and points
-                       if (($refid > 0) && ($refid != $id))
-                       {
-                               // Update referral account
-                               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data
-SET points_amount=points_amount+%s, ref_count=ref_count+1
-WHERE id='%s' LIMIT 1",
- array($CONFIG['sponsor_ref_points'], bigintval($refid)), __FILE__, __LINE__);
-
-                               // Load referral's data
-                               if (SQL_AFFECTED_ROWS($link) == 1)
-                               {
-                                       $result = SQL_QUERY_ESC("SELECT id, salut, surname, family, email,
-(points_amount - points_used) AS points, receive_warnings, ref_count AS refs
-FROM "._MYSQL_PREFIX."_sponsor_data
-WHERE id='%s' LIMIT 1",
- array(bigintval($refid)), __FILE__, __LINE__);
-                                       $REFERRAL = SQL_FETCHARRAY($result);
-                                       if ($REFERRAL['receive_warnings'] == "Y")
-                                       {
-                                               // Translate some data
-                                               $REFERRAL['points']     = TRANSLATE_COMMA($REFERRAL['points']);
-                                               $REFERRAL['ref_points'] = TRANSLATE_COMMA($CONFIG['sponsor_ref_points']);
-                                               $REFERRAL['salut']      = TRANSLATE_SEX($REFERRAL['salut']);
-
-                                               // Send notification to referral
-                                               $REF_MSG = LOAD_EMAIL_TEMPLATE("sponsor_ref_notify", $REFERRAL);
-                                               SEND_EMAIL($REFERRAL['email'], SPONSOR_REF_NOTIFY_SUBJ, $REF_MSG);
-                                       }
+                       SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_sponsor_data`
+SET
+       `status`='CONFIRMED'
+WHERE
+       `id`=%s AND
+       `status` IN('PENDING','UNCONFIRMED')
+LIMIT 1",
+                       array($content['id']), __FILE__, __LINE__);
+
+                       // Update, if applyable, referal count and points
+                       if ((isValidUserId($content['refid'])) && ($content['refid'] != $content['id'])) {
+                               // Update referal account
+                               SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_sponsor_data`
+SET
+       `points_amount`=`points_amount`+{?sponsor_ref_points?}, `ref_count`=`ref_count`+1
+WHERE
+       `id`=%s
+LIMIT 1",
+                                       array(bigintval($content['refid'])), __FILE__, __LINE__);
+
+                               // Whas that update fine?
+                               if (!SQL_HASZEROAFFECTED()) {
+                                       // Load referal's data
+                                       $result = SQL_QUERY_ESC("SELECT
+       `id`, `gender`, `surname`, `family`, `email`,
+       (`points_amount` - `points_used`) AS `points`,
+       `receive_warnings`, `ref_count` AS refs
+FROM
+       `{?_MYSQL_PREFIX?}_sponsor_data`
+WHERE
+       `id`=%s
+LIMIT 1",
+                                       array(bigintval($content['refid'])), __FILE__, __LINE__);
+                                       $REFERAL = SQL_FETCHARRAY($result);
+
+                                       // Send warnings out?
+                                       if ($REFERAL['receive_warnings'] == 'Y') {
+                                               // Send notification to referal
+                                               $REFERAL_MSG = loadEmailTemplate('sponsor_ref_notify', $REFERAL);
+                                               sendEmail($REFERAL['email'], '{--SPONSOR_REFERAL_NOTIFY_SUBJECT--}', $REFERAL_MSG);
+                                       } // END - if
 
                                        // Free memory
                                        SQL_FREERESULT($result);
-                               }
-                       }
-
-                       // Transfer data to array
-                       $content['salut']   = TRANSLATE_SEX($salut);
-                       $content['surname'] = $sname;
-                       $content['family']  = $fname;
-                       $content['sponsor'] = $id;
-                       $content['points']  = TRANSLATE_COMMA($points);
+                               } // END - if
+                       } // END - if
 
                        // So let's send the email away
-                       $msg = LOAD_EMAIL_TEMPLATE("sponsor_unlocked", $content);
-                       SEND_EMAIL($email, SPONSOR_UNLOCKED_SUBJ, $msg);
-               }
-       }
-        else
-       {
+                       $message = loadEmailTemplate('sponsor_unlocked', $content);
+                       sendEmail($content['email'], '{--SPONSOR_UNLOCKED_SUBJECT--}', $message);
+               } // END - foreach
+       } else {
                // Nothing selected
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SPONSOR_NONE_SELECTED_UNLOCK);
+               displayMessage('{--ADMIN_SPONSOR_NONE_SELECTED_UNLOCK--}');
        }
-
-       // Add seperator
-       OUTPUT_HTML("<BR>");
-}
+} // END - if
 
 // Begin listing of all pending sponsor accounts
-$result = SQL_QUERY("SELECT id, salut, surname, family, email, remote_addr, sponsor_created
-FROM "._MYSQL_PREFIX."_sponsor_data
-WHERE status='PENDING' ORDER BY id", __FILE__, __LINE__);
-
-if (SQL_NUMROWS($result) > 0)
-{
+$result = SQL_QUERY("SELECT
+       `id`, `gender`, `surname`, `family`, `email`, `remote_addr`,
+       UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`
+FROM
+       `{?_MYSQL_PREFIX?}_sponsor_data`
+WHERE
+       `status` IN('PENDING','UNCONFIRMED')
+ORDER BY
+       `id`", __FILE__, __LINE__);
+
+if (!SQL_HASZERONUMS($result)) {
        // Entries found so let's list them!
-       $OUT = ""; $SW = 2;
-       while(list($id, $salut, $sname, $fname, $email, $ip, $created) = SQL_FETCHROW($result))
-       {
-               // Transfer data to array
-               $content = array(
-                       'sw'      => $SW,
-                       'id'      => $id,
-                       'salut'   => TRANSLATE_SEX($salut),
-                       'surname' => $sname,
-                       'family'  => $fname,
-                       'email'   => "mailto:".$email,
-                       'remote'  => $ip,
-                       'created' => MAKE_DATETIME($created, "2"),
-               );
+       $OUT = '';
+       while ($content = SQL_FETCHARRAY($result)) {
+               // Translate some data
+               $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2);
 
                // Load row template and switch colors
-               $OUT .= LOAD_TEMPLATE("admin_unlock_sponsor_row", true, $content);
-               $SW = 3 - $SW;
-       }
-       define('__SPONSOR_ROWS', $OUT);
+               $OUT .= loadTemplate('admin_unlock_sponsor_row', true, $content);
+       } // END - while
 
        // Load template
-       LOAD_TEMPLATE("admin_unlock_sponsor");
-}
- else
-{
+       loadTemplate('admin_unlock_sponsor', false, $OUT);
+} else {
        // No pending accounts found
-       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SPONSOR_NONE_PENDING);
+       displayMessage('{--ADMIN_SPONSOR_NONE_PENDING--}');
 }
 
 // Free memory
 SQL_FREERESULT($result);
 
-//
+// [EOF]
 ?>