friendica/mod/oexchange.php

61 lines
1.5 KiB
PHP
Raw Normal View History

2011-03-30 06:59:28 +02:00
<?php
2018-01-21 19:33:59 +01:00
/**
* @file mod/oexchange.php
*/
use Friendica\App;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
use Friendica\Core\Renderer;
use Friendica\DI;
use Friendica\Module\Security\Login;
2018-01-27 05:09:48 +01:00
use Friendica\Util\Network;
use Friendica\Util\Strings;
function oexchange_init(App $a) {
2011-03-30 06:59:28 +02:00
if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
$tpl = Renderer::getMarkupTemplate('oexchange_xrd.tpl');
2011-03-30 06:59:28 +02: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
}
}
function oexchange_content(App $a) {
2011-03-30 06:59:28 +02:00
if (!local_user()) {
$o = Login::form();
2011-03-30 06:59:28 +02:00
return $o;
}
if (($a->argc > 1) && $a->argv[1] === 'done') {
2018-01-21 19:33:59 +01:00
info(L10n::t('Post successful.') . EOL);
2011-03-30 06:59:28 +02:00
return;
}
$url = ((!empty($_REQUEST['url']))
? urlencode(Strings::escapeTags(trim($_REQUEST['url']))) : '');
$title = ((!empty($_REQUEST['title']))
? '&title=' . urlencode(Strings::escapeTags(trim($_REQUEST['title']))) : '');
$description = ((!empty($_REQUEST['description']))
? '&description=' . urlencode(Strings::escapeTags(trim($_REQUEST['description']))) : '');
$tags = ((!empty($_REQUEST['tags']))
? '&tags=' . urlencode(Strings::escapeTags(trim($_REQUEST['tags']))) : '');
2011-09-21 01:57:05 +02:00
$s = Network::fetchUrl(DI::baseUrl() . '/parse_url?url=' . $url . $title . $description . $tags);
2011-03-30 06:59:28 +02:00
if (!strlen($s)) {
2011-03-30 06:59:28 +02:00
return;
}
2011-03-30 06:59:28 +02:00
$post = [];
2011-03-30 06:59:28 +02:00
$post['profile_uid'] = local_user();
$post['return'] = '/oexchange/done';
$post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
2011-03-30 06:59:28 +02:00
$_REQUEST = $post;
2011-03-30 06:59:28 +02:00
require_once('mod/item.php');
item_post($a);
}