94 lines
3.0 KiB
PHP
94 lines
3.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* dmarc-srg - A php parser, viewer and summary report generator for incoming DMARC reports.
|
|
* Copyright (C) 2020 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 script is to get summary report via the web interface
|
|
*
|
|
* HTTP GET query:
|
|
* when the header 'Accept' is 'application/json':
|
|
* if parameter `mode` is `options`, it returs data for the report options dialog;
|
|
* if parameter `mode` is `report`, it returns report data for the specified domain and period
|
|
* otherwise:
|
|
* it returns the content of the index.html file
|
|
* Other HTTP methods:
|
|
* it returns an error
|
|
*
|
|
* All the data is in json format.
|
|
*
|
|
* @category Web
|
|
* @package DmarcSrg
|
|
* @author Aleksey Andreev (liuch)
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
|
|
*/
|
|
|
|
namespace Liuch\DmarcSrg;
|
|
|
|
use Liuch\DmarcSrg\ErrorHandler;
|
|
use Liuch\DmarcSrg\Domains\Domain;
|
|
use Liuch\DmarcSrg\Domains\DomainList;
|
|
use Liuch\DmarcSrg\Report\SummaryReport;
|
|
use Liuch\DmarcSrg\Exception\SoftException;
|
|
use Liuch\DmarcSrg\Exception\RuntimeException;
|
|
|
|
require 'init.php';
|
|
|
|
if (Core::isJson() && isset($_GET['mode'])) {
|
|
try {
|
|
Core::instance()->auth()->isAllowed();
|
|
|
|
$mode = $_GET['mode'];
|
|
if ($mode === 'options') {
|
|
Core::sendJson(
|
|
[
|
|
'domains' => (new DomainList())->names()
|
|
]
|
|
);
|
|
return;
|
|
} elseif ($mode === 'report') {
|
|
if (empty($_GET['domain'])) {
|
|
throw new SoftException('Parameter "domain" is not specified');
|
|
}
|
|
if (empty($_GET['period'])) {
|
|
throw new SoftException('Parameter "period" is not specified');
|
|
}
|
|
$report = (new SummaryReport($_GET['period']))->setDomain(new Domain($_GET['domain']));
|
|
if (($_GET['format'] ?? '') === 'raw') {
|
|
$res = [ 'data' => $report->toArray() ];
|
|
} else {
|
|
$res = [ 'text' => $report->text() ];
|
|
}
|
|
Core::sendJson($res);
|
|
return;
|
|
} else {
|
|
throw new SoftException('The `mode` parameter can only be `options` or `report`');
|
|
}
|
|
} catch (RuntimeException $e) {
|
|
Core::sendJson(ErrorHandler::exceptionResult($e));
|
|
return;
|
|
}
|
|
} elseif (Core::method() == 'GET') {
|
|
Core::sendHtml();
|
|
return;
|
|
}
|
|
|
|
Core::sendBad();
|