]> git.mxchange.org Git - friendica.git/blob - mod/oexchange.php
4746651c16985262ff3732bc00deac1ac8d9cc65
[friendica.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                 info(DI::l10n()->t('Post successful.') . EOL);
48                 return;
49         }
50
51         $url = ((!empty($_REQUEST['url']))
52                 ? urlencode(Strings::escapeTags(trim($_REQUEST['url']))) : '');
53         $title = ((!empty($_REQUEST['title']))
54                 ? '&title=' . urlencode(Strings::escapeTags(trim($_REQUEST['title']))) : '');
55         $description = ((!empty($_REQUEST['description']))
56                 ? '&description=' . urlencode(Strings::escapeTags(trim($_REQUEST['description']))) : '');
57         $tags = ((!empty($_REQUEST['tags']))
58                 ? '&tags=' . urlencode(Strings::escapeTags(trim($_REQUEST['tags']))) : '');
59
60         $s = DI::httpRequest()->fetchUrl(DI::baseUrl() . '/parse_url?url=' . $url . $title . $description . $tags);
61
62         if (!strlen($s)) {
63                 return;
64         }
65
66         $post = [];
67
68         $post['profile_uid'] = local_user();
69         $post['return'] = '/oexchange/done';
70         $post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
71
72         $_REQUEST = $post;
73         require_once('mod/item.php');
74         item_post($a);
75 }