]> git.mxchange.org Git - mailer.git/blobdiff - inc/monthly/monthly_beg.php
First batch of removal of the headers needed for revision-functions.php
[mailer.git] / inc / monthly / monthly_beg.php
index 3680e6d904b08924135602698d226da6412499f3..e8d81b230f3e22ae0c9c65ae0af41c92deeda4b0 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/22/2005 *
- * ===============                              Last change: 10/22/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 10/22/2005 *
+ * ===================                          Last change: 06/20/2010 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : monthly_beg.php                                  *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Monatliche Bettelrallye                          *
  * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!EXT_IS_ACTIVE("beg")) {
+       die();
+} elseif ((!isHtmlOutputMode()) || (!isMonthlyResetEnabled())) {
+       // Do not execute when script is in non-HTML mode or no hourly reset
+       return;
+} elseif ((!isExtensionActive('beg')) || (!isBegRallyeEnabled())) {
+       if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-beg disabled.');
        return;
 }
 
-// Do not execute when script is in CSS mode or no daily reset
-if (($CSS == 1) || (!defined('__DAILY_RESET')) || ($_CONFIG['beg_rallye'] == "N")) return;
-
-// Get current month (2 digits)
-$curr = date("m", time());
+// Debug line
+//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
 
 // Check if month is done
-if (($curr != $_CONFIG['last_month']) && ($_CONFIG['last_month'] > 0) && ($_CONFIG['beg_ranks'] > 0) && ($CSS != 1))
-{
-       // Extension "autopurge" is inactive or purging of inactive accounts is deactivated
-       $whereStatement1 = "";
-       $whereStatement2 = bigintval($_CONFIG['beg_ranks']);
+if ((getBegRanks() > 0) && (!isCssOutputMode())) {
+       // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
+       $whereStatement = '';
+
+       // Shall we exclude webmaster's own userid?
+       // @TODO Rewrite these if() blocks to a filter
+       if ((!isBegIncludeOwnEnabled()) && (isValidId(getBegUserid()))) {
+               // Exclude it
+               $whereStatement .= ' AND `d`.`userid` != {?beg_userid?}';
+       } // END - if
 
-       // Let's check if there are some points left we can "pay"...
-       if (EXT_IS_ACTIVE("autopurge"))
-       {
-               // Use last online stamp only when autopurge for inactive members is activated
-               if (($_CONFIG['ap_inactive_since'] > 0) && ($_CONFIG['beg_active'] == "Y"))
-               {
-                       // Okay, include last online timestamp
-                       $whereStatement1 = sprintf("AND last_online >= (UNIX_TIMESTAMP() - %s)", bigintval($_CONFIG['ap_inactive_since']));;
-                       $whereStatement2 = bigintval($_CONFIG['beg_ranks']);
-               }
-       }
+       // Let's check if there are some points left we can pay...
+       if ((isExtensionActive('autopurge')) && (isBegActiveEnabled()) && ((getApInactiveSince() > 0))) {
+               // Okay, include last online timestamp
+               $whereStatement .= ' AND (UNIX_TIMESTAMP() - `d`.`last_online`) < {?ap_inactive_since?}';
+       } // END - if
 
        // SQL string to check for accounts
-       $result_main = SQL_QUERY_ESC("SELECT userid, email, beg_points
-FROM "._MYSQL_PREFIX."_user_data
-WHERE status='CONFIRMED' ".$whereStatement1." AND beg_points > 0
-ORDER BY beg_points DESC, userid
-LIMIT %s",
-               array($whereStatement2), __FILE__, __LINE__);
+       $result_main = sqlQuery("SELECT
+       `d`.`userid`,
+       `d`.`beg_points`
+FROM
+       `{?_MYSQL_PREFIX?}_user_data` AS `d`
+WHERE
+       `d`.`status`='CONFIRMED'
+       " . runFilterChain('user_exclusion_sql', $whereStatement) . " AND
+       `d`.`beg_points` > 0
+ORDER BY
+       `d`.`beg_points` DESC,
+       `d`.`userid` ASC
+LIMIT {?beg_ranks?}", __FILE__, __LINE__);
 
-       if (SQL_NUMROWS($result_main) > 0) {
+       if (!ifSqlHasZeroNums($result_main)) {
                // Load our winners...
-               $UIDs = "";
-               while(list($uid, $email, $points) = SQL_FETCHROW($result_main)) {
+               while ($content = sqlFetchArray($result_main)) {
                        // Add points to user's account directly
-                       ADD_POINTS_REFSYSTEM($uid, $points, false, "0", false, "direct");
+                       initReferralSystem();
+                       addPointsThroughReferralSystem('monthly_beg', $content['userid'], $content['beg_points']);
 
                        // Load email template and email it away
-                       $msg = LOAD_EMAIL_TEMPLATE("member_beg", $points, bigintval($uid));
-                       SEND_EMAIL($email, BEG_MONTHLY_RALLYE, $msg);
-               }
-
-               // Remove first commata
-               $UIDs = substr($UIDs, 1);
-
-               // Get current month
-               $curr = date("m", time());
-               if (strlen($curr) == 1) $curr = "0".$curr;
-               if ($curr == "00") $curr = "12";
+                       $message = loadEmailTemplate('member_beg', $content, bigintval($content['userid']));
+                       sendEmail($content['userid'], '{--BEG_MONTHLY_RALLYE--}', $message);
+               } // END - while
 
                // Reset accounts
-               $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET beg_points=0.00000 WHERE beg_points > 0", __FILE__, __LINE__);
-       }
+               $result = sqlQuery('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0', __FILE__, __LINE__);
+       } // END - if
 
        // Free memory
-       SQL_FREERESULT($result_main);
-}
+       sqlFreeResult($result_main);
+} // END - if
+
+// Debug line
+//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
 
-//
+// [EOF]
 ?>