]> git.mxchange.org Git - friendica.git/blob - src/Module/Bookmarklet.php
Get rid of App->user completely
[friendica.git] / src / Module / Bookmarklet.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\ACL;
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         public static function content(array $parameters = [])
39         {
40                 $_GET['mode'] = 'minimal';
41
42                 $app = DI::app();
43                 $config = DI::config();
44
45                 if (!local_user()) {
46                         $output = '<h2>' . DI::l10n()->t('Login') . '</h2>';
47                         $output .= Login::form(DI::args()->getQueryString(), intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true);
48                         return $output;
49                 }
50
51                 $referer = Strings::normaliseLink($_SERVER['HTTP_REFERER'] ?? '');
52                 $page = Strings::normaliseLink(DI::baseUrl()->get() . "/bookmarklet");
53
54                 if (!strstr($referer, $page)) {
55                         if (empty($_REQUEST["url"])) {
56                                 throw new HTTPException\BadRequestException(DI::l10n()->t('This page is missing a url parameter.'));
57                         }
58
59                         $content = "\n" . PageInfo::getFooterFromUrl($_REQUEST['url']);
60
61                         $x = [
62                                 'title'            => trim($_REQUEST['title'] ?? '', '*'),
63                                 'content'          => $content
64                         ];
65                         $output = status_editor($app, $x, 0, false);
66                         $output .= "<script>window.resizeTo(800,550);</script>";
67                 } else {
68                         $output = '<h2>' . DI::l10n()->t('The post was created') . '</h2>';
69                         $output .= "<script>window.close()</script>";
70                 }
71
72                 return $output;
73         }
74 }