]> git.mxchange.org Git - friendica.git/blob - src/Module/Bookmarklet.php
spelling: group
[friendica.git] / src / Module / Bookmarklet.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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;
23
24 use Friendica\BaseModule;
25 use Friendica\Content\PageInfo;
26 use Friendica\DI;
27 use Friendica\Module\Security\Login;
28 use Friendica\Network\HTTPException;
29 use Friendica\Util\Strings;
30
31 /**
32  * Creates a bookmarklet
33  * Shows either a editor browser or adds the given bookmarklet to the current user
34  */
35 class Bookmarklet extends BaseModule
36 {
37         protected function content(array $request = []): string
38         {
39                 $_GET['mode'] = 'minimal';
40
41                 $config = DI::config();
42
43                 if (!DI::userSession()->getLocalUserId()) {
44                         $output = '<h2>' . DI::l10n()->t('Login') . '</h2>';
45                         $output .= Login::form(DI::args()->getQueryString(), intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true);
46                         return $output;
47                 }
48
49                 $referer = Strings::normaliseLink($_SERVER['HTTP_REFERER'] ?? '');
50                 $page = Strings::normaliseLink(DI::baseUrl() . "/bookmarklet");
51
52                 if (!strstr($referer, $page)) {
53                         if (empty($_REQUEST["url"])) {
54                                 throw new HTTPException\BadRequestException(DI::l10n()->t('This page is missing a url parameter.'));
55                         }
56
57                         $content = "\n" . PageInfo::getFooterFromUrl($_REQUEST['url']);
58
59                         $x = [
60                                 'title'            => trim($_REQUEST['title'] ?? '', '*'),
61                                 'content'          => $content
62                         ];
63                         $output = DI::conversation()->statusEditor($x, 0, false);
64                         $output .= "<script>window.resizeTo(800,550);</script>";
65                 } else {
66                         $output = '<h2>' . DI::l10n()->t('The post was created') . '</h2>';
67                         $output .= "<script>window.close()</script>";
68                 }
69
70                 return $output;
71         }
72 }