2019-05-02 20:17:09 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-02 20:17:09 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-07-14 14:15:04 +00:00
|
|
|
use Friendica\Content\PageInfo;
|
2019-05-02 20:17:09 +00:00
|
|
|
use Friendica\Core\ACL;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-12-27 21:19:28 +00:00
|
|
|
use Friendica\Module\Security\Login;
|
2019-05-02 20:17:09 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a bookmarklet
|
|
|
|
* Shows either a editor browser or adds the given bookmarklet to the current user
|
|
|
|
*/
|
2019-05-05 15:59:57 +00:00
|
|
|
class Bookmarklet extends BaseModule
|
2019-05-02 20:17:09 +00:00
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-02 20:17:09 +00:00
|
|
|
{
|
|
|
|
$_GET['mode'] = 'minimal';
|
|
|
|
|
2019-12-15 21:34:11 +00:00
|
|
|
$app = DI::app();
|
2019-12-15 22:44:33 +00:00
|
|
|
$config = DI::config();
|
2019-05-02 20:17:09 +00:00
|
|
|
|
|
|
|
if (!local_user()) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$output = '<h2>' . DI::l10n()->t('Login') . '</h2>';
|
2019-12-16 00:30:34 +00:00
|
|
|
$output .= Login::form(DI::args()->getQueryString(), intval($config->get('config', 'register_policy')) === Register::CLOSED ? false : true);
|
2019-05-02 20:17:09 +00:00
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2019-10-15 13:20:32 +00:00
|
|
|
$referer = Strings::normaliseLink($_SERVER['HTTP_REFERER'] ?? '');
|
2019-12-16 00:05:15 +00:00
|
|
|
$page = Strings::normaliseLink(DI::baseUrl()->get() . "/bookmarklet");
|
2019-05-02 20:17:09 +00:00
|
|
|
|
|
|
|
if (!strstr($referer, $page)) {
|
|
|
|
if (empty($_REQUEST["url"])) {
|
2020-01-18 19:52:34 +00:00
|
|
|
throw new HTTPException\BadRequestException(DI::l10n()->t('This page is missing a url parameter.'));
|
2019-05-02 20:17:09 +00:00
|
|
|
}
|
|
|
|
|
2020-07-14 14:15:04 +00:00
|
|
|
$content = "\n" . PageInfo::getFooterFromUrl($_REQUEST['url']);
|
2019-05-02 20:17:09 +00:00
|
|
|
|
|
|
|
$x = [
|
|
|
|
'is_owner' => true,
|
|
|
|
'allow_location' => $app->user['allow_location'],
|
|
|
|
'default_location' => $app->user['default-location'],
|
|
|
|
'nickname' => $app->user['nickname'],
|
2019-08-26 22:03:05 +00:00
|
|
|
'lockstate' => ((is_array($app->user) && ((strlen($app->user['allow_cid'])) || (strlen($app->user['allow_gid'])) || (strlen($app->user['deny_cid'])) || (strlen($app->user['deny_gid'])))) ? 'lock' : 'unlock'),
|
2019-05-02 20:17:09 +00:00
|
|
|
'default_perms' => ACL::getDefaultUserPermissions($app->user),
|
2019-12-30 19:02:09 +00:00
|
|
|
'acl' => ACL::getFullSelectorHTML(DI::page(), $app->user, true),
|
2019-05-02 20:17:09 +00:00
|
|
|
'bang' => '',
|
|
|
|
'visitor' => 'block',
|
|
|
|
'profile_uid' => local_user(),
|
2019-10-15 13:20:32 +00:00
|
|
|
'title' => trim($_REQUEST['title'] ?? '', '*'),
|
2019-05-02 20:17:09 +00:00
|
|
|
'content' => $content
|
|
|
|
];
|
|
|
|
$output = status_editor($app, $x, 0, false);
|
|
|
|
$output .= "<script>window.resizeTo(800,550);</script>";
|
|
|
|
} else {
|
2020-01-18 19:52:34 +00:00
|
|
|
$output = '<h2>' . DI::l10n()->t('The post was created') . '</h2>';
|
2019-05-02 20:17:09 +00:00
|
|
|
$output .= "<script>window.close()</script>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
}
|