371401d63ca7b436a5e111c71812c657296a1ad0
[mailer.git] / inc / libs / autopurge_functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 05/30/2004 *
4  * ===============                              Last change: 08/09/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : autopurge_functions.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Special functions                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Spezielle Funktionen                             *
12  * -------------------------------------------------------------------- *
13  * $Revision:: 856                                                    $ *
14  * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author:: stelzi                                                   $ *
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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 }
44
45 function AUTOPURGE_ADD_POINTS($uid, $points) {
46         // Check if he has locked points or not
47         $result = SQL_QUERY_ESC("SELECT ref_payout FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
48                 array(bigintval($uid)), __FUNCTION__, __LINE__);
49         list($payout) = SQL_FETCHROW($result);
50         SQL_FREERESULT($result);
51
52         if (($payout > 0) && (!empty($payout))) {
53                 // Yes, he has.
54                 $target = "locked_points";
55         } elseif ($payout == "0") {
56                 // No, he has not
57                 $target = "points";
58         }
59
60         // Add points...
61         if (empty($payout)) {
62                 // ... to jackpot account
63                 ADD_JACKPOT($points);
64                 if (empty($jackpot)) $jackpot = 0;
65                 $jackpot += $points;
66         } else {
67                 // .. to user's account
68                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET %s=%s+%s WHERE userid=%s AND ref_depth=0 LIMIT 1",
69                         array($target, $target, $points, bigintval($uid)), __FUNCTION__, __LINE__);
70
71                 // Update mediadata as well
72                 if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points")) {
73                         // Update database
74                         MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);
75                 }
76
77                 // Send out mail to user
78                 $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid);
79                 SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg);
80         }
81 }
82
83 //
84 ?>