]> git.mxchange.org Git - friendica.git/blob - mod/oexchange.php
FR update to the strings THX Perig
[friendica.git] / mod / oexchange.php
1 <?php
2
3
4 function oexchange_init(&$a) {
5
6         if(($a->argc > 1) && ($a->argv[1] === 'xrd')) {
7                 $tpl = get_markup_template('oexchange_xrd.tpl');
8
9                 $o = replace_macros($tpl, array('$base' => $a->get_baseurl()));
10                 echo $o;
11                 killme();
12         }
13
14
15 }
16
17 function oexchange_content(&$a) {
18
19         if(! local_user()) {
20                 $o = login(false);
21                 return $o;
22         }
23
24         if(($a->argc > 1) && $a->argv[1] === 'done') {
25                 info( t('Post successful.') . EOL);
26                 return;
27         }
28
29         $url = (((x($_REQUEST,'url')) && strlen($_REQUEST['url'])) 
30                 ? urlencode(notags(trim($_REQUEST['url']))) : '');
31         $title = (((x($_REQUEST,'title')) && strlen($_REQUEST['title'])) 
32                 ? '&title=' . urlencode(notags(trim($_REQUEST['title']))) : '');
33         $description = (((x($_REQUEST,'description')) && strlen($_REQUEST['description'])) 
34                 ? '&description=' . urlencode(notags(trim($_REQUEST['description']))) : '');
35         $tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags'])) 
36                 ? '&tags=' . urlencode(notags(trim($_REQUEST['tags']))) : '');
37
38         $s = fetch_url($a->get_baseurl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
39
40         if(! strlen($s))
41                 return;
42
43         require_once('include/html2bbcode.php');
44
45         $post = array();
46
47         $post['profile_uid'] = local_user();
48         $post['return'] = '/oexchange/done' ;
49         $post['body'] = html2bbcode($s);
50         $post['type'] = 'wall';
51
52         $_REQUEST = $post;
53         require_once('mod/item.php');
54         item_post($a);
55
56 }
57
58