Update copyright
[friendica.git/.git] / mod / oexchange.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
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'])         ? trim($_REQUEST['url'])         : '';
51         $title       = !empty($_REQUEST['title'])       ? trim($_REQUEST['title'])       : '';
52         $description = !empty($_REQUEST['description']) ? trim($_REQUEST['description']) : '';
53         $tags        = !empty($_REQUEST['tags'])        ? trim($_REQUEST['tags'])        : '';
54
55         $s = \Friendica\Content\Text\BBCode::embedURL($url, true, $title, $description, $tags);
56
57         if (!strlen($s)) {
58                 return;
59         }
60
61         $post = [];
62
63         $post['profile_uid'] = local_user();
64         $post['return'] = '/oexchange/done';
65         $post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
66
67         $_REQUEST = $post;
68         require_once('mod/item.php');
69         item_post($a);
70 }