4 use Friendica\Core\System;
5 use Friendica\Module\Login;
7 function oexchange_init(App $a) {
9 if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
10 $tpl = get_markup_template('oexchange_xrd.tpl');
12 $o = replace_macros($tpl, array('$base' => System::baseUrl()));
18 function oexchange_content(App $a) {
25 if (($a->argc > 1) && $a->argv[1] === 'done') {
26 info( t('Post successful.') . EOL);
30 $url = (((x($_REQUEST,'url')) && strlen($_REQUEST['url']))
31 ? urlencode(notags(trim($_REQUEST['url']))) : '');
32 $title = (((x($_REQUEST,'title')) && strlen($_REQUEST['title']))
33 ? '&title=' . urlencode(notags(trim($_REQUEST['title']))) : '');
34 $description = (((x($_REQUEST,'description')) && strlen($_REQUEST['description']))
35 ? '&description=' . urlencode(notags(trim($_REQUEST['description']))) : '');
36 $tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags']))
37 ? '&tags=' . urlencode(notags(trim($_REQUEST['tags']))) : '');
39 $s = fetch_url(System::baseUrl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
45 require_once('include/html2bbcode.php');
49 $post['profile_uid'] = local_user();
50 $post['return'] = '/oexchange/done' ;
51 $post['body'] = html2bbcode($s);
52 $post['type'] = 'wall';
55 require_once('mod/item.php');