]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Follow.php
Fixing the non-auto follow process ...
[friendica.git] / src / Module / Contact / Follow.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Contact;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Content\Widget\VCard;
27 use Friendica\Core\Config\Capability\IManageConfigValues;
28 use Friendica\Core\L10n;
29 use Friendica\Core\Protocol;
30 use Friendica\Core\Renderer;
31 use Friendica\Core\Session\Capability\IHandleUserSessions;
32 use Friendica\Model\Contact;
33 use Friendica\Model\Item;
34 use Friendica\Model\Post;
35 use Friendica\Model\Profile;
36 use Friendica\Model\User;
37 use Friendica\Module\Response;
38 use Friendica\Navigation\SystemMessages;
39 use Friendica\Network\HTTPException\ForbiddenException;
40 use Friendica\Network\Probe;
41 use Friendica\Util\Profiler;
42 use Friendica\Util\Strings;
43 use Psr\Log\LoggerInterface;
44
45 class Follow extends BaseModule
46 {
47         /** @var IHandleUserSessions */
48         protected $session;
49         /** @var SystemMessages */
50         protected $sysMessages;
51         /** @var IManageConfigValues */
52         protected $config;
53         /** @var App\Page */
54         protected $page;
55
56         public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IHandleUserSessions $session, SystemMessages $sysMessages, IManageConfigValues $config, App\Page $page, array $server, array $parameters = [])
57         {
58                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
59
60                 $this->session     = $session;
61                 $this->sysMessages = $sysMessages;
62                 $this->config      = $config;
63                 $this->page        = $page;
64         }
65
66         protected function post(array $request = [])
67         {
68                 if (!$this->session->getLocalUserId()) {
69                         throw new ForbiddenException($this->t('Access denied.'));
70                 }
71
72                 if (isset($request['cancel']) || empty($request['url'])) {
73                         $this->baseUrl->redirect('contact');
74                 }
75
76                 $url = Probe::cleanURI($request['url']);
77
78                 $this->process($url);
79         }
80
81         protected function content(array $request = []): string
82         {
83                 $returnPath = 'contact';
84
85                 if (!$this->session->getLocalUserId()) {
86                         $this->sysMessages->addNotice($this->t('Permission denied.'));
87                         $this->baseUrl->redirect($returnPath);
88                 }
89
90                 $uid = $this->session->getLocalUserId();
91                 $url = Probe::cleanURI(trim($request['url'] ?? ''));
92
93                 // Issue 6874: Allow remote following from Peertube
94                 if (strpos($url, 'acct:') === 0) {
95                         $url = str_replace('acct:', '', $url);
96                 }
97
98                 if (empty($url)) {
99                         $this->baseUrl->redirect($returnPath);
100                 }
101
102                 $submit = $this->t('Submit Request');
103
104                 // Don't try to add a pending contact
105                 $userContact = Contact::selectFirst(['pending'], [
106                         "`uid` = ? AND ((`rel` != ?) OR (`network` = ?)) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
107                         $uid, Contact::FOLLOWER, Protocol::DFRN,
108                         Strings::normaliseLink($url),
109                         Strings::normaliseLink($url), $url,
110                         Protocol::STATUSNET]);
111
112                 if (!empty($userContact['pending'])) {
113                         $this->sysMessages->addNotice($this->t('You already added this contact.'));
114                         $submit = '';
115                 }
116
117                 $contact = Contact::getByURL($url, true);
118
119                 // Possibly it is a mail contact
120                 if (empty($contact)) {
121                         $contact = Probe::uri($url, Protocol::MAIL, $uid);
122                 }
123
124                 if (empty($contact) || ($contact['network'] == Protocol::PHANTOM)) {
125                         // Possibly it is a remote item and not an account
126                         $this->followRemoteItem($url);
127
128                         $this->sysMessages->addNotice($this->t('The network type couldn\'t be detected. Contact can\'t be added.'));
129                         $submit  = '';
130                         $contact = ['url' => $url, 'network' => Protocol::PHANTOM, 'name' => $url, 'keywords' => ''];
131                 }
132
133                 $protocol = Contact::getProtocol($contact['url'], $contact['network']);
134
135                 if (($protocol == Protocol::DIASPORA) && !$this->config->get('system', 'diaspora_enabled')) {
136                         $this->sysMessages->addNotice($this->t('Diaspora support isn\'t enabled. Contact can\'t be added.'));
137                         $submit = '';
138                 }
139
140                 if (($protocol == Protocol::OSTATUS) && $this->config->get('system', 'ostatus_disabled')) {
141                         $this->sysMessages->addNotice($this->t("OStatus support is disabled. Contact can't be added."));
142                         $submit = '';
143                 }
144
145                 if ($protocol == Protocol::MAIL) {
146                         $contact['url'] = $contact['addr'];
147                 }
148
149                 if (!empty($request['auto'])) {
150                         $this->process($contact['url']);
151                 }
152
153                 $requestUrl = $this->baseUrl . '/contact/follow';
154                 $tpl     = Renderer::getMarkupTemplate('auto_request.tpl');
155
156                 $owner = User::getOwnerDataById($uid);
157                 if (empty($owner)) {
158                         $this->sysMessages->addNotice($this->t('Permission denied.'));
159                         $this->baseUrl->redirect($returnPath);
160                 }
161
162                 $myaddr = $owner['url'];
163
164                 $output = Renderer::replaceMacros($tpl, [
165                         '$header'         => $this->t('Connect/Follow'),
166                         '$pls_answer'     => $this->t('Please answer the following:'),
167                         '$your_address'   => $this->t('Your Identity Address:'),
168                         '$url_label'      => $this->t('Profile URL'),
169                         '$keywords_label' => $this->t('Tags:'),
170                         '$submit'         => $submit,
171                         '$cancel'         => $this->t('Cancel'),
172
173                         '$request'  => $requestUrl,
174                         '$name'     => $contact['name'],
175                         '$url'      => $contact['url'],
176                         '$zrl'      => Profile::zrl($contact['url']),
177                         '$myaddr'   => $myaddr,
178                         '$keywords' => $contact['keywords'],
179
180                         '$does_know_you' => ['knowyou', $this->t('%s knows you', $contact['name'])],
181                         '$addnote_field' => ['dfrn-request-message', $this->t('Add a personal note:')],
182                 ]);
183
184                 $this->page['aside'] = '';
185
186                 if (!in_array($protocol, [Protocol::PHANTOM, Protocol::MAIL])) {
187                         $this->page['aside'] = VCard::getHTML($contact);
188
189                         $output .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'),
190                                 ['$title' => $this->t('Status Messages and Posts')]
191                         );
192
193                         // Show last public posts
194                         $output .= Contact::getPostsFromUrl($contact['url']);
195                 }
196
197                 return $output;
198         }
199
200         protected function process(string $url)
201         {
202                 $returnPath = 'contact/follow?url=' . urlencode($url);
203
204                 $result = Contact::createFromProbeForUser($this->session->getLocalUserId(), $url);
205
206                 if (!$result['success']) {
207                         // Possibly it is a remote item and not an account
208                         $this->followRemoteItem($url);
209
210                         if (!empty($result['message'])) {
211                                 $this->sysMessages->addNotice($result['message']);
212                         }
213
214                         $this->baseUrl->redirect($returnPath);
215                 } elseif (!empty($result['cid'])) {
216                         $this->baseUrl->redirect('contact/' . $result['cid']);
217                 }
218
219                 $this->sysMessages->addNotice($this->t('The contact could not be added.'));
220                 $this->baseUrl->redirect($returnPath);
221         }
222
223         protected function followRemoteItem(string $url)
224         {
225                 $itemId = Item::fetchByLink($url, $this->session->getLocalUserId());
226                 if (!$itemId) {
227                         // If the user-specific search failed, we search and probe a public post
228                         $itemId = Item::fetchByLink($url);
229                 }
230
231                 if (!empty($itemId)) {
232                         $item = Post::selectFirst(['guid'], ['id' => $itemId]);
233                         if (!empty($item['guid'])) {
234                                 $this->baseUrl->redirect('display/' . $item['guid']);
235                         }
236                 }
237         }
238 }