112 lines
4.1 KiB
PHP
112 lines
4.1 KiB
PHP
<?php
|
|
/* +**********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
|
|
* ("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.
|
|
* ***********************************************************************************/
|
|
|
|
class CustomerPortal_FetchRecentRecords extends CustomerPortal_API_Abstract {
|
|
|
|
function process(CustomerPortal_API_Request $request) {
|
|
$response = new CustomerPortal_API_Response();
|
|
$current_user = $this->getActiveUser();
|
|
global $adb;
|
|
|
|
if ($current_user) {
|
|
$sql = "SELECT widgets FROM vtiger_customerportal_settings LIMIT 1";
|
|
$result = $adb->pquery($sql, array());
|
|
$widgetsJSON = $adb->query_result($result, 0, 'widgets');
|
|
$data = array();
|
|
$data = Zend_Json::decode(decode_html($widgetsJSON));
|
|
$widgets = $data['widgets'];
|
|
$activeModules = array();
|
|
|
|
foreach ($widgets as $key => $value) {
|
|
if (CustomerPortal_Utils::isModuleActive($key) && $value == '1')
|
|
$activeModules[] = $key;
|
|
}
|
|
$result = array();
|
|
$customerId = $this->getActiveCustomer()->id;
|
|
$contactWebserviceId = vtws_getWebserviceEntityId('Contacts', $customerId);
|
|
|
|
foreach ($activeModules as $module) {
|
|
$mode = CustomerPortal_Settings_Utils::getDefaultMode($module);
|
|
|
|
if ($mode === 'all') {
|
|
$parentId = $this->getParent($contactWebserviceId);
|
|
if (empty($parentId)) {
|
|
$parentId = $contactWebserviceId;
|
|
}
|
|
} else {
|
|
$parentId = $contactWebserviceId;
|
|
}
|
|
$limit = 5;
|
|
$sql = sprintf("SELECT id FROM %s ", $module);
|
|
$filterClause = sprintf('ORDER BY modifiedtime DESC LIMIT %s', $limit);
|
|
|
|
if ($module == 'Faq') {
|
|
$queryResult = vtws_query($sql . "WHERE faqstatus='Published' " . $filterClause . ';', $current_user);
|
|
} else if ($module == 'HelpDesk') {
|
|
$fields = array("ticketstatus", "description");
|
|
$moduleModel = Vtiger_Module_Model::getInstance($module);
|
|
$allowedFields = array();
|
|
|
|
foreach ($fields as $field) {
|
|
$fieldModel = Vtiger_Field_Model::getInstance($field, $moduleModel);
|
|
if ($fieldModel->isActiveField()) {
|
|
$allowedFields[] = $field;
|
|
}
|
|
}
|
|
|
|
if (!empty($allowedFields)) {
|
|
$fieldsSql = implode(",", $allowedFields);
|
|
$sql = sprintf("SELECT id, %s FROM %s", $fieldsSql, $module);
|
|
}
|
|
$queryResult = vtws_query_related($sql, $parentId, CustomerPortal_Utils::getRelatedModuleLabel($module), $current_user, $filterClause);
|
|
} else if ($mode == 'all' && in_array($module, array('Products', 'Services'))) {
|
|
$sql = sprintf("SELECT id FROM %s", $module);
|
|
$filterClause = sprintf("ORDER BY modifiedtime DESC LIMIT %s;", $limit);
|
|
$queryResult = vtws_query($sql . ' ' . $filterClause, $current_user);
|
|
} else {
|
|
$queryResult = vtws_query_related($sql, $parentId, CustomerPortal_Utils::getRelatedModuleLabel($module), $current_user, $filterClause);
|
|
}
|
|
$num_rows = sizeof($queryResult);
|
|
$records = array();
|
|
$recordIds = array();
|
|
|
|
if (!empty($queryResult)) {
|
|
foreach ($queryResult as $resultRecord) {
|
|
$recordIds[] = $resultRecord['id'];
|
|
}
|
|
$recordLabels = Vtiger_Util_Helper::fetchRecordLabelsForIds($recordIds);
|
|
for ($i = 0; $i < $num_rows; $i++) {
|
|
$record = array();
|
|
$id = $recordIds[$i];
|
|
foreach ($recordLabels as $key => $value) {
|
|
if ($key == $id) {
|
|
$record['label'] = decode_html($value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ($module == 'HelpDesk') {
|
|
$record['status'] = $queryResult[$i]['ticketstatus'];
|
|
$record['statuslabel'] = decode_html(vtranslate($queryResult[$i]['ticketstatus'], $module));
|
|
$record['description'] = decode_html($queryResult[$i]['description']);
|
|
}
|
|
$record['id'] = $id;
|
|
$records[] = $record;
|
|
}
|
|
}
|
|
$result[] = array($module => $records);
|
|
}
|
|
$response->setResult($result);
|
|
}
|
|
return $response;
|
|
}
|
|
|
|
}
|