%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/varak.net/dmarc.varak.net/classes/ReportLog/
Upload File :
Create Path :
Current File : //www/varak.net/dmarc.varak.net/classes/ReportLog/ReportLog.php

<?php

/**
 * dmarc-srg - A php parser, viewer and summary report generator for incoming DMARC reports.
 * Copyright (C) 2020-2023 Aleksey Andreev (liuch)
 *
 * Available at:
 * https://github.com/liuch/dmarc-srg
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation, either version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

namespace Liuch\DmarcSrg\ReportLog;

use Liuch\DmarcSrg\Core;

class ReportLog
{
    public const ORDER_ASCENT  = 1;
    public const ORDER_DESCENT = 2;

    private $db        = null;
    private $filter    = [];
    private $order     = [
            'direction' => 'ascent'
    ];
    private $rec_limit = 0;

    public function __construct($db = null)
    {
        $this->db = $db ?? Core::instance()->database();
    }

    public function setOrder(int $dir)
    {
        $this->order['direction'] = ($dir === self::ORDER_DESCENT ? 'descent' : 'ascent');
        return $this;
    }

    public function setMaxCount(int $n)
    {
        $this->rec_limit = $n;
        return $this;
    }

    /**
     * Sets filter value for the list and for deleting report log items
     *
     * @param array $filter Key-value array:
     *                      'from_time' => DateTime, start from the passed event timestamp
     *                      'till_time' => DateTime, until the passed event timestamp not including it
     *                      'success'   => bool, whether the report upload was successful
     *                      'source'    => string, Report source type
     *
     * @return $this
     */
    public function setFilter(array $filter)
    {
        $this->filter = $filter;
        if (isset($filter['source'])) {
            $this->filter['source'] = ReportLogItem::stringToSource($filter['source']);
        }
        return $this;
    }

    public function count(): int
    {
        $limit = [ 'offset' => 0, 'count' => $this->rec_limit ];
        return $this->db->getMapper('report-log')->count($this->filter, $limit);
    }

    public function getList(int $pos): array
    {
        $max_rec = $this->rec_limit > 0 ? $this->rec_limit : 25;

        $limit  = [ 'offset' => $pos, 'count' => $max_rec + 1 ];

        $list = $this->db->getMapper('report-log')->list($this->filter, $this->order, $limit);
        if (count($list) > $max_rec) {
            $more = true;
            unset($list[$max_rec]);
        } else {
            $more = false;
        }
        foreach ($list as &$it) {
            $it['source'] = ReportLogItem::sourceToString($it['source']);
        }
        unset($it);

        return [
            'items' => $list,
            'more'  => $more
        ];
    }

    public function delete()
    {
        $limit = [ 'offset' => 0, 'count' => $this->rec_limit ];
        $this->db->getMapper('report-log')->delete($this->filter, $this->order, $limit);
    }
}

Zerion Mini Shell 1.0