mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
86 lines
3.0 KiB
PHP
86 lines
3.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2015 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
|
|
class module_report_sqlquestion extends module_report_sql implements module_report_sqlReportInterface
|
|
{
|
|
|
|
public function __construct(Application $app, module_report $report)
|
|
{
|
|
parent::__construct($app, $report);
|
|
}
|
|
|
|
public function buildSql()
|
|
{
|
|
$filter = $this->filter->getReportFilter() ? : array('params' => array(), 'sql' => false);
|
|
$this->params = array_merge(array(), $filter['params']);
|
|
|
|
if ($this->groupby == false) {
|
|
$this->sql =" SELECT log.id, log_search.date ddate, log_search.search, log.usrid, log.user, log.pays, log.societe, log.activite, log.fonction
|
|
FROM log_search
|
|
INNER JOIN log FORCE INDEX (date_site) ON (log.id = log_search.log_id) AND !ISNULL(usrid)
|
|
WHERE (" . $filter['sql'] .")";
|
|
|
|
// no_file_put_contents("/tmp/report.txt", sprintf("%s (%s)\n%s\n\n", __FILE__, __LINE__, $this->sql), FILE_APPEND);
|
|
|
|
$stmt = $this->connbas->prepare($this->sql);
|
|
$stmt->execute($this->params);
|
|
$this->total_row = $stmt->rowCount();
|
|
$stmt->closeCursor();
|
|
|
|
$this->sql .= $this->filter->getOrderFilter() ? : '';
|
|
|
|
if ($this->enable_limit) {
|
|
$this->sql .= $this->filter->getLimitFilter() ? : '';
|
|
}
|
|
} else {
|
|
$this->sql = "
|
|
SELECT " . $this->groupby . ", SUM(1) AS nb
|
|
FROM (
|
|
SELECT DISTINCT(log.id), TRIM(" . $this->getTransQuery($this->groupby) . ") AS " . $this->groupby . "
|
|
FROM (`log_search`)
|
|
INNER JOIN log FORCE INDEX (date_site) ON (log.id = log_search.log_id)
|
|
WHERE (" . $filter['sql'] .")
|
|
) AS tt
|
|
GROUP BY " . $this->groupby ."
|
|
ORDER BY nb DESC";
|
|
|
|
// no_file_put_contents("/tmp/report.txt", sprintf("%s (%s)\n%s\n\n", __FILE__, __LINE__, $this->sql), FILE_APPEND);
|
|
|
|
$stmt = $this->connbas->prepare($this->sql);
|
|
$stmt->execute($this->params);
|
|
$this->total_row = $stmt->rowCount();
|
|
$stmt->closeCursor();
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function sqlDistinctValByField($field)
|
|
{
|
|
$filter = $this->filter->getReportFilter() ? : array('params' => array(), 'sql' => false);
|
|
$this->params = array_merge(array(), $filter['params']);
|
|
|
|
$this->sql = "
|
|
SELECT DISTINCT(tt.val)
|
|
FROM (
|
|
SELECT DISTINCT(log.id), " . $this->getTransQuery($field) . " AS val
|
|
FROM (`log_search`)
|
|
INNER JOIN log FORCE INDEX (date_site) ON (log.id = log_search.log_id)
|
|
WHERE (" . $filter['sql'] . ")
|
|
) as tt
|
|
ORDER BY tt.val ASC";
|
|
|
|
return array('sql' => $this->sql, 'params' => $this->params);
|
|
}
|
|
}
|