]> git.mxchange.org Git - friendica.git/blob - src/Module/RemoteFollow.php
Merge pull request #10544 from annando/router-lock
[friendica.git] / src / Module / RemoteFollow.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 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Content\Widget;
26 use Friendica\DI;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Search;
31 use Friendica\Core\System;
32 use Friendica\Model\Contact;
33 use Friendica\Model\Profile;
34 use Friendica\Model\User;
35 use Friendica\Network\Probe;
36
37 /**
38  * Remotely follow the account on this system by the provided account
39  */
40 class RemoteFollow extends BaseModule
41 {
42         static $owner;
43
44         public static function init(array $parameters = [])
45         {
46                 self::$owner = User::getOwnerDataByNick($parameters['profile']);
47
48                 DI::page()['aside'] = Widget\VCard::getHTML(self::$owner);
49         }
50
51         public static function post(array $parameters = [])
52         {
53                 if (!empty($_POST['cancel']) || empty($_POST['dfrn_url'])) {
54                         DI::baseUrl()->redirect();
55                 }
56         
57                 if (empty(self::$owner)) {
58                         notice(DI::l10n()->t('Profile unavailable.'));
59                         return;
60                 }
61                 
62                 $url = Probe::cleanURI($_POST['dfrn_url']);
63                 if (!strlen($url)) {
64                         notice(DI::l10n()->t("Invalid locator"));
65                         return;
66                 }
67
68                 // Detect the network, make sure the provided URL is valid
69                 $data = Contact::getByURL($url);
70                 if (!$data) {
71                         notice(DI::l10n()->t("The provided profile link doesn't seem to be valid"));
72                         return;
73                 }
74
75                 if (empty($data['subscribe'])) {
76                         notice(DI::l10n()->t("Remote subscription can't be done for your network. Please subscribe directly on your system."));
77                         return;
78                 }
79
80                 Logger::notice('Remote request', ['url' => $url, 'follow' => self::$owner['url'], 'remote' => $data['subscribe']]);
81                 
82                 // Substitute our user's feed URL into $data['subscribe']
83                 // Send the subscriber home to subscribe
84                 // Diaspora needs the uri in the format user@domain.tld
85                 if ($data['network'] == Protocol::DIASPORA) {
86                         $uri = urlencode(self::$owner['addr']);
87                 } else {
88                         $uri = urlencode(self::$owner['url']);
89                 }
90         
91                 $follow_link = str_replace('{uri}', $uri, $data['subscribe']);
92                 System::externalRedirect($follow_link);
93         }
94
95         public static function content(array $parameters = [])
96         {
97                 if (empty(self::$owner)) {
98                         return '';
99                 }
100         
101                 $target_addr = self::$owner['addr'];
102                 $target_url = self::$owner['url'];
103
104                 $tpl = Renderer::getMarkupTemplate('auto_request.tpl');
105                 $o = Renderer::replaceMacros($tpl, [
106                         '$header'        => DI::l10n()->t('Friend/Connection Request'),
107                         '$page_desc'     => DI::l10n()->t('Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn\'t supported by your system, you have to subscribe to <strong>%s</strong> or <strong>%s</strong> directly on your system.', $target_addr, $target_url),
108                         '$invite_desc'   => DI::l10n()->t('If you are not yet a member of the free social web, <a href="%s">follow this link to find a public Friendica node and join us today</a>.', Search::getGlobalDirectory() . '/servers'),
109                         '$your_address'  => DI::l10n()->t('Your Webfinger address or profile URL:'),
110                         '$pls_answer'    => DI::l10n()->t('Please answer the following:'),
111                         '$submit'        => DI::l10n()->t('Submit Request'),
112                         '$cancel'        => DI::l10n()->t('Cancel'),
113
114                         '$request'       => 'remote_follow/' . $parameters['profile'],
115                         '$name'          => self::$owner['name'],
116                         '$myaddr'        => Profile::getMyURL(),
117                 ]);
118                 return $o;
119         }
120 }