'log.user', 'site' => 'log.site', 'societe' => 'log.societe', 'pays' => 'log.pays', 'activite' => 'log.activite', 'fonction' => 'log.fonction', 'usrid' => 'log.usrid', 'coll_id' => 'record.coll_id', 'xml' => 'record.xml', 'ddate' => "log_docs.date", 'id' => 'log_docs.id', 'log_id' => 'log_docs.log_id', 'record_id' => 'log_docs.record_id', 'final' => 'log_docs.final', 'comment' => 'log_docs.comment', 'size' => 'subdef.size', 'mime' => 'subdef.mime', 'file' => 'subdef.file' ); protected $isInformative; /** * constructor * * @name download::__construct() * @param $arg1 start date of the report * @param $arg2 end date of the report * @param $sbas_id id of the databox */ public function __construct($arg1, $arg2, $sbas_id, $collist) { parent::__construct($arg1, $arg2, $sbas_id, $collist); $this->title = _('report:: telechargements'); } /** * @desc build the specified requete * @param $obj $conn the current connection to databox * @return string */ protected function buildReq($groupby = false, $on = false) { $sql = $this->sqlBuilder('download') ->setOn($on)->setGroupBy($groupby)->buildSql(); $this->req = $sql->getSql(); $this->params = $sql->getParams(); $this->total = $sql->getTotalRows(); } public function colFilter($field, $on = false) { $ret = array(); $s = $this->sqlBuilder('download'); $var = $s->sqlDistinctValByField($field); $sql = $var['sql']; $params = $var['params']; $registry = registry::get_instance(); $stmt = $s->getConnBas()->prepare($sql); $stmt->execute($params); $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); foreach ($rs as $row) { $value = $row['val']; if ($field == 'coll_id') { $caption = phrasea::bas_names(phrasea::baseFromColl($this->sbas_id, $value)); } elseif ($field == 'ddate') $caption = phraseadate::getPrettyString(new DateTime($value)); elseif ($field == 'size') $caption = p4string::format_octets($value); else $caption = $value; $ret[] = array('val' => $caption, 'value' => $value); } return $ret; } /** * @desc build the result from the specified sql * @param array $champ all the field from the request displayed in a array * @param string $sql the request from buildreq * @return $this->result */ protected function buildResult($rs) { $i = 0; $pref = parent::getPreff($this->sbas_id); foreach ($rs as $row) { if ($this->enable_limit && ($i > $this->nb_record)) break; foreach ($this->champ as $column) { $this->formatResult($column, $row[$column], $pref, $i); } $i++; } } private function formatResult($column, $value, $pref, $i) { if ($value) { if ($column == 'coll_id') $this->result[$i][$column] = $this->formatCollId($value); elseif ($column == 'xml' && (sizeof($pref) > 0)) { foreach ($pref as $field) { $this->result[$i][$field] = parent::getChamp($value, $field); } } elseif ($column == 'ddate') $this->result[$i][$column] = $this->formatDateValue($value); elseif ($column == 'size') $this->result[$i][$column] = p4string::format_octets($value); else $this->result[$i][$column] = $value; } else { if ($column == 'comment') $this->result[$i][$column] = ''; else $this->result[$i][$column] = $this->formatEmptyValue(); } } private function formatEmptyValue() { return '' . _('report:: non-renseigne') . ''; } private function formatDateValue($value) { $datetime = new DateTime($value); $dateString = $datetime->format(DATE_ATOM); return $this->pretty_string ? phraseadate::getPrettyString($datetime) : $dateString; } private function formatCollId($value) { return phrasea::bas_names(phrasea::baseFromColl($this->sbas_id, $value)); } public static function getNbDl($dmin, $dmax, $sbas_id, $list_coll_id) { $conn = connection::getPDOConnection($sbas_id); $registry = registry::get_instance(); $params = array(':site_id' => $registry->get('GV_sit')); $datefilter = module_report_sqlfilter::constructDateFilter($dmin, $dmax); $collfilter = module_report_sqlfilter::constructCollectionFilter($list_coll_id); $params = array_merge($params, $datefilter['params'], $collfilter['params']); $finalfilter = $datefilter['sql'] . ' AND '; $finalfilter .= $collfilter['sql'] . ' AND '; $finalfilter .= 'log.site = :site_id'; $sql = ' SELECT SUM(1) AS nb FROM ( log INNER JOIN log_docs as log_date ON log.id = log_date.log_id INNER JOIN record on log_date.record_id = record.record_id ) WHERE ( ' . $finalfilter . ' ) AND ( log_date.action = \'download\' OR log_date.action = \'mail\' ) ORDER BY log_date.date DESC '; $stmt = $conn->prepare($sql); $stmt->execute($params); $row = $stmt->fetch(PDO::FETCH_ASSOC); $stmt->closeCursor(); return $row ? $row['nb'] : 0; } public static function getTopDl($dmin, $dmax, $sbas_id, $list_coll_id) { $conn = connection::getPDOConnection($sbas_id); $registry = registry::get_instance(); $params = array(':site_id' => $registry->get('GV_sit')); $datefilter = module_report_sqlfilter::constructDateFilter($dmin, $dmax); $collfilter = module_report_sqlfilter::constructCollectionFilter($list_coll_id); $params = array_merge($params, $datefilter['params'], $collfilter['params']); $finalfilter = ""; $array = array( 'preview' => array(), 'document' => array() ); $finalfilter .= $datefilter['sql'] . ' AND '; $finalfilter .= $collfilter['sql'] . ' AND '; $finalfilter .= 'log.site = :site_id'; $sql = ' SELECT record.record_id as id, SUM(1) AS nb, subdef.name, record.xml FROM ( log INNER JOIN log_docs as log_date ON log.id = log_date.log_id INNER JOIN record ON log_date.record_id = record.record_id INNER JOIN subdef ON subdef.record_id = record.record_id ) WHERE ( ' . $finalfilter . ' ) AND ( log_date.action = \'download\' OR log_date.action = \'mail\' ) AND subdef.name = log_date.final GROUP BY id, name ORDER BY nb DESC '; $stmt = $conn->prepare($sql); $stmt->execute($params); $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); foreach ($rs as $row) { $k = $row['id'] . '_' . $sbas_id; $orig_name = parent::getChamp($row['xml'], 'doc', 'originalname'); if ($row['name'] == 'document') { $array[$row['name']][$k]['nb'] = (int) $row['nb']; $array[$row['name']][$k]['lib'] = $orig_name; $array[$row['name']][$k]['sbasid'] = $sbas_id; $array[$row['name']][$k]['id'] = $row['id']; } elseif ($row['name'] == "preview") { $array[$row['name']][$k]['nb'] = (int) $row['nb']; $array[$row['name']][$k]['lib'] = $orig_name; $array[$row['name']][$k]['sbasid'] = $sbas_id; $array[$row['name']][$k]['id'] = $row['id']; } } return $array; } public function IsInformative() { return $this->isInformative; } public function setIsInformative($isInformative) { $this->isInformative = $isInformative; } }