]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/utils/db_utils.php
Release 6.5.0
[Github/sugarcrm.git] / include / utils / db_utils.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37
38
39
40 /**
41  * @deprecated use DBManager::convert() instead.
42  */
43 function db_convert($string, $type, $additional_parameters=array(),$additional_parameters_oracle_only=array())
44         {
45     return $GLOBALS['db']->convert($string, $type, $additional_parameters, $additional_parameters_oracle_only);
46             }
47
48 /**
49  * @deprecated use DBManager::concat() instead.
50  */
51 function db_concat($table, $fields)
52         {
53     return $GLOBALS['db']->concat($table, $fields);
54 }
55
56 /**
57  * @deprecated use DBManager::fromConvert() instead.
58  */
59 function from_db_convert($string, $type)
60         {
61     return $GLOBALS['db']->fromConvert($string, $type);
62         }
63
64 $toHTML = array(
65         '"' => '&quot;',
66         '<' => '&lt;',
67         '>' => '&gt;',
68         "'" => '&#039;',
69 );
70 $GLOBALS['toHTML_keys'] = array_keys($toHTML);
71 $GLOBALS['toHTML_values'] = array_values($toHTML);
72 $GLOBALS['toHTML_keys_set'] = implode("", $GLOBALS['toHTML_keys']);
73 /**
74  * Replaces specific characters with their HTML entity values
75  * @param string $string String to check/replace
76  * @param bool $encode Default true
77  * @return string
78  *
79  * @todo Make this utilize the external caching mechanism after re-testing (see
80  *       log on r25320).
81  *
82  * Bug 49489 - removed caching of to_html strings as it was consuming memory and
83  * never releasing it
84  */
85 function to_html($string, $encode=true){
86         if (empty($string)) {
87                 return $string;
88         }
89
90         global $toHTML;
91
92         if($encode && is_string($string)){
93                 /*
94                  * cn: bug 13376 - handle ampersands separately
95                  * credit: ashimamura via bug portal
96                  */
97                 //$string = str_replace("&", "&amp;", $string);
98
99         if(is_array($toHTML))
100         { // cn: causing errors in i18n test suite ($toHTML is non-array)
101             $string = str_ireplace($GLOBALS['toHTML_keys'],$GLOBALS['toHTML_values'],$string);
102                 }
103         }
104
105     return $string;
106 }
107
108
109 /**
110  * Replaces specific HTML entity values with the true characters
111  * @param string $string String to check/replace
112  * @param bool $encode Default true
113  * @return string
114  */
115 function from_html($string, $encode=true) {
116     if (!is_string($string) || !$encode) {
117         return $string;
118     }
119
120         global $toHTML;
121     static $toHTML_values = null;
122     static $toHTML_keys = null;
123     static $cache = array();
124     if (!empty($toHTML) && is_array($toHTML) && (!isset($toHTML_values) || !empty($GLOBALS['from_html_cache_clear']))) {
125         $toHTML_values = array_values($toHTML);
126         $toHTML_keys = array_keys($toHTML);
127     }
128
129     // Bug 36261 - Decode &amp; so we can handle double encoded entities
130         $string = str_ireplace("&amp;", "&", $string);
131
132     if (!isset($cache[$string])) {
133         $cache[$string] = str_ireplace($toHTML_values, $toHTML_keys, $string);
134     }
135     return $cache[$string];
136 }
137
138 /*
139  * Return a version of $proposed that can be used as a column name in any of our supported databases
140  * Practically this means no longer than 25 characters as the smallest identifier length for our supported DBs is 30 chars for Oracle plus we add on at least four characters in some places (for indices for example)
141  * @param string $name Proposed name for the column
142  * @param string $ensureUnique
143  * @param int $maxlen Deprecated and ignored
144  * @return string Valid column name trimmed to right length and with invalid characters removed
145  */
146 function getValidDBName ($name, $ensureUnique = false, $maxLen = 30)
147 {
148     return DBManagerFactory::getInstance()->getValidDBName($name, $ensureUnique);
149 }
150
151
152 /**
153  * isValidDBName
154  *
155  * Utility to perform the check during install to ensure a database name entered by the user
156  * is valid based on the type of database server
157  * @param string $name Proposed name for the DB
158  * @param string $dbType Type of database server
159  * @return bool true or false based on the validity of the DB name
160  */
161 function isValidDBName($name, $dbType)
162 {
163     $db = DBManagerFactory::getTypeInstance($dbType);
164     return $db->isDatabaseNameValid($name);
165 }