%PDF- %PDF-
Mini Shell

Mini Shell

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

<?php

/**
 * dmarc-srg - A php parser, viewer and summary report generator for incoming DMARC reports.
 * Copyright (C) 2021-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/>.
 *
 * =========================
 *
 * This file contains the class Source
 *
 * @category API
 * @package  DmarcSrg
 * @author   Aleksey Andreev (liuch)
 * @license  https://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
 */

namespace Liuch\DmarcSrg\Sources;

/**
 * It's an abstract class for easy access to reports of a report source
 */
abstract class Source implements \Iterator
{
    public const SOURCE_UPLOADED_FILE     = 1;
    public const SOURCE_MAILBOX           = 2;
    public const SOURCE_DIRECTORY         = 3;
    public const SOURCE_REMOTE_FILESYSTEM = 4;

    protected $data = null;

    /**
     * Constructor
     *
     * @param mixed $data Data to reach report files
     *
     * @return void
     */
    public function __construct($data)
    {
        $this->data = $data;
    }

    /**
     * Sets parameters that define the behavior of the source
     *
     * @param $params Key-value array
     *                'when_done'   => one or more rules to be executed after successful report processing
     *                                 (array|string)
     *                'when_failed' => one or more rules to be executed after report processing fails
     *                                 (array|string)
     *
     * @return void
     */
    public function setParams(array $params): void
    {
    }

    /**
     * Iterator interface methods
     */
    abstract public function current(): object;
    abstract public function key(): int;
    abstract public function next(): void;
    abstract public function rewind(): void;
    abstract public function valid(): bool;

    /**
     * Called when the current report has been successfully processed.
     *
     * @return void
     */
    public function accepted(): void
    {
    }

    /**
     *  Called when the current report has been rejected.
     *
     * @return void
     */
    public function rejected(): void
    {
    }

    /**
     * Returns type of source, i.e. one of Source::SOURCE_* values
     *
     * @return int
     */
    abstract public function type(): int;

    /**
     * Returns the source itself that was passed to the constructor
     *
     * @return mixed
     */
    public function container()
    {
        return $this->data;
    }
}

Zerion Mini Shell 1.0