154 lines
5.4 KiB
PHP
154 lines
5.4 KiB
PHP
<?php
|
|
/*+***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*************************************************************************************/
|
|
|
|
require_once 'include/database/PearDatabase.php';
|
|
require_once 'include/utils/utils.php';
|
|
|
|
function wsapp_getHandler($appType){
|
|
$db = PearDatabase::getInstance();
|
|
$result = $db->pquery("SELECT * FROM vtiger_wsapp_handlerdetails WHERE type=?",array($appType));
|
|
|
|
$handlerResult = array();
|
|
|
|
if($db->num_rows($result)>0){
|
|
$handlerResult['handlerclass'] = $db->query_result($result,0,'handlerclass');
|
|
$handlerResult['handlerpath'] = $db->query_result($result,0,'handlerpath');
|
|
}
|
|
return $handlerResult;
|
|
}
|
|
|
|
function wsapp_getApplicationName($key){
|
|
$db = PearDatabase::getInstance();
|
|
|
|
$result = $db->pquery("SELECT name from vtiger_wsapp WHERE appkey=?",array($key));
|
|
$name = false;
|
|
if($db->num_rows($result)){
|
|
$name = $db->query_result($result,0,'name');
|
|
}
|
|
return $name;
|
|
}
|
|
|
|
function wsapp_getRecordEntityNameIds($entityNames,$modules,$user){
|
|
$entityMetaList = array();
|
|
$db = PearDatabase::getInstance();
|
|
|
|
if(empty($entityNames)) return;
|
|
|
|
if(!is_array($entityNames))
|
|
$entityNames = array($entityNames);
|
|
if(empty($modules))
|
|
return array();
|
|
if(!is_array($modules))
|
|
$modules = array($modules);
|
|
$entityNameIds = array();
|
|
foreach($modules as $moduleName){
|
|
if(empty($entityMetaList[$moduleName])){
|
|
$handler = vtws_getModuleHandlerFromName($moduleName, $user);
|
|
$meta = $handler->getMeta();
|
|
$entityMetaList[$moduleName] = $meta;
|
|
}
|
|
$meta = $entityMetaList[$moduleName];
|
|
$nameFieldsArray = explode(",",$meta->getNameFields());
|
|
if(count($nameFieldsArray)>1){
|
|
$nameFields = "concat(".implode(",' ',",$nameFieldsArray).")";
|
|
}
|
|
else
|
|
$nameFields = $nameFieldsArray[0];
|
|
|
|
$query = "SELECT ".$meta->getObectIndexColumn()." as id,$nameFields as entityname FROM ".$meta->getEntityBaseTable()." WHERE $nameFields IN(".generateQuestionMarks($entityNames).")";
|
|
$result = $db->pquery($query,$entityNames);
|
|
$num_rows = $db->num_rows($result);
|
|
for($i=0;$i<$num_rows;$i++){
|
|
$id = $db->query_result($result, $i,'id');
|
|
$entityName = $entityNames[$i];
|
|
$entityNameIds[$entityName] = vtws_getWebserviceEntityId($moduleName, $id);
|
|
}
|
|
}
|
|
return $entityNameIds;
|
|
}
|
|
/***
|
|
* Converts default time zone to specifiedTimeZone
|
|
*/
|
|
|
|
function wsapp_convertDateTimeToTimeZone($dateTime,$toTimeZone){
|
|
global $log,$default_timezone;
|
|
$time_zone = $default_timezone;
|
|
$source_time = date_default_timezone_set($time_zone);
|
|
$sourceDate = date("Y-m-d H:i:s");
|
|
$dest_time = date_default_timezone_set($toTimeZone);
|
|
$destinationDate = date("Y-m-d H:i:s");
|
|
$diff = (strtotime($destinationDate)-strtotime($sourceDate));
|
|
$givenTimeInSec = strtotime($dateTime);
|
|
$modifiedTimeSec = $givenTimeInSec+$diff;
|
|
$display_time = date("Y-m-d H:i:s",$modifiedTimeSec);
|
|
return $display_time;
|
|
}
|
|
|
|
function wsapp_checkIfRecordsAssignToUser($recordsIds,$userid){
|
|
$assignedRecordIds = array();
|
|
if(!is_array($recordsIds))
|
|
$recordsIds = array($recordsIds);
|
|
if(count($recordsIds)<=0)
|
|
return $assignedRecordIds;
|
|
$db = PearDatabase::getInstance();
|
|
$query = "SELECT * FROM vtiger_crmentity where crmid IN (".generateQuestionMarks($recordsIds).") and smownerid=?";
|
|
$params = array();
|
|
foreach($recordsIds as $id){
|
|
$params[] = $id;
|
|
}
|
|
$params[] = $userid;
|
|
$queryResult = $db->pquery($query,$params);
|
|
$num_rows = $db->num_rows($queryResult);
|
|
|
|
for($i=0;$i<$num_rows;$i++){
|
|
$assignedRecordIds[] = $db->query_result($queryResult,$i,"crmid");
|
|
}
|
|
return $assignedRecordIds;
|
|
}
|
|
|
|
function wsapp_getAppKey($appName){
|
|
$db = PearDatabase::getInstance();
|
|
$query = "SELECT * FROM vtiger_wsapp WHERE name=?";
|
|
$params = array($appName);
|
|
$result = $db->pquery($query,$params);
|
|
$appKey="";
|
|
if($db->num_rows($result)){
|
|
$appKey = $db->query_result($result,0,'appkey');
|
|
}
|
|
return $appKey;
|
|
}
|
|
|
|
function wsapp_getAppSyncType($appKey){
|
|
$db = PearDatabase::getInstance();
|
|
$query = "SELECT type FROM vtiger_wsapp WHERE appkey=?";
|
|
$params = array($appKey);
|
|
$result = $db->pquery($query,$params);
|
|
$syncType="";
|
|
if($db->num_rows($result)>0){
|
|
$syncType = $db->query_result($result,0,'type');
|
|
}
|
|
return $syncType;
|
|
}
|
|
|
|
function wsapp_RegisterHandler($type,$handlerClass,$handlerPath){
|
|
$db = PearDatabase::getInstance();
|
|
$query = "SELECT 1 FROM vtiger_wsapp_handlerdetails where type=?";
|
|
$result = $db->pquery($query,array($type));
|
|
if($db->num_rows($result)>0){
|
|
$saveQuery = "UPDATE vtiger_wsapp_handlerdetails SET handlerclass=?,handlerpath=? WHERE type=?";
|
|
$parameters = array($handlerClass,$handlerPath,$type);
|
|
} else{
|
|
$saveQuery = "INSERT INTO vtiger_wsapp_handlerdetails VALUES(?,?,?)";
|
|
$parameters = array($type,$handlerClass,$handlerPath);
|
|
}
|
|
$db->pquery($saveQuery,$parameters);}
|
|
|
|
?>
|