]> git.mxchange.org Git - friendica.git/blob - src/Module/Blocklist/Domain/Download.php
Merge pull request #11790 from annando/fetchactivity
[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          * @return void
47          * @throws \Exception
48          */
49         protected function rawContent(array $request = [])
50         {
51                 $hash = md5(json_encode($this->blocklist->get(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
52
53                 $etag = 'W/"' . $hash . '"';
54                 if (trim($_SERVER['HTTP_IF_NONE_MATCH'] ?? '') == $etag) {
55                         header("HTTP/1.1 304 Not Modified");
56                         System::exit();
57                 }
58
59                 header('Content-Type: text/csv');
60                 header('Content-Transfer-Encoding: Binary');
61                 header('Content-disposition: attachment; filename="' . $this->baseUrl->getHostname() . '_domain_blocklist_' . substr($hash, 0, 6) . '.csv"');
62                 header("Etag: $etag");
63
64                 $this->blocklist->exportToFile('php://output');
65
66                 System::exit();
67         }
68 }