317 lines
11 KiB
PHP
317 lines
11 KiB
PHP
|
|
<?php
|
|||
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
|||
|
|
/*********************************************************************************
|
|||
|
|
* SugarCRM is a customer relationship management program developed by
|
|||
|
|
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
|||
|
|
*
|
|||
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|||
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|||
|
|
* Free Software Foundation with the addition of the following permission added
|
|||
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|||
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|||
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|||
|
|
*
|
|||
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|||
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|||
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|||
|
|
* details.
|
|||
|
|
*
|
|||
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
|||
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|||
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|||
|
|
* 02110-1301 USA.
|
|||
|
|
*
|
|||
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|||
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|||
|
|
*
|
|||
|
|
* The interactive user interfaces in modified source and object code versions
|
|||
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|||
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
|||
|
|
*
|
|||
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|||
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|||
|
|
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
|||
|
|
* technical reasons, the Appropriate Legal Notices must display the words
|
|||
|
|
* "Powered by SugarCRM".
|
|||
|
|
********************************************************************************/
|
|||
|
|
/*********************************************************************************
|
|||
|
|
|
|||
|
|
* Description: This file handles the Data base functionality for the application.
|
|||
|
|
* It acts as the DB abstraction layer for the application. It depends on helper classes
|
|||
|
|
* which generate the necessary SQL. This sql is then passed to PEAR DB classes.
|
|||
|
|
* The helper class is chosen in DBManagerFactory, which is driven by 'db_type' in 'dbconfig' under config.php.
|
|||
|
|
*
|
|||
|
|
* All the functions in this class will work with any bean which implements the meta interface.
|
|||
|
|
* The passed bean is passed to helper class which uses these functions to generate correct sql.
|
|||
|
|
*
|
|||
|
|
* The meta interface has the following functions:
|
|||
|
|
* getTableName() Returns table name of the object.
|
|||
|
|
* getFieldDefinitions() Returns a collection of field definitions in order.
|
|||
|
|
* getFieldDefintion(name) Return field definition for the field.
|
|||
|
|
* getFieldValue(name) Returns the value of the field identified by name.
|
|||
|
|
* If the field is not set, the function will return boolean FALSE.
|
|||
|
|
* getPrimaryFieldDefinition() Returns the field definition for primary key
|
|||
|
|
*
|
|||
|
|
* The field definition is an array with the following keys:
|
|||
|
|
*
|
|||
|
|
* name This represents name of the field. This is a required field.
|
|||
|
|
* type This represents type of the field. This is a required field and valid values are:
|
|||
|
|
* <EFBFBD> int
|
|||
|
|
* <EFBFBD> long
|
|||
|
|
* <EFBFBD> varchar
|
|||
|
|
* <EFBFBD> text
|
|||
|
|
* <EFBFBD> date
|
|||
|
|
* <EFBFBD> datetime
|
|||
|
|
* <EFBFBD> double
|
|||
|
|
* <EFBFBD> float
|
|||
|
|
* <EFBFBD> uint
|
|||
|
|
* <EFBFBD> ulong
|
|||
|
|
* <EFBFBD> time
|
|||
|
|
* <EFBFBD> short
|
|||
|
|
* <EFBFBD> enum
|
|||
|
|
* length This is used only when the type is varchar and denotes the length of the string.
|
|||
|
|
* The max value is 255.
|
|||
|
|
* enumvals This is a list of valid values for an enum separated by "|".
|
|||
|
|
* It is used only if the type is <EFBFBD>enum<EFBFBD>;
|
|||
|
|
* required This field dictates whether it is a required value.
|
|||
|
|
* The default value is <EFBFBD>FALSE<EFBFBD>.
|
|||
|
|
* isPrimary This field identifies the primary key of the table.
|
|||
|
|
* If none of the fields have this flag set to <EFBFBD>TRUE<EFBFBD>,
|
|||
|
|
* the first field definition is assume to be the primary key.
|
|||
|
|
* Default value for this field is <EFBFBD>FALSE<EFBFBD>.
|
|||
|
|
* default This field sets the default value for the field definition.
|
|||
|
|
*
|
|||
|
|
*
|
|||
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
|||
|
|
* All Rights Reserved.
|
|||
|
|
* Contributor(s): ______________________________________..
|
|||
|
|
********************************************************************************/
|
|||
|
|
|
|||
|
|
//Technically we can port all the functions in the latest bean to this file
|
|||
|
|
// that is what PEAR is doing anyways.
|
|||
|
|
|
|||
|
|
require_once('include/database/MysqlManager.php');
|
|||
|
|
|
|||
|
|
class MysqliManager extends MysqlManager
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::$dbType
|
|||
|
|
*/
|
|||
|
|
public $dbType = 'mysql';
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::$backendFunctions
|
|||
|
|
*/
|
|||
|
|
protected $backendFunctions = array(
|
|||
|
|
'free_result' => 'mysqli_free_result',
|
|||
|
|
'close' => 'mysqli_close',
|
|||
|
|
'row_count' => 'mysqli_num_rows',
|
|||
|
|
'affected_row_count' => 'mysqli_affected_rows',
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
protected $tmp_con;
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::checkError()
|
|||
|
|
*/
|
|||
|
|
public function checkError(
|
|||
|
|
$msg = '',
|
|||
|
|
$dieOnError = false
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
if (DBManager::checkError($msg, $dieOnError))
|
|||
|
|
return true;
|
|||
|
|
|
|||
|
|
if (mysqli_errno($this->getDatabase())){
|
|||
|
|
if($this->dieOnError || $dieOnError){
|
|||
|
|
sugar_die ($msg."MySQL error ".mysqli_errno($this->database).": ".mysqli_error($this->database));
|
|||
|
|
}
|
|||
|
|
else{
|
|||
|
|
$this->last_error = $msg."MySQL error ".mysqli_errno($this->database).": ".mysqli_error($this->database);
|
|||
|
|
}
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see MysqlManager::query()
|
|||
|
|
*/
|
|||
|
|
public function query(
|
|||
|
|
$sql,
|
|||
|
|
$dieOnError = false,
|
|||
|
|
$msg = '',
|
|||
|
|
$suppress = false,
|
|||
|
|
$autofree = false
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
static $queryMD5 = array();
|
|||
|
|
parent::countQuery($sql);
|
|||
|
|
$this->checkConnection();
|
|||
|
|
//$this->freeResult();
|
|||
|
|
$this->query_time = microtime(true);
|
|||
|
|
$this->lastsql = $sql;
|
|||
|
|
if ($suppress==true){
|
|||
|
|
}
|
|||
|
|
else {
|
|||
|
|
$result = mysqli_query($this->database,$sql);
|
|||
|
|
}
|
|||
|
|
$md5 = md5($sql);
|
|||
|
|
|
|||
|
|
if (empty($queryMD5[$md5]))
|
|||
|
|
$queryMD5[$md5] = true;
|
|||
|
|
|
|||
|
|
$this->lastmysqlrow = -1;
|
|||
|
|
$this->query_time = microtime(true) - $this->query_time;
|
|||
|
|
|
|||
|
|
$this->checkError($msg.' Query Failed:' . $sql . '::', $dieOnError);
|
|||
|
|
if($autofree)
|
|||
|
|
$this->lastResult[] =& $result;
|
|||
|
|
|
|||
|
|
return $result;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::getFieldsArray()
|
|||
|
|
*/
|
|||
|
|
public function getFieldsArray(
|
|||
|
|
&$result,
|
|||
|
|
$make_lower_case = false
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
$field_array = array();
|
|||
|
|
|
|||
|
|
if (!isset($result) || empty($result))
|
|||
|
|
return 0;
|
|||
|
|
|
|||
|
|
$i = 0;
|
|||
|
|
while ($i < mysqli_num_fields($result)) {
|
|||
|
|
$meta = mysqli_fetch_field_direct($result, $i);
|
|||
|
|
if (!$meta)
|
|||
|
|
return 0;
|
|||
|
|
|
|||
|
|
if($make_lower_case == true)
|
|||
|
|
$meta->name = strtolower($meta->name);
|
|||
|
|
|
|||
|
|
$field_array[] = $meta->name;
|
|||
|
|
|
|||
|
|
$i++;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return $field_array;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::fetchByAssoc()
|
|||
|
|
*/
|
|||
|
|
public function fetchByAssoc(
|
|||
|
|
&$result,
|
|||
|
|
$rowNum = -1,
|
|||
|
|
$encode = true
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
if (!$result)
|
|||
|
|
return false;
|
|||
|
|
|
|||
|
|
if ($result && $rowNum > -1) {
|
|||
|
|
if ($this->getRowCount($result) > $rowNum)
|
|||
|
|
mysqli_data_seek($result, $rowNum);
|
|||
|
|
$this->lastmysqlrow = $rowNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
$row = mysqli_fetch_assoc($result);
|
|||
|
|
|
|||
|
|
if ($encode && $this->encode && is_array($row))
|
|||
|
|
return array_map('to_html', $row);
|
|||
|
|
|
|||
|
|
return $row;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::quote()
|
|||
|
|
*/
|
|||
|
|
public function quote(
|
|||
|
|
$string,
|
|||
|
|
$isLike = true
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
return mysqli_escape_string($this->getDatabase(),DBManager::quote($string));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::quoteForEmail()
|
|||
|
|
*/
|
|||
|
|
public function quoteForEmail(
|
|||
|
|
$string,
|
|||
|
|
$isLike = true
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
return mysqli_escape_string($this->getDatabase(),$string);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
function switchDataBase(){
|
|||
|
|
session_start();
|
|||
|
|
if($_SESSION['authenticated_user_id']!=''){
|
|||
|
|
global $sugar_config;
|
|||
|
|
|
|||
|
|
$link = mysql_connect($sugar_config['dbconfig']['db_host_name'],$sugar_config['dbconfig']['db_user_name'],$sugar_config['dbconfig']['db_password']);
|
|||
|
|
mysql_select_db($sugar_config['dbconfig']['db_name'],$link);
|
|||
|
|
$zap=mysql_query("select dbasename from users where id='".$_SESSION['authenticated_user_id']."'",$link);
|
|||
|
|
$row=mysql_fetch_array($zap);
|
|||
|
|
mysql_close($link);
|
|||
|
|
return $row['dbasename'];
|
|||
|
|
|
|||
|
|
} else {
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @see DBManager::connect()
|
|||
|
|
*/
|
|||
|
|
public function connect(
|
|||
|
|
array $configOptions = null,
|
|||
|
|
$dieOnError = false,
|
|||
|
|
$dbase = false
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
global $sugar_config;
|
|||
|
|
|
|||
|
|
if (is_null($configOptions))
|
|||
|
|
$configOptions = $sugar_config['dbconfig'];
|
|||
|
|
|
|||
|
|
if(!isset($this->database)) {
|
|||
|
|
|
|||
|
|
//mysqli connector has a separate parameter for port.. We need to separate it out from the host name
|
|||
|
|
$dbhost=$configOptions['db_host_name'];
|
|||
|
|
$dbport=null;
|
|||
|
|
$pos=strpos($configOptions['db_host_name'],':');
|
|||
|
|
if ($pos !== false) {
|
|||
|
|
$dbhost=substr($configOptions['db_host_name'],0,$pos);
|
|||
|
|
$dbport=substr($configOptions['db_host_name'],$pos+1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
$this->database = mysqli_connect($dbhost,$configOptions['db_user_name'],$configOptions['db_password'],$configOptions['db_name'],$dbport)
|
|||
|
|
or sugar_die("Could not connect to server ".$dbhost." as ".$configOptions['db_user_name'].". port " .$dbport . ". " . mysqli_connect_error());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if($dbase!=false){
|
|||
|
|
@mysqli_select_db($this->database,$dbase)
|
|||
|
|
or sugar_die( "Unable to select database: " . mysqli_connect_error());
|
|||
|
|
} else {
|
|||
|
|
if($this->switchDataBase()!=false){
|
|||
|
|
|
|||
|
|
@mysqli_select_db($this->database,$this->switchDataBase())
|
|||
|
|
or sugar_die( "Unable to select database: " . mysqli_connect_error());
|
|||
|
|
} else {
|
|||
|
|
@mysqli_select_db($this->database,$configOptions['db_name'])
|
|||
|
|
or sugar_die( "Unable to select database: " . mysqli_connect_error());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// cn: using direct calls to prevent this from spamming the Logs
|
|||
|
|
mysqli_query($this->database,"SET CHARACTER SET utf8"); // no quotes around "[charset]"
|
|||
|
|
mysqli_query($this->database,"SET NAMES 'utf8'");
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|