Skip to content
Snippets Groups Projects
Unverified Commit a5f10a0d authored by Peter Rotich's avatar Peter Rotich Committed by GitHub
Browse files

Merge pull request #4572 from protich/feature/queue-counts

Queue counts
parents 4bfff30b 34f9ae70
No related branches found
Tags v1.9.11
No related merge requests found
...@@ -394,8 +394,7 @@ class SearchAjaxAPI extends AjaxController { ...@@ -394,8 +394,7 @@ class SearchAjaxAPI extends AjaxController {
$criteria = array(); $criteria = array();
if ($ids && is_array($ids)) if ($ids && is_array($ids))
$criteria = array('id__in' => $ids); $criteria = array('id__in' => $ids);
$counts = SavedQueue::counts($thisstaff, true, $criteria);
$counts = SavedQueue::counts($thisstaff, $criteria);
Http::response(200, false, 'application/json'); Http::response(200, false, 'application/json');
return $this->encode($counts); return $this->encode($counts);
} }
......
...@@ -847,41 +847,45 @@ class SavedQueue extends CustomQueue { ...@@ -847,41 +847,45 @@ class SavedQueue extends CustomQueue {
return (!$errors); return (!$errors);
} }
function getTotal($agent=null) {
$query = $this->getQuery();
if ($agent)
$query = $agent->applyVisibility($query);
$query->limit(false)->offset(false)->order_by(false);
try {
return $query->count();
} catch (Exception $e) {
return null;
}
}
function getCount($agent, $cached=true) { function getCount($agent, $cached=true) {
$criteria = $cached ? array() : array('id' => $this->getId()); $count = null;
$counts = self::counts($agent, $criteria, $cached); if ($cached && ($counts = self::counts($agent, $cached)))
return $counts["q{$this->getId()}"] ?: 0; $count = $counts["q{$this->getId()}"];
if ($count == null)
$count = $this->getTotal($agent);
return $count;
} }
// Get ticket counts for queues the agent has acces to. // Get ticket counts for queues the agent has acces to.
static function counts($agent, $criteria=array(), $cached=true) { static function counts($agent, $cached=true, $criteria=array()) {
if (!$agent instanceof Staff) if (!$agent instanceof Staff)
return array(); return null;
// Cache TLS in seconds // Cache TLS in seconds
$ttl = 3600; $ttl = 5*60;
// Cache key based on agent and salt of the installation // Cache key based on agent and salt of the installation
$key = "counts.queues.{$agent->getId()}.".SECRET_SALT; $key = "counts.queues.{$agent->getId()}.".SECRET_SALT;
if ($criteria && is_array($criteria)) // Consider additional criteria. if ($criteria && is_array($criteria)) // Consider additional criteria.
$key .= '.'.md5(serialize($criteria)); $key .= '.'.md5(serialize($criteria));
// only consider cache if requesed // only consider cache if requesed
if ($cached) { if ($cached && ($counts=self::getCounts($key, $ttl)))
if (function_exists('apcu_store')) { return $counts;
$found = false;
$counts = apcu_fetch($key, $found);
if ($found === true)
return $counts;
} elseif (isset($_SESSION[$key])
&& isset($_SESSION[$key]['qcount'])
&& (time() - $_SESSION[$key]['time']) < $ttl) {
return $_SESSION[$key]['qcount'];
} else {
// Auto clear missed session cache (if any)
unset($_SESSION[$key]);
}
}
$queues = static::objects() $queues = static::objects()
->filter(Q::any(array( ->filter(Q::any(array(
...@@ -913,17 +917,45 @@ class SavedQueue extends CustomQueue { ...@@ -913,17 +917,45 @@ class SavedQueue extends CustomQueue {
} }
} }
$counts = $query->values()->one(); try {
$counts = $query->values()->one();
} catch (Exception $ex) {
foreach ($queues as $q)
$counts['q'.$q->getId()] = $q->getTotal();
}
// Always cache the results // Always cache the results
self::storeCounts($key, $counts, $ttl);
return $counts;
}
static function getCounts($key, $ttl) {
if (!$key) {
return array();
} elseif (function_exists('apcu_store')) {
$found = false;
$counts = apcu_fetch($key, $found);
if ($found === true)
return $counts;
} elseif (isset($_SESSION['qcounts'][$key])
&& (time() - $_SESSION['qcounts'][$key]['time']) < $ttl) {
return $_SESSION['qcounts'][$key]['counts'];
} else {
// Auto clear missed session cache (if any)
unset($_SESSION['qcounts'][$key]);
}
}
static function storeCounts($key, $counts, $ttl) {
if (function_exists('apcu_store')) { if (function_exists('apcu_store')) {
apcu_store($key, $counts, $ttl); apcu_store($key, $counts, $ttl);
} else { } else {
// Poor man's cache // Poor man's cache
$_SESSION[$key]['qcount'] = $counts; $_SESSION['qcounts'][$key]['counts'] = $counts;
$_SESSION[$key]['time'] = time(); $_SESSION['qcounts'][$key]['time'] = time();
} }
return $counts;
} }
static function clearCounts() { static function clearCounts() {
......
...@@ -88,7 +88,7 @@ $tickets = $tickets->filter(['ticket_id__in' => $criteria->values_flat('ticket_i ...@@ -88,7 +88,7 @@ $tickets = $tickets->filter(['ticket_id__in' => $criteria->values_flat('ticket_i
# Index hint should be used on the $criteria query only # Index hint should be used on the $criteria query only
$tickets->clearOption(QuerySet::OPT_INDEX_HINT); $tickets->clearOption(QuerySet::OPT_INDEX_HINT);
$count = $queue->getCount($thisstaff); $count = $queue->getCount($thisstaff) ?: (PAGE_LIMIT*3);
$pageNav->setTotal($count, true); $pageNav->setTotal($count, true);
$pageNav->setURL('tickets.php', $args); $pageNav->setURL('tickets.php', $args);
?> ?>
......
...@@ -48,7 +48,7 @@ require_once(INCLUDE_DIR.'class.cron.php'); ...@@ -48,7 +48,7 @@ require_once(INCLUDE_DIR.'class.cron.php');
// Run tickets count every 3rd run or so... force new count by skipping cached // Run tickets count every 3rd run or so... force new count by skipping cached
// results // results
if ((mt_rand(1, 12) % 3) == 0) if ((mt_rand(1, 12) % 3) == 0)
SavedQueue::counts($thisstaff, array(), false); SavedQueue::counts($thisstaff, false);
// Clear staff obj to avoid false credit internal notes & auto-assignment // Clear staff obj to avoid false credit internal notes & auto-assignment
$thisstaff = null; $thisstaff = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment