- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
294 lines
9.9 KiB
PHP
294 lines
9.9 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 Users_List_View extends Settings_Vtiger_List_View {
|
|
|
|
function getHeaderScripts(Vtiger_Request $request) {
|
|
$headerScriptInstances = parent::getHeaderScripts($request);
|
|
|
|
$jsFileNames = array(
|
|
'modules.Users.resources.List',
|
|
"modules.Emails.resources.MassEdit",
|
|
"~layouts/".Vtiger_Viewer::getDefaultLayoutName()."/lib/jquery/floatThead/jquery.floatThead.js",
|
|
"~layouts/".Vtiger_Viewer::getDefaultLayoutName()."/lib/jquery/perfect-scrollbar/js/perfect-scrollbar.jquery.js"
|
|
);
|
|
|
|
$jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);
|
|
$headerScriptInstances = array_merge($headerScriptInstances, $jsScriptInstances);
|
|
return $headerScriptInstances;
|
|
}
|
|
|
|
public function process(Vtiger_Request $request) {
|
|
$viewer = $this->getViewer($request);
|
|
$this->initializeListViewContents($request, $viewer);
|
|
$viewer->view('ListViewContents.tpl', $request->getModule(false));
|
|
}
|
|
|
|
/*
|
|
* Function to initialize the required data in smarty to display the List View Contents
|
|
*/
|
|
public function initializeListViewContents(Vtiger_Request $request, Vtiger_Viewer $viewer) {
|
|
$moduleName = $request->getModule();
|
|
$cvId = $request->get('viewname');
|
|
$pageNumber = $request->get('page');
|
|
$orderBy = $request->get('orderby');
|
|
$sortOrder = $request->get('sortorder');
|
|
$searchParams = $request->get('search_params');
|
|
if($sortOrder == "ASC"){
|
|
$nextSortOrder = "DESC";
|
|
$sortImage = "icon-chevron-down";
|
|
$faSortImage = "fa-sort-desc";
|
|
}else{
|
|
$nextSortOrder = "ASC";
|
|
$sortImage = "icon-chevron-up";
|
|
$faSortImage = "fa-sort-asc";
|
|
}
|
|
|
|
if(empty ($pageNumber)){
|
|
$pageNumber = '1';
|
|
}
|
|
|
|
$status = $request->get('status');
|
|
if(empty($status))
|
|
$status = 'Active';
|
|
|
|
$listViewModel = Vtiger_ListView_Model::getInstance($moduleName, $cvId);
|
|
|
|
$linkParams = array('MODULE'=>$moduleName, 'ACTION'=>$request->get('view'), 'CVID'=>$cvId);
|
|
$linkModels = $listViewModel->getListViewMassActions($linkParams);
|
|
$listViewModel->set('status', $status);
|
|
|
|
$pagingModel = new Vtiger_Paging_Model();
|
|
$pagingModel->set('page', $pageNumber);
|
|
|
|
if(!empty($orderBy)) {
|
|
$listViewModel->set('orderby', $orderBy);
|
|
$listViewModel->set('sortorder',$sortOrder);
|
|
}
|
|
|
|
$searchKey = $request->get('search_key');
|
|
$searchValue = $request->get('search_value');
|
|
$operator = $request->get('operator');
|
|
|
|
if($request->get('mode') == 'removeAlphabetSearch') {
|
|
Vtiger_ListView_Model::deleteParamsSession($moduleName.'_'.$cvId, array('search_key', 'search_value', 'operator'));
|
|
$searchKey = '';
|
|
$searchValue = '';
|
|
$operator = '';
|
|
}
|
|
if($request->get('mode') == 'removeSorting') {
|
|
Vtiger_ListView_Model::deleteParamsSession($listViewSessionKey, array('orderby', 'sortorder'));
|
|
$orderBy = '';
|
|
$sortOrder = '';
|
|
}
|
|
if(!empty($operator)) {
|
|
$listViewModel->set('operator', $operator);
|
|
$viewer->assign('OPERATOR',$operator);
|
|
$viewer->assign('ALPHABET_VALUE',$searchValue);
|
|
}
|
|
if(!empty($searchKey) && !empty($searchValue)) {
|
|
$listViewModel->set('search_key', $searchKey);
|
|
$listViewModel->set('search_value', $searchValue);
|
|
}
|
|
|
|
if(empty($searchParams)) {
|
|
$searchParams = array();
|
|
}
|
|
|
|
$transformedSearchParams = $this->transferListSearchParamsToFilterCondition($searchParams, $listViewModel->getModule());
|
|
$listViewModel->set('search_params',$transformedSearchParams);
|
|
|
|
//To make smarty to get the details easily accesible
|
|
foreach($searchParams as $fieldListGroup){
|
|
foreach($fieldListGroup as $fieldSearchInfo){
|
|
$fieldSearchInfo['searchValue'] = $fieldSearchInfo[2];
|
|
$fieldSearchInfo['fieldName'] = $fieldName = $fieldSearchInfo[0];
|
|
$fieldSearchInfo['comparator'] = $fieldSearchInfo[1];
|
|
$searchParams[$fieldName] = $fieldSearchInfo;
|
|
}
|
|
}
|
|
|
|
if(!$this->listViewHeaders){
|
|
$this->listViewHeaders = $listViewModel->getListViewHeaders();
|
|
}
|
|
if(!$this->listViewEntries){
|
|
$this->listViewEntries = $listViewModel->getListViewEntries($pagingModel);
|
|
}
|
|
$noOfEntries = count($this->listViewEntries);
|
|
|
|
$viewer->assign('MODULE', $moduleName);
|
|
|
|
if(!$this->listViewLinks){
|
|
$this->listViewLinks = $listViewModel->getListViewLinks($linkParams);
|
|
}
|
|
$viewer->assign('LISTVIEW_LINKS', $this->listViewLinks);
|
|
|
|
$viewer->assign('LISTVIEW_MASSACTIONS', $linkModels['LISTVIEWMASSACTION']);
|
|
|
|
$viewer->assign('PAGING_MODEL', $pagingModel);
|
|
$viewer->assign('PAGE_NUMBER',$pageNumber);
|
|
|
|
$viewer->assign('ORDER_BY',$orderBy);
|
|
$viewer->assign('SORT_ORDER',$sortOrder);
|
|
$viewer->assign('NEXT_SORT_ORDER',$nextSortOrder);
|
|
$viewer->assign('SORT_IMAGE',$sortImage);
|
|
$viewer->assign('COLUMN_NAME',$orderBy);
|
|
$viewer->assign('QUALIFIED_MODULE', $moduleName);
|
|
$viewer->assign('FASORT_IMAGE',$faSortImage);
|
|
|
|
$viewer->assign('LISTVIEW_ENTRIES_COUNT',$noOfEntries);
|
|
$viewer->assign('LISTVIEW_HEADERS', $this->listViewHeaders);
|
|
$viewer->assign('LISTVIEW_ENTRIES', $this->listViewEntries);
|
|
|
|
if (PerformancePrefs::getBoolean('LISTVIEW_COMPUTE_PAGE_COUNT', false)) {
|
|
if(!$this->listViewCount){
|
|
$this->listViewCount = $listViewModel->getListViewCount();
|
|
}
|
|
$totalCount = $this->listViewCount;
|
|
$pageLimit = $pagingModel->getPageLimit();
|
|
$pageCount = ceil((int) $totalCount / (int) $pageLimit);
|
|
|
|
if($pageCount == 0){
|
|
$pageCount = 1;
|
|
}
|
|
$viewer->assign('PAGE_COUNT', $pageCount);
|
|
$viewer->assign('LISTVIEW_COUNT', $totalCount);
|
|
}
|
|
$viewer->assign('MODULE_MODEL', $listViewModel->getModule());
|
|
$viewer->assign('IS_MODULE_EDITABLE', $listViewModel->getModule()->isPermitted('EditView'));
|
|
$viewer->assign('IS_MODULE_DELETABLE', $listViewModel->getModule()->isPermitted('Delete'));
|
|
$viewer->assign('USER_MODEL', Users_Record_Model::getCurrentUserModel());
|
|
$viewer->assign('SEARCH_VALUE', $searchValue);
|
|
$viewer->assign('SEARCH_DETAILS', $searchParams);
|
|
}
|
|
|
|
/**
|
|
* Function returns the number of records for the current filter
|
|
* @param Vtiger_Request $request
|
|
*/
|
|
function getRecordsCount(Vtiger_Request $request) {
|
|
$moduleName = $request->getModule();
|
|
$cvId = $request->get('viewname');
|
|
$count = $this->getListViewCount($request);
|
|
|
|
$result = array();
|
|
$result['module'] = $moduleName;
|
|
$result['viewname'] = $cvId;
|
|
$result['count'] = $count;
|
|
|
|
$response = new Vtiger_Response();
|
|
$response->setEmitType(Vtiger_Response::$EMIT_JSON);
|
|
$response->setResult($result);
|
|
$response->emit();
|
|
}
|
|
|
|
/**
|
|
* Function to get listView count
|
|
* @param Vtiger_Request $request
|
|
*/
|
|
function getListViewCount(Vtiger_Request $request){
|
|
$moduleName = $request->getModule();
|
|
$cvId = $request->get('viewname');
|
|
if(empty($cvId)) {
|
|
$cvId = '0';
|
|
}
|
|
|
|
$searchKey = $request->get('search_key');
|
|
$searchValue = $request->get('search_value');
|
|
|
|
$listViewModel = Vtiger_ListView_Model::getInstance($moduleName, $cvId);
|
|
if(empty($tagParams)){
|
|
$tagParams = array();
|
|
}
|
|
|
|
$searchParams = $request->get('search_params');
|
|
$searchAndTagParams = array_merge($searchParams, $tagParams);
|
|
|
|
$listViewModel->set('search_params',$this->transferListSearchParamsToFilterCondition($searchAndTagParams, $listViewModel->getModule()));
|
|
|
|
$listViewModel->set('search_key', $searchKey);
|
|
$listViewModel->set('search_value', $searchValue);
|
|
$listViewModel->set('operator', $request->get('operator'));
|
|
|
|
$count = $listViewModel->getListViewCount();
|
|
|
|
return $count;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Function to get the page count for list
|
|
* @return total number of pages
|
|
*/
|
|
function getPageCount(Vtiger_Request $request){
|
|
$listViewCount = $this->getListViewCount($request);
|
|
$pagingModel = new Vtiger_Paging_Model();
|
|
$pageLimit = $pagingModel->getPageLimit();
|
|
$pageCount = ceil((int) $listViewCount / (int) $pageLimit);
|
|
|
|
if($pageCount == 0){
|
|
$pageCount = 1;
|
|
}
|
|
$result = array();
|
|
$result['page'] = $pageCount;
|
|
$result['numberOfRecords'] = $listViewCount;
|
|
$response = new Vtiger_Response();
|
|
$response->setResult($result);
|
|
$response->emit();
|
|
}
|
|
|
|
/**
|
|
* Setting module related Information to $viewer (for Vtiger7)
|
|
* @param type $request
|
|
* @param type $moduleModel
|
|
*/
|
|
public function setModuleInfo($request, $moduleModel){
|
|
$fieldsInfo = array();
|
|
$basicLinks = array();
|
|
|
|
$moduleFields = $moduleModel->getFields();
|
|
foreach($moduleFields as $fieldName => $fieldModel){
|
|
$fieldsInfo[$fieldName] = $fieldModel->getFieldInfo();
|
|
}
|
|
|
|
$moduleBasicLinks = $moduleModel->getModuleBasicLinks();
|
|
foreach($moduleBasicLinks as $basicLink){
|
|
$basicLinks[] = Vtiger_Link_Model::getInstanceFromValues($basicLink);
|
|
}
|
|
|
|
$viewer = $this->getViewer($request);
|
|
|
|
$listViewModel = Vtiger_ListView_Model::getInstance($moduleModel->getName());
|
|
$linkParams = array('MODULE'=>$moduleModel->getName(), 'ACTION'=>$request->get('view'));
|
|
|
|
if(!$this->listViewLinks){
|
|
$this->listViewLinks = $listViewModel->getListViewLinks($linkParams);
|
|
}
|
|
|
|
$viewer->assign('LISTVIEW_LINKS', $this->listViewLinks);
|
|
$viewer->assign('FIELDS_INFO', json_encode($fieldsInfo));
|
|
$viewer->assign('MODULE_BASIC_ACTIONS', $basicLinks);
|
|
}
|
|
|
|
public function transferListSearchParamsToFilterCondition($listSearchParams, $moduleModel) {
|
|
return Vtiger_Util_Helper::transferListSearchParamsToFilterCondition($listSearchParams, $moduleModel);
|
|
}
|
|
|
|
public function getHeaderCss(Vtiger_Request $request) {
|
|
$headerCssInstances = parent::getHeaderCss($request);
|
|
$cssFileNames = array(
|
|
"~layouts/".Vtiger_Viewer::getDefaultLayoutName()."/lib/jquery/perfect-scrollbar/css/perfect-scrollbar.css",
|
|
);
|
|
$cssInstances = $this->checkAndConvertCssStyles($cssFileNames);
|
|
$headerCssInstances = array_merge($headerCssInstances, $cssInstances);
|
|
return $headerCssInstances;
|
|
}
|
|
} |