]> git.mxchange.org Git - friendica.git/blob - src/Module/Blocklist/Domain/Download.php
Changed:
[friendica.git] / src / Module / Blocklist / Domain / Download.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Blocklist\Domain;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Core\System;
27 use Friendica\Moderation\DomainPatternBlocklist;
28 use Friendica\Module\Response;
29 use Friendica\Util\Profiler;
30 use Psr\Log\LoggerInterface;
31
32 class Download extends \Friendica\BaseModule
33 {
34         /** @var DomainPatternBlocklist */
35         private $blocklist;
36
37         public function __construct(DomainPatternBlocklist $blocklist, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
38         {
39                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
40
41                 $this->blocklist = $blocklist;
42         }
43
44         /**
45          * @param array $request
46          *
47          * @return void
48          * @throws \Exception
49          */
50         protected function rawContent(array $request = [])
51         {
52                 $hash = md5(json_encode($this->blocklist->get(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
53
54                 $etag = 'W/"' . $hash . '"';
55                 if (trim($_SERVER['HTTP_IF_NONE_MATCH'] ?? '') == $etag) {
56                         header('HTTP/1.1 304 Not Modified');
57                         System::exit();
58                 }
59
60                 header('Content-Type: text/csv');
61                 header('Content-Transfer-Encoding: Binary');
62                 header('Content-disposition: attachment; filename="' . $this->baseUrl->getHostname() . '_domain_blocklist_' . substr($hash, 0, 6) . '.csv"');
63                 header("Etag: $etag");
64
65                 $this->blocklist->exportToFile('php://output');
66
67                 System::exit();
68         }
69 }