]> git.mxchange.org Git - friendica.git/blob - mod/unfollow.php
Merge pull request #10967 from annando/api
[friendica.git] / mod / unfollow.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\Content\Widget;
24 use Friendica\Core\Protocol;
25 use Friendica\Core\Renderer;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Contact;
29 use Friendica\Model\User;
30 use Friendica\Util\Strings;
31
32 function unfollow_post(App $a)
33 {
34         if (!local_user()) {
35                 notice(DI::l10n()->t('Permission denied.'));
36                 DI::baseUrl()->redirect('login');
37                 // NOTREACHED
38         }
39
40         $url = trim($_REQUEST['url'] ?? '');
41
42         unfollow_process($url);
43 }
44
45 function unfollow_content(App $a)
46 {
47         $base_return_path = 'contact';
48
49         if (!local_user()) {
50                 notice(DI::l10n()->t('Permission denied.'));
51                 DI::baseUrl()->redirect('login');
52                 // NOTREACHED
53         }
54
55         $uid = local_user();
56         $url = trim($_REQUEST['url']);
57
58         $condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
59                 local_user(), Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
60                 Strings::normaliseLink($url), $url];
61
62         $contact = DBA::selectFirst('contact', ['url', 'id', 'uid', 'network', 'addr', 'name'], $condition);
63
64         if (!DBA::isResult($contact)) {
65                 notice(DI::l10n()->t("You aren't following this contact."));
66                 DI::baseUrl()->redirect($base_return_path);
67                 // NOTREACHED
68         }
69
70         if (!Protocol::supportsFollow($contact['network'])) {
71                 notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
72                 DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
73                 // NOTREACHED
74         }
75
76         $request = DI::baseUrl() . '/unfollow';
77         $tpl = Renderer::getMarkupTemplate('auto_request.tpl');
78
79         $self = DBA::selectFirst('contact', ['url'], ['uid' => $uid, 'self' => true]);
80
81         if (!DBA::isResult($self)) {
82                 notice(DI::l10n()->t('Permission denied.'));
83                 DI::baseUrl()->redirect($base_return_path);
84                 // NOTREACHED
85         }
86
87         if (!empty($_REQUEST['auto'])) {
88                 unfollow_process($contact['url']);
89         }
90
91         $o = Renderer::replaceMacros($tpl, [
92                 '$header'        => DI::l10n()->t('Disconnect/Unfollow'),
93                 '$page_desc'     => '',
94                 '$your_address'  => DI::l10n()->t('Your Identity Address:'),
95                 '$invite_desc'   => '',
96                 '$submit'        => DI::l10n()->t('Submit Request'),
97                 '$cancel'        => DI::l10n()->t('Cancel'),
98                 '$url'           => $contact['url'],
99                 '$zrl'           => Contact::magicLinkByContact($contact),
100                 '$url_label'     => DI::l10n()->t('Profile URL'),
101                 '$myaddr'        => $self['url'],
102                 '$request'       => $request,
103                 '$keywords'      => '',
104                 '$keywords_label'=> ''
105         ]);
106
107         DI::page()['aside'] = Widget\VCard::getHTML(Contact::getByURL($contact['url'], false));
108
109         $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => DI::l10n()->t('Status Messages and Posts')]);
110
111         // Show last public posts
112         $o .= Contact::getPostsFromUrl($contact['url']);
113
114         return $o;
115 }
116
117 function unfollow_process(string $url)
118 {
119         $base_return_path = 'contact';
120
121         $uid = local_user();
122
123         $owner = User::getOwnerDataById($uid);
124         if (!$owner) {
125                 \Friendica\Module\Security\Logout::init();
126                 // NOTREACHED
127         }
128
129         $condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
130                 $uid, Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
131                 Strings::normaliseLink($url), $url];
132         $contact = DBA::selectFirst('contact', [], $condition);
133
134         if (!DBA::isResult($contact)) {
135                 notice(DI::l10n()->t("You aren't following this contact."));
136                 DI::baseUrl()->redirect($base_return_path);
137                 // NOTREACHED
138         }
139
140         $return_path = $base_return_path . '/' . $contact['id'];
141
142         try {
143                 $result = Contact::terminateFriendship($owner, $contact);
144
145                 if ($result === false) {
146                         $notice_message = DI::l10n()->t('Unable to unfollow this contact, please retry in a few minutes or contact your administrator.');
147                 } else {
148                         $notice_message = DI::l10n()->t('Contact was successfully unfollowed');
149                 }
150         } catch (Exception $e) {
151                 DI::logger()->error($e->getMessage(), ['owner' => $owner, 'contact' => $contact]);
152                 $notice_message = DI::l10n()->t('Unable to unfollow this contact, please contact your administrator');
153         }
154
155         notice($notice_message);
156         DI::baseUrl()->redirect($return_path);
157 }