2015-01-24 23:10:58 +00:00
|
|
|
<?php
|
2016-02-07 14:11:34 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2015-01-24 23:10:58 +00:00
|
|
|
require_once('include/conversation.php');
|
|
|
|
require_once('include/items.php');
|
|
|
|
|
2017-01-09 12:12:54 +00:00
|
|
|
function bookmarklet_init(App $a) {
|
2015-01-24 23:10:58 +00:00
|
|
|
$_GET["mode"] = "minimal";
|
|
|
|
}
|
|
|
|
|
2017-01-09 12:12:54 +00:00
|
|
|
function bookmarklet_content(App $a) {
|
2016-12-20 10:56:34 +00:00
|
|
|
if (!local_user()) {
|
2015-01-24 23:10:58 +00:00
|
|
|
$o = '<h2>'.t('Login').'</h2>';
|
|
|
|
$o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$referer = normalise_link($_SERVER["HTTP_REFERER"]);
|
2017-08-26 07:32:10 +00:00
|
|
|
$page = normalise_link(System::baseUrl()."/bookmarklet");
|
2015-01-24 23:10:58 +00:00
|
|
|
|
|
|
|
if (!strstr($referer, $page)) {
|
|
|
|
$content = add_page_info($_REQUEST["url"]);
|
|
|
|
|
|
|
|
$x = array(
|
|
|
|
'is_owner' => true,
|
|
|
|
'allow_location' => $a->user['allow_location'],
|
|
|
|
'default_location' => $a->user['default-location'],
|
|
|
|
'nickname' => $a->user['nickname'],
|
|
|
|
'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'),
|
|
|
|
'default_perms' => get_acl_permissions($a->user),
|
2015-07-02 10:09:40 +00:00
|
|
|
'acl' => populate_acl($a->user,true),
|
2015-01-24 23:10:58 +00:00
|
|
|
'bang' => '',
|
|
|
|
'visitor' => 'block',
|
|
|
|
'profile_uid' => local_user(),
|
|
|
|
'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
|
2015-02-06 20:10:49 +00:00
|
|
|
'title' => trim($_REQUEST["title"], "*"),
|
2015-01-24 23:10:58 +00:00
|
|
|
'content' => $content
|
|
|
|
);
|
|
|
|
$o = status_editor($a,$x, 0, false);
|
|
|
|
$o .= "<script>window.resizeTo(800,550);</script>";
|
|
|
|
} else {
|
|
|
|
$o = '<h2>'.t('The post was created').'</h2>';
|
|
|
|
$o .= "<script>window.close()</script>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|