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