2015-01-25 00:10:58 +01:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
|
|
|
* @file mod/bookmarklet.php
|
|
|
|
*/
|
2018-02-26 02:00:05 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-03-03 00:41:24 +01:00
|
|
|
use Friendica\Core\ACL;
|
2018-07-07 23:46:30 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-12-17 17:40:59 +01:00
|
|
|
use Friendica\Module\Login;
|
2018-11-08 17:28:29 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
function bookmarklet_init()
|
2017-12-17 02:13:10 +01:00
|
|
|
{
|
2015-01-25 00:10:58 +01:00
|
|
|
$_GET["mode"] = "minimal";
|
|
|
|
}
|
|
|
|
|
2017-12-17 02:13:10 +01:00
|
|
|
function bookmarklet_content(App $a)
|
|
|
|
{
|
2016-12-20 11:56:34 +01:00
|
|
|
if (!local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
$o = '<h2>' . L10n::t('Login') . '</h2>';
|
2018-12-28 02:56:15 +01:00
|
|
|
$o .= Login::form($a->query_string, intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED ? false : true);
|
2015-01-25 00:10:58 +01:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2018-11-08 17:28:29 +01:00
|
|
|
$referer = Strings::normaliseLink(defaults($_SERVER, 'HTTP_REFERER', ''));
|
|
|
|
$page = Strings::normaliseLink(System::baseUrl() . "/bookmarklet");
|
2015-01-25 00:10:58 +01:00
|
|
|
|
|
|
|
if (!strstr($referer, $page)) {
|
2018-09-11 06:10:11 +02:00
|
|
|
if (empty($_REQUEST["url"])) {
|
|
|
|
System::httpExit(400, ["title" => L10n::t('Bad Request')]);
|
|
|
|
}
|
|
|
|
|
2015-01-25 00:10:58 +01:00
|
|
|
$content = add_page_info($_REQUEST["url"]);
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$x = [
|
2015-01-25 00:10:58 +01:00
|
|
|
'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'),
|
2018-03-03 00:41:24 +01:00
|
|
|
'default_perms' => ACL::getDefaultUserPermissions($a->user),
|
|
|
|
'acl' => ACL::getFullSelectorHTML($a->user, true),
|
2015-01-25 00:10:58 +01:00
|
|
|
'bang' => '',
|
|
|
|
'visitor' => 'block',
|
|
|
|
'profile_uid' => local_user(),
|
2018-08-11 23:05:42 +02:00
|
|
|
'title' => trim(defaults($_REQUEST, 'title', ''), "*"),
|
2015-01-25 00:10:58 +01:00
|
|
|
'content' => $content
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2017-12-17 02:13:10 +01:00
|
|
|
$o = status_editor($a, $x, 0, false);
|
2015-01-25 00:10:58 +01:00
|
|
|
$o .= "<script>window.resizeTo(800,550);</script>";
|
|
|
|
} else {
|
2018-01-21 19:33:59 +01:00
|
|
|
$o = '<h2>' . L10n::t('The post was created') . '</h2>';
|
2015-01-25 00:10:58 +01:00
|
|
|
$o .= "<script>window.close()</script>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|