2011-03-30 06:59:28 +02:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01: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/>.
|
|
|
|
*
|
2018-01-21 19:33:59 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-30 23:00:08 +01:00
|
|
|
use Friendica\DI;
|
2019-12-27 22:19:28 +01:00
|
|
|
use Friendica\Module\Security\Login;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function oexchange_init(App $a) {
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2017-01-10 00:10:32 +01:00
|
|
|
if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('oexchange_xrd.tpl');
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2019-12-30 23:00:08 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, ['$base' => DI::baseUrl()]);
|
2011-03-30 06:59:28 +02:00
|
|
|
echo $o;
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2011-03-30 06:59:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function oexchange_content(App $a) {
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2018-07-19 15:52:05 +02:00
|
|
|
if (!local_user()) {
|
2017-12-17 17:40:59 +01:00
|
|
|
$o = Login::form();
|
2011-03-30 06:59:28 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (($a->argc > 1) && $a->argv[1] === 'done') {
|
2011-03-30 06:59:28 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-16 16:20:51 +01:00
|
|
|
$url = !empty($_REQUEST['url']) ? trim($_REQUEST['url']) : '';
|
|
|
|
$title = !empty($_REQUEST['title']) ? trim($_REQUEST['title']) : '';
|
|
|
|
$description = !empty($_REQUEST['description']) ? trim($_REQUEST['description']) : '';
|
|
|
|
$tags = !empty($_REQUEST['tags']) ? trim($_REQUEST['tags']) : '';
|
2011-09-21 01:57:05 +02:00
|
|
|
|
2021-02-16 16:20:51 +01:00
|
|
|
$s = \Friendica\Content\Text\BBCode::embedURL($url, true, $title, $description, $tags);
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2018-07-19 15:52:05 +02:00
|
|
|
if (!strlen($s)) {
|
2011-03-30 06:59:28 +02:00
|
|
|
return;
|
2017-01-10 00:10:32 +01:00
|
|
|
}
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$post = [];
|
2011-03-30 06:59:28 +02:00
|
|
|
|
|
|
|
$post['profile_uid'] = local_user();
|
2018-07-19 15:52:05 +02:00
|
|
|
$post['return'] = '/oexchange/done';
|
2018-03-07 22:24:13 +01:00
|
|
|
$post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
|
2011-03-30 06:59:28 +02:00
|
|
|
|
2012-02-16 11:52:35 +01:00
|
|
|
$_REQUEST = $post;
|
2011-03-30 06:59:28 +02:00
|
|
|
require_once('mod/item.php');
|
|
|
|
item_post($a);
|
|
|
|
}
|