Issue 8254: Length restriction for "title" and "uri"
[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\Network;
27 use Friendica\Util\Strings;
28
29 function oexchange_init(App $a) {
30
31         if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
32                 $tpl = Renderer::getMarkupTemplate('oexchange_xrd.tpl');
33
34                 $o = Renderer::replaceMacros($tpl, ['$base' => DI::baseUrl()]);
35                 echo $o;
36                 exit();
37         }
38 }
39
40 function oexchange_content(App $a) {
41
42         if (!local_user()) {
43                 $o = Login::form();
44                 return $o;
45         }
46
47         if (($a->argc > 1) && $a->argv[1] === 'done') {
48                 info(DI::l10n()->t('Post successful.') . EOL);
49                 return;
50         }
51
52         $url = ((!empty($_REQUEST['url']))
53                 ? urlencode(Strings::escapeTags(trim($_REQUEST['url']))) : '');
54         $title = ((!empty($_REQUEST['title']))
55                 ? '&title=' . urlencode(Strings::escapeTags(trim($_REQUEST['title']))) : '');
56         $description = ((!empty($_REQUEST['description']))
57                 ? '&description=' . urlencode(Strings::escapeTags(trim($_REQUEST['description']))) : '');
58         $tags = ((!empty($_REQUEST['tags']))
59                 ? '&tags=' . urlencode(Strings::escapeTags(trim($_REQUEST['tags']))) : '');
60
61         $s = Network::fetchUrl(DI::baseUrl() . '/parse_url?url=' . $url . $title . $description . $tags);
62
63         if (!strlen($s)) {
64                 return;
65         }
66
67         $post = [];
68
69         $post['profile_uid'] = local_user();
70         $post['return'] = '/oexchange/done';
71         $post['body'] = Friendica\Content\Text\HTML::toBBCode($s);
72
73         $_REQUEST = $post;
74         require_once('mod/item.php');
75         item_post($a);
76 }