]> git.mxchange.org Git - friendica.git/blob - src/Module/WellKnown/XSocialRelay.php
Merge remote-tracking branch 'upstream/develop' into inbox-gsid
[friendica.git] / src / Module / WellKnown / XSocialRelay.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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 namespace Friendica\Module\WellKnown;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\System;
26 use Friendica\DI;
27 use Friendica\Model\Search;
28 use Friendica\Protocol\Relay;
29
30 /**
31  * Node subscription preferences for social realy systems
32  * @see https://git.feneas.org/jaywink/social-relay/blob/master/docs/relays.md
33  */
34 class XSocialRelay extends BaseModule
35 {
36         protected function rawContent(array $request = [])
37         {
38                 $config = DI::config();
39
40                 $scope = $config->get('system', 'relay_scope');
41
42                 $systemTags = [];
43                 $userTags = [];
44
45                 if ($scope == Relay::SCOPE_TAGS) {
46                         $server_tags = $config->get('system', 'relay_server_tags');
47                         $tagitems = explode(',', $server_tags);
48
49                         /// @todo Check if it was better to use "strtolower" on the tags
50                         foreach ($tagitems as $tag) {
51                                 $systemTags[] = trim($tag, '# ');
52                         }
53
54                         if ($config->get('system', 'relay_user_tags')) {
55                                 $userTags = Search::getUserTags();
56                         }
57                 }
58
59                 $tagList = array_unique(array_merge($systemTags, $userTags));
60
61                 $relay = [
62                         'subscribe' => ($scope != Relay::SCOPE_NONE),
63                         'scope'     => $scope,
64                         'tags'      => $tagList,
65                         'protocols' => [
66                                 'activitypub' => [
67                                         'actor' => DI::baseUrl()->get() . '/friendica',
68                                         'receive' => DI::baseUrl()->get() . '/inbox'
69                                 ],
70                                 'dfrn'     => [
71                                         'receive' => DI::baseUrl()->get() . '/dfrn_notify'
72                                 ]
73                         ]
74                 ];
75
76                 if (DI::config()->get("system", "diaspora_enabled")) {
77                         $relay['protocols']['diaspora'] = ['receive' => DI::baseUrl()->get() . '/receive/public'];
78                 }
79
80                 System::jsonExit($relay);
81         }
82 }