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