BUG 9180 Correct Solr update and counters implementation
The following changes were made: - fix update Solr index process - implement casesenuLoader using Solr server to display counters - fix cron missing reference to system class - add function and classes documentation
This commit is contained in:
@@ -52,6 +52,7 @@ if (!defined('PATH_HOME')) {
|
||||
G::LoadSystem('dvEditor');
|
||||
G::LoadSystem('table');
|
||||
G::LoadSystem('pagedTable');
|
||||
G::LoadClass ( 'system' );
|
||||
require_once ( "propel/Propel.php" );
|
||||
require_once ( "creole/Creole.php" );
|
||||
}
|
||||
@@ -155,7 +156,6 @@ if (!defined('SYS_SYS')) {
|
||||
Propel::init(PATH_CORE . 'config/_databases_.php');
|
||||
//Creole::registerDriver('dbarray', 'creole.contrib.DBArrayConnection');
|
||||
|
||||
|
||||
eprintln("Processing workspace: " . $sObject, 'green');
|
||||
try{
|
||||
processWorkspace();
|
||||
|
||||
@@ -3,6 +3,19 @@
|
||||
* cron_single.php
|
||||
* @package workflow-engine-bin
|
||||
*/
|
||||
|
||||
//check script parameters
|
||||
//php reindex_solr.php workspacename [reindexall|reindexmissing]
|
||||
//var_dump($argv);
|
||||
if(count($argv) != 3 ){
|
||||
print "Invalid command line arguments: \n syntax: php reindex_solr.php [workspace_name] [reindexall|reindexmissing] \n".
|
||||
" Where reindexall : reindex all the database \n".
|
||||
" reindexmissing: reindex only the missing records stored in database.\n";
|
||||
die;
|
||||
}
|
||||
$workspaceName = $argv[1];
|
||||
$ScriptAction = $argv[2];
|
||||
|
||||
ini_set ( 'display_errors', 1 );
|
||||
error_reporting ( E_ALL );
|
||||
ini_set ( 'memory_limit', '256M' ); // set enough memory for the script
|
||||
@@ -84,7 +97,7 @@ print "PATH_CORE: " . PATH_CORE . "\n";
|
||||
|
||||
// define the site name (instance name)
|
||||
if (! defined ( 'SYS_SYS' )) {
|
||||
$sObject = $argv [1];
|
||||
$sObject = $workspaceName;
|
||||
$sNow = ''; // $argv[2];
|
||||
$sFilter = '';
|
||||
|
||||
@@ -206,16 +219,27 @@ else {
|
||||
|
||||
function processWorkspace() {
|
||||
global $sLastExecution;
|
||||
global $ScriptAction;
|
||||
|
||||
try {
|
||||
|
||||
if (($solrConf = System::solrEnv (SYS_SYS)) !== false) {
|
||||
G::LoadClass ( 'AppSolr' );
|
||||
print "Solr Configuration file: " . PATH_DATA_SITE . "env.ini\n";
|
||||
print "solr_enabled: " . $solrConf ['solr_enabled'] . "\n";
|
||||
print "solr_host: " . $solrConf ['solr_host'] . "\n";
|
||||
print "solr_instance: " . $solrConf ['solr_instance'] . "\n";
|
||||
|
||||
$oAppSolr = new AppSolr ( $solrConf ['solr_enabled'], $solrConf ['solr_host'], $solrConf ['solr_instance'] );
|
||||
if($ScriptAction == "reindexall"){
|
||||
$oAppSolr->reindexAllApplications ();
|
||||
}
|
||||
if($ScriptAction == "reindexmissing"){
|
||||
$oAppSolr->synchronizePendingApplications();
|
||||
}
|
||||
}
|
||||
else {
|
||||
print "Incomplete Solr configuration.";
|
||||
print "Incomplete Solr configuration. See configuration file: " . PATH_DATA_SITE . "env.ini";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -13,6 +13,11 @@ require_once "entities/SolrUpdateDocument.php";
|
||||
require_once "entities/AppSolrQueue.php";
|
||||
require_once "classes/model/AppSolrQueue.php";
|
||||
|
||||
/**
|
||||
* Invalid search text for Solr exception
|
||||
* @author Herbert Saal Gutierrez
|
||||
*
|
||||
*/
|
||||
class InvalidIndexSearchTextException extends Exception {
|
||||
// Redefine the exception so message isn't optional
|
||||
public function __construct($message, $code = 0) {
|
||||
@@ -27,6 +32,11 @@ class InvalidIndexSearchTextException extends Exception {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Application without Delegations exception
|
||||
* @author Herbert Saal Gutierrez
|
||||
*
|
||||
*/
|
||||
class ApplicationWithoutDelegationRecordsException extends Exception {
|
||||
// Redefine the exception so message isn't optional
|
||||
public function __construct($message, $code = 0) {
|
||||
@@ -41,6 +51,12 @@ class ApplicationWithoutDelegationRecordsException extends Exception {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implementation to display application data in the PMOS2 grids using Solr search service
|
||||
*
|
||||
* @author Herbert Saal Gutierrez
|
||||
*
|
||||
*/
|
||||
class AppSolr {
|
||||
private $solrIsEnabled = false;
|
||||
private $solrHost = "";
|
||||
@@ -57,7 +73,34 @@ class AppSolr {
|
||||
return $this->solrIsEnabled;
|
||||
}
|
||||
|
||||
public function getAppGridData($userUid, $start = null, $limit = null, $action = null, $filter = null, $search = null, $process = null, $user = null, $status = null, $type = null, $dateFrom = null, $dateTo = null, $callback = null, $dir = null, $sort = 'APP_CACHE_VIEW.APP_NUMBER') {
|
||||
/**
|
||||
* Gets the information of Grids using Solr server.
|
||||
*
|
||||
* Returns the list of records for the grid depending of the function conditions
|
||||
* If doCount is true only the count of records is returned.
|
||||
*
|
||||
* @param string $userUid current logged user.
|
||||
* @param int $start the offset to return the group of records. Used for pagination.
|
||||
* @param int $limit The number of records to return in the set.
|
||||
* @param string $action the action: todo, participated, draft, unassigned
|
||||
* @param string $filter filter the results posible values ('read', 'unread', 'started', 'completed')
|
||||
* @param string $search search string
|
||||
* @param string $process PRO_UID to filter results by specified process.
|
||||
* @param string $user USR_UID to filter results by specified user.
|
||||
* @param string $status filter by an application Status : TO_DO, COMPLETED, DRAFT
|
||||
* @param string $type default extjs
|
||||
* @param string $dateFrom filter by DEL_DELEGATE_DATE, not used
|
||||
* @param string $dateTo filter by DEL_DELEGATE_DATE, not used
|
||||
* @param string $callback default stcCallback1001 not used
|
||||
* @param string $dir sort direction ASC, DESC
|
||||
* @param string $sort sort field
|
||||
* @param boolean $doCount default=false, if true only the count of records is returned.
|
||||
* @return array return the list of cases
|
||||
*/
|
||||
public function getAppGridData($userUid, $start = null, $limit = null, $action = null, $filter = null, $search = null,
|
||||
$process = null, $user = null, $status = null, $type = null, $dateFrom = null, $dateTo = null, $callback = null,
|
||||
$dir = null, $sort = 'APP_CACHE_VIEW.APP_NUMBER', $doCount = false) {
|
||||
|
||||
$callback = isset ( $callback ) ? $callback : 'stcCallback1001';
|
||||
$dir = isset ( $dir ) ? $dir : 'DESC'; // direction of sort column
|
||||
// (ASC, DESC)
|
||||
@@ -139,6 +182,8 @@ class AppSolr {
|
||||
$sortCols = array ();
|
||||
$sortDir = array ();
|
||||
$numSortingCols = 0;
|
||||
|
||||
//define sort conditions, default APP_NUMBER, desc
|
||||
// only one column is sorted
|
||||
$dir = strtolower ( $dir );
|
||||
|
||||
@@ -177,15 +222,15 @@ class AppSolr {
|
||||
|
||||
// get del_index field
|
||||
$delIndexDynaField = "";
|
||||
|
||||
//process filter
|
||||
if ($process != '') {
|
||||
$solrSearchText .= "PRO_UID:" . $process . " AND ";
|
||||
}
|
||||
|
||||
//status filter
|
||||
if ($status != '') {
|
||||
$solrSearchText .= "APP_STATUS:" . $status . " AND ";
|
||||
}
|
||||
// todo list
|
||||
// todo list, add condition
|
||||
if ($userUid != null && $action == 'todo') {
|
||||
if ($filter == 'read') {
|
||||
$solrSearchText .= "APP_ASSIGNED_USERS_READ:" . $userUid . " AND ";
|
||||
@@ -200,7 +245,7 @@ class AppSolr {
|
||||
$delIndexDynaField = "APP_ASSIGNED_USER_DEL_INDEX_" . trim ( $userUid ) . '_txt';
|
||||
}
|
||||
}
|
||||
// participated
|
||||
// participated, add condition
|
||||
if ($userUid != null && $action == 'sent') {
|
||||
if ($filter == 'started') {
|
||||
$solrSearchText .= "APP_PARTICIPATED_USERS_STARTED:" . $userUid . " AND ";
|
||||
@@ -215,33 +260,41 @@ class AppSolr {
|
||||
$delIndexDynaField = "APP_PARTICIPATED_USER_DEL_INDEX_" . trim ( $userUid ) . '_txt';
|
||||
}
|
||||
}
|
||||
// draft
|
||||
// draft, add condition
|
||||
if ($userUid != null && $action == 'draft') {
|
||||
$solrSearchText .= "APP_DRAFT_USER:" . $userUid . " AND ";
|
||||
// index is allways 1
|
||||
}
|
||||
// unassigned
|
||||
// unassigned, add condition
|
||||
if ($userUid != null && $action == 'unassigned') {
|
||||
// get the list of groups to which belongs the user.
|
||||
$userGroups = $this->getUserGroups ( $userUid );
|
||||
$solrSearchText .= "(APP_UNASSIGNED_USERS:" . $userUid . " OR ";
|
||||
$solrSearchText .= "(APP_UNASSIGNED_USERS:" . $userUid;
|
||||
if(count($userGroups)>0){
|
||||
$solrSearchText .= " OR ";
|
||||
|
||||
foreach ( $userGroups as $group ) {
|
||||
$solrSearchText .= "APP_UNASSIGNED_GROUPS:" . $group ['GRP_UID'] . " OR ";
|
||||
}
|
||||
|
||||
// remove last OR in condition
|
||||
if ($solrSearchText != '')
|
||||
$solrSearchText = substr_replace ( $solrSearchText, "", - 4 );
|
||||
}
|
||||
$solrSearchText .= ") AND ";
|
||||
|
||||
$delIndexDynaField = "APP_UNASSIGNED_USER_GROUP_DEL_INDEX_" . trim ( $userUid ) . '_txt';
|
||||
}
|
||||
|
||||
// remove last AND
|
||||
// remove last AND in condition
|
||||
if ($solrSearchText != '')
|
||||
$solrSearchText = substr_replace ( $solrSearchText, "", - 5 );
|
||||
|
||||
// add parentesis
|
||||
// add parenthesis to Solr search text
|
||||
if ($solrSearchText != "")
|
||||
$solrSearchText = "(" . $solrSearchText . ")";
|
||||
|
||||
// create query string
|
||||
// create query string, add query conditions
|
||||
if ($search != '') {
|
||||
// format search string
|
||||
// return exception in case of invalid text
|
||||
@@ -252,12 +305,19 @@ class AppSolr {
|
||||
if ($search != "")
|
||||
$solrSearchText .= "(" . $search . ")";
|
||||
}
|
||||
|
||||
// add del_index dynamic field
|
||||
// add del_index dynamic field to list of resulting columns
|
||||
$columsToInclude = array_merge ( $columsToInclude, array (
|
||||
$delIndexDynaField
|
||||
) );
|
||||
|
||||
//if is a counter no records are returned
|
||||
if($doCount){
|
||||
$start = 0;
|
||||
$limit = 0;
|
||||
$numSortingCols = 0;
|
||||
$columsToInclude = array();
|
||||
}
|
||||
|
||||
$data = array (
|
||||
'workspace' => $this->solrInstance, // solr instance
|
||||
'startAfter' => intval ( $start ),
|
||||
@@ -279,7 +339,7 @@ class AppSolr {
|
||||
// execute query
|
||||
$solrQueryResult = $searchIndex->getDataTablePaginatedList ( $solrRequestData );
|
||||
|
||||
// complete return data
|
||||
// complete return data, complete list of columns in grid
|
||||
$resultColumns = array (
|
||||
"APP_CREATE_DATE",
|
||||
"APP_CURRENT_USER",
|
||||
@@ -314,8 +374,9 @@ class AppSolr {
|
||||
);
|
||||
|
||||
$rows = array ();
|
||||
//number of found records
|
||||
$result ['totalCount'] = $solrQueryResult->iTotalDisplayRecords;
|
||||
|
||||
//complete the missing data to display it in the grid.
|
||||
foreach ( $solrQueryResult->aaData as $i => $data ) {
|
||||
// complete empty values
|
||||
$appUID = $data [11];
|
||||
@@ -394,12 +455,45 @@ class AppSolr {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the array of counters of cases
|
||||
* @param string $userUid the current logged user uid identifier
|
||||
*/
|
||||
function getCasesCount($userUid){
|
||||
$casesCount = array();
|
||||
|
||||
//get number of records in todo list
|
||||
$data = $this->getAppGridData($userUid, 0, 0, 'todo', null, null, null, null, null, null,
|
||||
null, null, null, null, null, true);
|
||||
$casesCount['to_do'] = $data['totalCount'];
|
||||
//get number of records in participated list
|
||||
$data = $this->getAppGridData($userUid, 0, 0, 'sent', null, null, null, null, null, null,
|
||||
null, null, null, null, null, true);
|
||||
$casesCount['sent'] = $data['totalCount'];
|
||||
//get number of records in draft list
|
||||
$data = $this->getAppGridData($userUid, 0, 0, 'draft', null, null, null, null, null, null,
|
||||
null, null, null, null, null, true);
|
||||
$casesCount['draft'] = $data['totalCount'];
|
||||
//get number of records in unassigned list
|
||||
$data = $this->getAppGridData($userUid, 0, 0, 'unassigned', null, null, null, null, null, null,
|
||||
null, null, null, null, null, true);
|
||||
$casesCount['selfservice'] = $data['totalCount'];
|
||||
|
||||
return $casesCount;
|
||||
}
|
||||
|
||||
function getUserGroups($usrUID) {
|
||||
$gu = new GroupUser ();
|
||||
$rows = $gu->getAllUserGroups ( $usrUID );
|
||||
return $rows;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the application delegation record from database
|
||||
* @param string $appUID Application identifier
|
||||
* @param string $delIndex delegation index
|
||||
* @return array with delegation record.
|
||||
*/
|
||||
function getAppDelegationData($appUID, $delIndex) {
|
||||
|
||||
$c = new Criteria ();
|
||||
@@ -499,6 +593,7 @@ class AppSolr {
|
||||
* if a field is included only search in this field.
|
||||
*
|
||||
* @param string $plainSearchText
|
||||
* @return string formated Solr search string.
|
||||
*/
|
||||
function getSearchText($plainSearchText) {
|
||||
$formattedSearchText = "";
|
||||
@@ -689,6 +784,11 @@ class AppSolr {
|
||||
return $formattedSearchText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all the application delegation records from database
|
||||
* @param string $appUID Application identifier
|
||||
* @return array delegation records
|
||||
*/
|
||||
function getApplicationDelegationsIndex($appUID) {
|
||||
$delIndexes = array ();
|
||||
|
||||
@@ -713,6 +813,11 @@ class AppSolr {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the information of the specified applications in Solr
|
||||
* @param array $aaAPPUIDs Array of arrays of App_UID that must be updated,
|
||||
* APP_UID is permitted also
|
||||
*/
|
||||
function updateApplicationSearchIndex($aaAPPUIDs) {
|
||||
if (empty ( $aaAPPUIDs ))
|
||||
return;
|
||||
@@ -753,6 +858,11 @@ class AppSolr {
|
||||
$oSearchIndex->commitIndexChanges ( $this->solrInstance );
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the specified application record from Solr
|
||||
*
|
||||
* @param string $appUID Application identifier
|
||||
*/
|
||||
function deleteApplicationSearchIndex($appUID) {
|
||||
if (empty ( $appUID ))
|
||||
return;
|
||||
@@ -775,6 +885,12 @@ class AppSolr {
|
||||
$oSearchIndex->commitIndexChanges ( $this->solrInstance );
|
||||
}
|
||||
|
||||
/**
|
||||
* Create XML data in Solr format of the specified applications
|
||||
* this function uses the buildSearchIndexDocumentPMOS2 function to create each record
|
||||
* @param array $aaAPPUIDs array of arrays of application identifiers
|
||||
* @return string The resulting XML document in Solr format
|
||||
*/
|
||||
function createSolrXMLDocument($aaAPPUIDs) {
|
||||
// search data from DB
|
||||
$xmlDoc = "<?xml version='1.0' encoding='UTF-8'?>\n";
|
||||
@@ -814,7 +930,7 @@ class AppSolr {
|
||||
}
|
||||
|
||||
/**
|
||||
* build search index document xml for PMOS2
|
||||
* build Solr index document xml for an application
|
||||
* @gearman = false
|
||||
* @rest = false
|
||||
* @background = false
|
||||
@@ -856,7 +972,10 @@ class AppSolr {
|
||||
* $participatedUsersCompletedByUser,
|
||||
* $unassignedUsers, $unassignedGroups);*
|
||||
*/
|
||||
function buildSearchIndexDocumentPMOS2($documentData, $dynaformFieldTypes, $lastUpdateDate, $maxPriority, $assignedUsers, $assignedUsersRead, $assignedUsersUnread, $draftUser, $participatedUsers, $participatedUsersStartedByUser, $participatedUsersCompletedByUser, $unassignedUsers, $unassignedGroups) {
|
||||
function buildSearchIndexDocumentPMOS2($documentData, $dynaformFieldTypes, $lastUpdateDate,
|
||||
$maxPriority, $assignedUsers, $assignedUsersRead, $assignedUsersUnread, $draftUser,
|
||||
$participatedUsers, $participatedUsersStartedByUser, $participatedUsersCompletedByUser,
|
||||
$unassignedUsers, $unassignedGroups) {
|
||||
// build xml document
|
||||
|
||||
$writer = new XMLWriter ();
|
||||
@@ -1186,6 +1305,25 @@ class AppSolr {
|
||||
return $writer->outputMemory ( true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Search records in specified application delegation data
|
||||
* @param string $AppUID application identifier
|
||||
* @throws ApplicationWithoutDelegationRecordsException
|
||||
* @return array array of arrays with the following information(
|
||||
$documentInformation,
|
||||
$dynaformFieldTypes,
|
||||
$lastUpdateDate,
|
||||
$maxPriority,
|
||||
$assignedUsers,
|
||||
$assignedUsersRead,
|
||||
$assignedUsersUnread,
|
||||
$draftUser,
|
||||
$participatedUsers,
|
||||
$participatedUsersStartedByUser,
|
||||
$participatedUsersCompletedByUser,
|
||||
$unassignedUsers,
|
||||
$unassignedGroups
|
||||
*/
|
||||
function getApplicationIndexData($AppUID) {
|
||||
G::LoadClass ( 'memcached' );
|
||||
|
||||
@@ -1404,9 +1542,12 @@ class AppSolr {
|
||||
/**
|
||||
* Find the maximun value of the specified column in the array and return the
|
||||
* row index
|
||||
*
|
||||
* @param array{array} $arr
|
||||
* @param string $column
|
||||
* @param array $arr array of arrays with the data
|
||||
* @param string $column column name to search in
|
||||
* @param string $columnType column type STRING, NUMBER, DATE
|
||||
* @param string $columnCondition column condition
|
||||
* @param string $condition the condition
|
||||
* @return integer The index of the maximun record in array
|
||||
*/
|
||||
function aaGetMaximun($arr, $column, $columnType = 'STRING', $columnCondition = "", $condition = "") {
|
||||
// get first value
|
||||
@@ -1440,12 +1581,12 @@ class AppSolr {
|
||||
/**
|
||||
* Get minimum of array of arrays
|
||||
*
|
||||
* @param unknown_type $arr
|
||||
* @param unknown_type $column
|
||||
* @param unknown_type $columnType
|
||||
* @param unknown_type $columnCondition
|
||||
* @param unknown_type $condition
|
||||
* @return Ambigous <NULL, unknown>
|
||||
* @param array $arr array of arrays with the data
|
||||
* @param string $column the name of the column to search in
|
||||
* @param string $columnType the column type STRING, NUMBER, DATE
|
||||
* @param string $columnCondition the column condition
|
||||
* @param string $condition the condition
|
||||
* @return Ambigous <NULL, unknown> Index of the minimun value found
|
||||
*/
|
||||
function aaGetMinimun($arr, $column, $columnType = 'STRING', $columnCondition = "", $condition = "") {
|
||||
// get first value
|
||||
@@ -1483,8 +1624,8 @@ class AppSolr {
|
||||
* @param
|
||||
* array o arrays $arr contains the arrays that are searched
|
||||
* @param array $andColumnsConditions
|
||||
* contain the conditions that must be fullfill 'Column'=>'Condition'
|
||||
* @return multitype:unknown
|
||||
* contain the conditions that must fullfill 'Column'=>'Condition'
|
||||
* @return array array of indexes with the found records
|
||||
*/
|
||||
function aaSearchRecords($arr, $andColumnsConditions) {
|
||||
$indexes = array ();
|
||||
@@ -1530,6 +1671,11 @@ class AppSolr {
|
||||
return $indexes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get application and delegation data from database
|
||||
* @param string $AppUID the application identifier
|
||||
* @return array of records from database
|
||||
*/
|
||||
function getApplicationDelegationData($AppUID) {
|
||||
|
||||
$allAppDbData = array ();
|
||||
@@ -1636,6 +1782,12 @@ class AppSolr {
|
||||
return $allAppDbData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of groups of unassigned users of the specified task from database
|
||||
* @param string $ProUID Process identifier
|
||||
* @param string $TaskUID task identifier
|
||||
* @return array of unassigned user groups
|
||||
*/
|
||||
function getTaskUnassignedUsersGroupsData($ProUID, $TaskUID) {
|
||||
$unassignedUsersGroups = array ();
|
||||
|
||||
@@ -1673,6 +1825,12 @@ class AppSolr {
|
||||
return $unassignedUsersGroups;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of dynaform file names associated with the specified process
|
||||
* from database
|
||||
* @param string $ProUID process identifier
|
||||
* @return array of dynaform file names
|
||||
*/
|
||||
function getProcessDynaformFileNames($ProUID) {
|
||||
$dynaformFileNames = array ();
|
||||
|
||||
@@ -1695,10 +1853,12 @@ class AppSolr {
|
||||
|
||||
return $dynaformFileNames;
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a flag indicating if the application was updated
|
||||
* Store a flag indicating if the application was updated in database
|
||||
* table APP_SOLR_QUEUE
|
||||
*
|
||||
* @param unknown_type $AppUid
|
||||
* @param string $AppUid applicatiom identifier
|
||||
* @param integer $updated
|
||||
* 0:false, not updated, 1: updated, 2:deleted
|
||||
*/
|
||||
@@ -1708,6 +1868,9 @@ class AppSolr {
|
||||
$oAppSolrQueue->createUpdate ( $AppUid, $updated );
|
||||
}
|
||||
|
||||
/**
|
||||
* Update application records in Solr that are stored in APP_SOLR_QUEUE table
|
||||
*/
|
||||
function synchronizePendingApplications() {
|
||||
// check table of pending updates
|
||||
$oAppSolrQueue = new AppSolrQueue ();
|
||||
@@ -1719,9 +1882,12 @@ class AppSolr {
|
||||
$this->updateApplicationSearchIndex ( $oAppSolrQueueEntity->appUid );
|
||||
$this->applicationChangedUpdateSolrQueue ( $oAppSolrQueueEntity->appUid, 0 );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the total number of application records in database
|
||||
* @return application counter
|
||||
*/
|
||||
function getCountApplicationsPMOS2() {
|
||||
$c = new Criteria ();
|
||||
|
||||
@@ -1732,6 +1898,12 @@ class AppSolr {
|
||||
return $count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a paginated list of application uids from database.
|
||||
* @param integer $skip the offset from where to return the application records
|
||||
* @param integer $pagesize the size of the page
|
||||
* @return array of application id's in the specified page.
|
||||
*/
|
||||
function getPagedApplicationUids($skip, $pagesize) {
|
||||
|
||||
$c = new Criteria ();
|
||||
@@ -1754,6 +1926,10 @@ class AppSolr {
|
||||
return $appUIds;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reindex all the application records in Solr server
|
||||
* update applications in groups of 1000
|
||||
*/
|
||||
function reindexAllApplications() {
|
||||
$trunk = 1000;
|
||||
// delete all documents to begin reindex
|
||||
|
||||
@@ -73,7 +73,7 @@ class Cases {
|
||||
//get Solr initialization variables
|
||||
if(($solrConf = System::solrEnv()) !== false){
|
||||
G::LoadClass('AppSolr');
|
||||
$appSolr = new AppSolr($solrConf['solr_enabled'], $solrConf['solr_host'], $solrConf['solr_instance']);
|
||||
$this->appSolr = new AppSolr($solrConf['solr_enabled'], $solrConf['solr_host'], $solrConf['solr_instance']);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -843,7 +843,6 @@ class Cases {
|
||||
*/
|
||||
|
||||
function updateCase($sAppUid, $Fields = array()) {
|
||||
|
||||
try {
|
||||
$aApplicationFields = $Fields['APP_DATA'];
|
||||
$Fields['APP_UID'] = $sAppUid;
|
||||
@@ -929,7 +928,9 @@ class Cases {
|
||||
}
|
||||
//Update Solr Index
|
||||
if($this->appSolr != null)
|
||||
{
|
||||
$this->appSolr->updateApplicationSearchIndex($sAppUid);
|
||||
}
|
||||
|
||||
return $Fields;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
<?php
|
||||
|
||||
//$indexFields = array();
|
||||
|
||||
|
||||
/**
|
||||
* Class used as interface to have access to the search index services
|
||||
*
|
||||
* @author Herbert Saal Gutierrez
|
||||
*
|
||||
*/
|
||||
Class BpmnEngine_Services_SearchIndex
|
||||
{
|
||||
private $solrIsEnabled = false;
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Interface to the Solr Search server
|
||||
* @author Herbert Saal Gutierrez
|
||||
*
|
||||
*/
|
||||
class BpmnEngine_SearchIndexAccess_Solr {
|
||||
const SOLR_VERSION = '&version=2.2';
|
||||
private $solrIsEnabled = false;
|
||||
@@ -61,7 +67,7 @@ class BpmnEngine_SearchIndexAccess_Solr {
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute a query in base to Request data
|
||||
* Execute a query in base to Requested data
|
||||
* @gearman = false
|
||||
* @rest = false
|
||||
* @background = false
|
||||
@@ -112,7 +118,6 @@ class BpmnEngine_SearchIndexAccess_Solr {
|
||||
$solrIntruct .= $sort;
|
||||
$solrIntruct .= $filters;
|
||||
$solrIntruct .= $resultFormat;
|
||||
|
||||
// send query
|
||||
// search the cases in base to datatable parameters
|
||||
$handler = curl_init ( $solrIntruct );
|
||||
@@ -196,7 +201,7 @@ class BpmnEngine_SearchIndexAccess_Solr {
|
||||
}
|
||||
|
||||
/**
|
||||
* Commit the changes since the last commit
|
||||
* Rollback the changes since the last commit
|
||||
* @gearman = false
|
||||
* @rest = false
|
||||
* @background = false
|
||||
@@ -230,7 +235,7 @@ class BpmnEngine_SearchIndexAccess_Solr {
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert or Update document index
|
||||
* Optimize Solr index
|
||||
* @gearman = false
|
||||
* @rest = false
|
||||
* @background = false
|
||||
@@ -263,6 +268,12 @@ class BpmnEngine_SearchIndexAccess_Solr {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the list of the stored fields in Solr
|
||||
* @param string $workspace Solr instance name
|
||||
* @throws Exception
|
||||
* @return void|mixed array of field names
|
||||
*/
|
||||
function getListIndexedStoredFields($workspace) {
|
||||
if (! $this->solrIsEnabled)
|
||||
return;
|
||||
|
||||
@@ -186,7 +186,6 @@
|
||||
function getAllCounters() {
|
||||
$userUid = ( isset($_SESSION['USER_LOGGED'] ) && $_SESSION['USER_LOGGED'] != '' ) ? $_SESSION['USER_LOGGED'] : null;
|
||||
$oAppCache = new AppCacheView();
|
||||
//$aTypes = Array('to_do', 'draft', 'cancelled', 'sent', 'paused', 'completed','selfservice','to_revise','to_reassign');
|
||||
$aTypes = Array();
|
||||
$aTypes['to_do'] = 'CASES_INBOX';
|
||||
$aTypes['draft'] = 'CASES_DRAFT';
|
||||
@@ -198,8 +197,23 @@
|
||||
//$aTypes['to_revise'] = 'CASES_TO_REVISE';
|
||||
//$aTypes['to_reassign'] = 'CASES_TO_REASSIGN';
|
||||
|
||||
if ((($solrConf = System::solrEnv()) !== false)) {
|
||||
G::LoadClass ( 'AppSolr' );
|
||||
$ApplicationSolrIndex = new AppSolr ($solrConf['solr_enabled'], $solrConf['solr_host'], $solrConf['solr_instance']);
|
||||
|
||||
$aCount = $ApplicationSolrIndex->getCasesCount ( $userUid );
|
||||
|
||||
//get paused count
|
||||
$aCountMissing = $oAppCache->getAllCounters( array('paused', 'completed', 'cancelled'), $userUid );
|
||||
|
||||
$aCount = array_merge($aCount, $aCountMissing);
|
||||
}
|
||||
else {
|
||||
|
||||
$aCount = $oAppCache->getAllCounters( array_keys($aTypes), $userUid );
|
||||
|
||||
}
|
||||
|
||||
$response = Array();
|
||||
$i = 0;
|
||||
foreach ($aCount as $type=>$count) {
|
||||
|
||||
Reference in New Issue
Block a user