2022-07-27 11:54:50 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\Blocklist\Domain;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\System;
|
2022-07-27 15:36:20 -04:00
|
|
|
use Friendica\Moderation\DomainPatternBlocklist;
|
2022-07-27 11:54:50 -04:00
|
|
|
use Friendica\Module\Response;
|
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
|
|
|
class Download extends \Friendica\BaseModule
|
|
|
|
{
|
2022-07-27 15:36:20 -04:00
|
|
|
/** @var DomainPatternBlocklist */
|
|
|
|
private $blocklist;
|
2022-07-27 11:54:50 -04:00
|
|
|
|
2022-07-27 15:36:20 -04:00
|
|
|
public function __construct(DomainPatternBlocklist $blocklist, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
|
2022-07-27 11:54:50 -04:00
|
|
|
{
|
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
|
2022-07-27 15:36:20 -04:00
|
|
|
$this->blocklist = $blocklist;
|
2022-07-27 11:54:50 -04:00
|
|
|
}
|
|
|
|
|
2022-07-27 15:36:20 -04:00
|
|
|
/**
|
|
|
|
* @param array $request
|
2022-08-13 17:30:57 -04:00
|
|
|
*
|
2022-07-27 15:36:20 -04:00
|
|
|
* @return void
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-07-27 11:54:50 -04:00
|
|
|
protected function rawContent(array $request = [])
|
|
|
|
{
|
2022-07-27 15:36:20 -04:00
|
|
|
$hash = md5(json_encode($this->blocklist->get(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
|
2022-07-27 11:54:50 -04:00
|
|
|
|
|
|
|
$etag = 'W/"' . $hash . '"';
|
|
|
|
if (trim($_SERVER['HTTP_IF_NONE_MATCH'] ?? '') == $etag) {
|
2022-08-13 17:30:57 -04:00
|
|
|
header('HTTP/1.1 304 Not Modified');
|
2022-07-27 15:36:20 -04:00
|
|
|
System::exit();
|
2022-07-27 11:54:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
header('Content-Type: text/csv');
|
|
|
|
header('Content-Transfer-Encoding: Binary');
|
|
|
|
header('Content-disposition: attachment; filename="' . $this->baseUrl->getHostname() . '_domain_blocklist_' . substr($hash, 0, 6) . '.csv"');
|
|
|
|
header("Etag: $etag");
|
|
|
|
|
2022-07-27 15:36:20 -04:00
|
|
|
$this->blocklist->exportToFile('php://output');
|
2022-07-27 11:54:50 -04:00
|
|
|
|
|
|
|
System::exit();
|
|
|
|
}
|
|
|
|
}
|