d59b9ab7302605d589c86261452644253bad23ae
[mailer.git] / inc / libs / mediadata_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/08/2005 *
4  * ===================                          Last change: 10/08/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mediadata_functions.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for the mediadata extension            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer die verbesserten Mediendaten     *
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 // Update an entry
44 function updateMediadataEntry ($keys_array, $mode, $value) {
45         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'keys_array[]=' . gettype($keys_array) . ',mode=' . $mode . ',value=' . $value . ' - ENTERED!');
46         // Default is nothing added/updated
47         $added = FALSE;
48
49         // Are there entries?
50         if (is_array($keys_array) && ($value > 0)) {
51                 // Is an array so we can run it through
52                 foreach ($keys_array as $key) {
53                         // First check if it does exist
54                         $result_media = SQL_QUERY_ESC("SELECT
55         `media_key`
56 FROM
57         `{?_MYSQL_PREFIX?}_mediadata`
58 WHERE
59         `media_key`='%s'
60 LIMIT 1", array($key), __FUNCTION__, __LINE__);
61                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'key=' . $key . ',SQL_NUMROWS()=' . SQL_NUMROWS($result_media));
62                         if (SQL_NUMROWS($result_media) == 0) {
63                                 // Not found so we create it (mode will be ignored here!)
64                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mediadata` (`media_key`, `media_value`) VALUES ('%s', '%s')",
65                                         array($key, $value), __FUNCTION__, __LINE__);
66                         } else {
67                                 // Update entry
68                                 switch ($mode) {
69                                         case 'add': $mode = '+'; break;
70                                         case 'sub': $mode = '-'; break;
71                                 } // END - switch
72
73                                 if ($mode == 'init') {
74                                         // Initialize entry
75                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_mediadata` SET `media_value`=%s WHERE `media_key`='%s' LIMIT 1",
76                                                 array($value, $key), __FUNCTION__, __LINE__);
77                                 } else {
78                                         // Update entry
79                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_mediadata` SET `media_value`=`media_value`".$mode."%s WHERE `media_key`='%s' LIMIT 1",
80                                                 array($value, $key), __FUNCTION__, __LINE__);
81                                 }
82                         }
83
84                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'added=' . intval($added));
85                         $added = (!SQL_HASZEROAFFECTED());
86                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'added=' . intval($added));
87                 } // END - foreach
88         } // END - if
89
90         // Zero entries are always added
91         if ($value == 0) {
92                 // Is zero value, so we need to set $added here to avoid wrong false result
93                 $added = TRUE;
94         } // END - if
95
96         // Return result
97         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'keys_array[]=' . gettype($keys_array) . ',mode=' . $mode . ',value=' . $value . ',added=' . intval($added) . ' - EXIT!');
98         return $added;
99 }
100
101 // Getter for entry
102 function getMediadataEntry ($key) {
103         // Return nothing by default
104         $value = '';
105
106         // Check for entry
107         $result = SQL_QUERY_ESC("SELECT `media_value` FROM `{?_MYSQL_PREFIX?}_mediadata` WHERE `media_key`='%s' LIMIT 1",
108                 array($key), __FUNCTION__, __LINE__);
109
110         // Is there one?
111         if (SQL_NUMROWS($result) == 1) {
112                 // Load data
113                 list($value) = SQL_FETCHROW($result);
114         } // END - if
115
116         // Return data
117         return $value;
118 }
119
120 // ----------------------------------------------------------------------------
121 //                 Wrapper functions for configuration entries
122 // ----------------------------------------------------------------------------
123
124 // Getter for 'mt_start'
125 function getMtStart () {
126         // Is the cache entry set?
127         if (!isset($GLOBALS[__FUNCTION__])) {
128                 // No, so determine it
129                 $GLOBALS[__FUNCTION__] = getConfig('mt_start');
130         } // END - if
131
132         // Return cached entry
133         return $GLOBALS[__FUNCTION__];
134 }
135
136 // Getter for 'mt_stage'
137 function getMtStage () {
138         // Is the cache entry set?
139         if (!isset($GLOBALS[__FUNCTION__])) {
140                 // No, so determine it
141                 $GLOBALS[__FUNCTION__] = getConfig('mt_stage');
142         } // END - if
143
144         // Return cached entry
145         return $GLOBALS[__FUNCTION__];
146 }
147
148 // [EOF]
149 ?>