2017-09-12 06:08:24 +00:00
|
|
|
<?php
|
2018-01-09 14:59:52 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-09 14:59:52 +00:00
|
|
|
*/
|
2018-07-20 02:15:21 +00:00
|
|
|
|
2017-09-12 06:08:24 +00:00
|
|
|
use Friendica\App;
|
2021-07-23 12:39:37 +00:00
|
|
|
use Friendica\Content\Widget;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:28:31 +00:00
|
|
|
use Friendica\DI;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-08-31 15:22:51 +00:00
|
|
|
use Friendica\Model\User;
|
2018-11-08 15:14:37 +00:00
|
|
|
use Friendica\Util\Strings;
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2018-10-13 18:02:04 +00:00
|
|
|
function unfollow_post(App $a)
|
2018-01-15 02:22:39 +00:00
|
|
|
{
|
2017-09-12 11:04:59 +00:00
|
|
|
if (!local_user()) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect('login');
|
2017-09-12 11:04:59 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-10-20 04:05:04 +00:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url'] ?? ''));
|
|
|
|
|
|
|
|
unfollow_process($url);
|
2017-09-12 11:04:59 +00:00
|
|
|
}
|
|
|
|
|
2018-01-22 14:16:25 +00:00
|
|
|
function unfollow_content(App $a)
|
|
|
|
{
|
2018-11-13 21:01:01 +00:00
|
|
|
$base_return_path = 'contact';
|
2018-09-30 17:03:05 +00:00
|
|
|
|
2018-08-30 12:54:12 +00:00
|
|
|
if (!local_user()) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect('login');
|
2017-09-12 06:08:24 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
2018-11-09 18:29:42 +00:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url']));
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2018-08-30 12:52:15 +00:00
|
|
|
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
2018-11-08 16:28:29 +00:00
|
|
|
local_user(), Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url];
|
2018-08-11 20:40:44 +00:00
|
|
|
|
2021-02-17 18:59:19 +00:00
|
|
|
$contact = DBA::selectFirst('contact', ['url', 'id', 'uid', 'network', 'addr', 'name'], $condition);
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($contact)) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t("You aren't following this contact."));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2017-09-12 06:08:24 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2021-10-09 06:10:16 +00:00
|
|
|
if (!Protocol::supportsFollow($contact['network'])) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
2017-09-12 06:08:24 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:00:08 +00:00
|
|
|
$request = DI::baseUrl() . '/unfollow';
|
2018-10-31 14:44:06 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('auto_request.tpl');
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2018-08-30 12:54:12 +00:00
|
|
|
$self = DBA::selectFirst('contact', ['url'], ['uid' => $uid, 'self' => true]);
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2018-08-30 12:54:12 +00:00
|
|
|
if (!DBA::isResult($self)) {
|
2020-01-18 19:52:34 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2017-09-12 06:08:24 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-10-20 04:05:04 +00:00
|
|
|
if (!empty($_REQUEST['auto'])) {
|
|
|
|
unfollow_process($contact['url']);
|
|
|
|
}
|
|
|
|
|
2018-10-31 14:35:50 +00:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 19:52:34 +00:00
|
|
|
'$header' => DI::l10n()->t('Disconnect/Unfollow'),
|
2018-08-30 12:54:12 +00:00
|
|
|
'$page_desc' => '',
|
2020-01-18 19:52:34 +00:00
|
|
|
'$your_address' => DI::l10n()->t('Your Identity Address:'),
|
2018-08-30 12:54:12 +00:00
|
|
|
'$invite_desc' => '',
|
2020-01-18 19:52:34 +00:00
|
|
|
'$submit' => DI::l10n()->t('Submit Request'),
|
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2018-08-30 12:54:12 +00:00
|
|
|
'$url' => $contact['url'],
|
2021-02-17 18:59:19 +00:00
|
|
|
'$zrl' => Contact::magicLinkByContact($contact),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$url_label' => DI::l10n()->t('Profile URL'),
|
2018-08-30 12:54:12 +00:00
|
|
|
'$myaddr' => $self['url'],
|
|
|
|
'$request' => $request,
|
|
|
|
'$keywords' => '',
|
|
|
|
'$keywords_label'=> ''
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2021-07-23 12:39:37 +00:00
|
|
|
DI::page()['aside'] = Widget\VCard::getHTML(Contact::getByURL($contact['url'], false));
|
2017-09-12 06:08:24 +00:00
|
|
|
|
2020-01-18 19:52:34 +00:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => DI::l10n()->t('Status Messages and Posts')]);
|
2017-09-12 06:08:24 +00:00
|
|
|
|
|
|
|
// Show last public posts
|
2018-08-30 12:54:12 +00:00
|
|
|
$o .= Contact::getPostsFromUrl($contact['url']);
|
2017-09-12 06:08:24 +00:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2020-10-20 03:49:58 +00:00
|
|
|
|
2020-10-20 04:05:04 +00:00
|
|
|
function unfollow_process(string $url)
|
2020-10-20 03:49:58 +00:00
|
|
|
{
|
|
|
|
$base_return_path = 'contact';
|
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
|
2021-09-26 14:30:44 +00:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (!$owner) {
|
|
|
|
\Friendica\Module\Security\Logout::init();
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-10-20 03:49:58 +00:00
|
|
|
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
|
|
|
$uid, Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url];
|
|
|
|
$contact = DBA::selectFirst('contact', [], $condition);
|
|
|
|
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
notice(DI::l10n()->t("You aren't following this contact."));
|
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2021-09-26 14:30:44 +00:00
|
|
|
$return_path = $base_return_path . '/' . $contact['id'];
|
|
|
|
|
|
|
|
try {
|
2021-10-02 19:48:20 +00:00
|
|
|
$result = Contact::terminateFriendship($owner, $contact);
|
2021-09-26 14:30:44 +00:00
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
$notice_message = DI::l10n()->t('Unable to unfollow this contact, please retry in a few minutes or contact your administrator.');
|
2021-10-07 00:19:12 +00:00
|
|
|
} else {
|
2021-09-26 14:30:44 +00:00
|
|
|
$notice_message = DI::l10n()->t('Contact was successfully unfollowed');
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
2021-10-02 19:48:20 +00:00
|
|
|
DI::logger()->error($e->getMessage(), ['owner' => $owner, 'contact' => $contact]);
|
2021-09-26 14:30:44 +00:00
|
|
|
$notice_message = DI::l10n()->t('Unable to unfollow this contact, please contact your administrator');
|
2020-10-20 03:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 14:30:44 +00:00
|
|
|
notice($notice_message);
|
2020-10-20 03:49:58 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2021-05-22 21:45:15 +00:00
|
|
|
}
|