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