Introduce query HostcommentdeletionQuery

refs #9009
This commit is contained in:
Johannes Meyer 2015-06-11 16:15:29 +02:00
parent 7358eefed8
commit 7ea9051d43
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Monitoring\Backend\Ido\Query;
/**
* Query for host comment removal records
*/
class HostcommentdeletionhistoryQuery extends HostcommenthistoryQuery
{
/**
* {@inheritdoc}
*/
public function whereToSql($col, $sign, $expression)
{
if ($col === 'UNIX_TIMESTAMP(hch.deletion_time)') {
return 'hch.deletion_time ' . $sign . ' ' . $this->timestampForSql($this->valueToTimestamp($expression));
} else {
return parent::whereToSql($col, $sign, $expression);
}
}
/**
* {@inheritdoc}
*/
protected function joinBaseTables()
{
parent::joinBaseTables();
$this->select->where("hch.deletion_time > '1970-01-02 00:00:00'");
$this->columnMap['history']['timestamp'] = str_replace(
'comment_time',
'deletion_time',
$this->columnMap['history']['timestamp']
);
$this->columnMap['history']['type'] = str_replace(
'END)',
"END || '_deleted')",
$this->columnMap['history']['type']
);
}
}