Merge pull request #9870 from annando/uri-id
[friendica.git/.git] / mod / oexchange.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\Core\Renderer;
24 use Friendica\DI;
25 use Friendica\Module\Security\Login;
26 use Friendica\Util\Strings;
27
28 function oexchange_init(App $a) {
29
30         if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
31                 $tpl = Renderer::getMarkupTemplate('oexchange_xrd.tpl');
32
33                 $o = Renderer::replaceMacros($tpl, ['$base' => DI::baseUrl()]);
34                 echo $o;
35                 exit();
36         }
37 }
38
39 function oexchange_content(App $a) {
40
41         if (!local_user()) {
42                 $o = Login::form();
43                 return $o;
44         }
45
46         if (($a->argc > 1) && $a->argv[1] === 'done') {
47                 return;
48         }
49
50         $url = ((!empty($_REQUEST['url']))
51                 ? urlencode(Strings::escapeTags(trim($_REQUEST['url']))) : '');
52         $title = ((!empty($_REQUEST['title']))
53                 ? '&title=' . urlencode(Strings::escapeTags(trim($_REQUEST['title']))) : '');
54         $description = ((!empty($_REQUEST['description']))
55                 ? '&description=' . urlencode(Strings::escapeTags(trim($_REQUEST['description']))) : '');
56         $tags = ((!empty($_REQUEST['tags']))
57                 ? '&tags=' . urlencode(Strings::escapeTags(trim($_REQUEST['tags']))) : '');
58
59         $s = DI::httpRequest()->fetch(DI::baseUrl() . '/parse_url?url=' . $url . $title . $description . $tags);
60
61         if (!strlen($s)) {
62                 return;
63         }
64
65         $post = [];
66
67         $post['profile_uid'] = local_user();
68         $post['return'] = '/oexchange/done';
69         $post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
70
71         $_REQUEST = $post;
72         require_once('mod/item.php');
73         item_post($a);
74 }