]> git.mxchange.org Git - friendica.git/blob - mod/bookmarklet.php
Ops, one more left ...
[friendica.git] / mod / bookmarklet.php
1 <?php
2 /**
3  * @file mod/bookmarklet.php
4  */
5
6 use Friendica\App;
7 use Friendica\Core\ACL;
8 use Friendica\Core\Config;
9 use Friendica\Core\L10n;
10 use Friendica\Core\System;
11 use Friendica\Module\Login;
12
13 require_once 'include/conversation.php';
14 require_once 'include/items.php';
15
16 function bookmarklet_init()
17 {
18         $_GET["mode"] = "minimal";
19 }
20
21 function bookmarklet_content(App $a)
22 {
23         if (!local_user()) {
24                 $o = '<h2>' . L10n::t('Login') . '</h2>';
25                 $o .= Login::form($a->query_string, intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED ? false : true);
26                 return $o;
27         }
28
29         $referer = normalise_link(defaults($_SERVER, 'HTTP_REFERER', ''));
30         $page = normalise_link(System::baseUrl() . "/bookmarklet");
31
32         if (!strstr($referer, $page)) {
33                 $content = add_page_info($_REQUEST["url"]);
34
35                 $x = [
36                         'is_owner' => true,
37                         'allow_location' => $a->user['allow_location'],
38                         'default_location' => $a->user['default-location'],
39                         'nickname' => $a->user['nickname'],
40                         'lockstate' => ((is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid'])))) ? 'lock' : 'unlock'),
41                         'default_perms' => ACL::getDefaultUserPermissions($a->user),
42                         'acl' => ACL::getFullSelectorHTML($a->user, true),
43                         'bang' => '',
44                         'visitor' => 'block',
45                         'profile_uid' => local_user(),
46                         'title' => trim(defaults($_REQUEST, 'title', ''), "*"),
47                         'content' => $content
48                 ];
49                 $o = status_editor($a, $x, 0, false);
50                 $o .= "<script>window.resizeTo(800,550);</script>";
51         } else {
52                 $o = '<h2>' . L10n::t('The post was created') . '</h2>';
53                 $o .= "<script>window.close()</script>";
54         }
55
56         return $o;
57 }