2017-09-12 08:08:24 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01: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 15:59:52 +01:00
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-09-12 08:08:24 +02:00
|
|
|
use Friendica\App;
|
2021-07-23 14:39:37 +02:00
|
|
|
use Friendica\Content\Widget;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-08-31 17:22:51 +02:00
|
|
|
use Friendica\Model\User;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-10-13 20:02:04 +02:00
|
|
|
function unfollow_post(App $a)
|
2018-01-15 03:22:39 +01:00
|
|
|
{
|
2017-09-12 13:04:59 +02:00
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('login');
|
2017-09-12 13:04:59 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-10-20 06:05:04 +02:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url'] ?? ''));
|
|
|
|
|
|
|
|
unfollow_process($url);
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
function unfollow_content(App $a)
|
|
|
|
{
|
2018-11-13 22:01:01 +01:00
|
|
|
$base_return_path = 'contact';
|
2018-09-30 19:03:05 +02:00
|
|
|
|
2018-08-30 14:54:12 +02:00
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('login');
|
2017-09-12 08:08:24 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
2018-11-09 19:29:42 +01:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url']));
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-08-30 14:52:15 +02:00
|
|
|
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
2018-11-08 17:28:29 +01:00
|
|
|
local_user(), Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url];
|
2018-08-11 22:40:44 +02:00
|
|
|
|
2021-02-17 19:59:19 +01:00
|
|
|
$contact = DBA::selectFirst('contact', ['url', 'id', 'uid', 'network', 'addr', 'name'], $condition);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t("You aren't following this contact."));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2017-09-12 08:08:24 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-08-30 23:53:23 +02:00
|
|
|
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
2017-09-12 08:08:24 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2019-12-30 23:00:08 +01:00
|
|
|
$request = DI::baseUrl() . '/unfollow';
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('auto_request.tpl');
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-08-30 14:54:12 +02:00
|
|
|
$self = DBA::selectFirst('contact', ['url'], ['uid' => $uid, 'self' => true]);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-08-30 14:54:12 +02:00
|
|
|
if (!DBA::isResult($self)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2017-09-12 08:08:24 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-10-20 06:05:04 +02:00
|
|
|
if (!empty($_REQUEST['auto'])) {
|
|
|
|
unfollow_process($contact['url']);
|
|
|
|
}
|
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 20:52:34 +01:00
|
|
|
'$header' => DI::l10n()->t('Disconnect/Unfollow'),
|
2018-08-30 14:54:12 +02:00
|
|
|
'$page_desc' => '',
|
2020-01-18 20:52:34 +01:00
|
|
|
'$your_address' => DI::l10n()->t('Your Identity Address:'),
|
2018-08-30 14:54:12 +02:00
|
|
|
'$invite_desc' => '',
|
2020-01-18 20:52:34 +01:00
|
|
|
'$submit' => DI::l10n()->t('Submit Request'),
|
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2018-08-30 14:54:12 +02:00
|
|
|
'$url' => $contact['url'],
|
2021-02-17 19:59:19 +01:00
|
|
|
'$zrl' => Contact::magicLinkByContact($contact),
|
2020-01-18 20:52:34 +01:00
|
|
|
'$url_label' => DI::l10n()->t('Profile URL'),
|
2018-08-30 14:54:12 +02:00
|
|
|
'$myaddr' => $self['url'],
|
|
|
|
'$request' => $request,
|
|
|
|
'$keywords' => '',
|
|
|
|
'$keywords_label'=> ''
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2021-07-23 14:39:37 +02:00
|
|
|
DI::page()['aside'] = Widget\VCard::getHTML(Contact::getByURL($contact['url'], false));
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => DI::l10n()->t('Status Messages and Posts')]);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
|
|
|
// Show last public posts
|
2018-08-30 14:54:12 +02:00
|
|
|
$o .= Contact::getPostsFromUrl($contact['url']);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2020-10-20 05:49:58 +02:00
|
|
|
|
2020-10-20 06:05:04 +02:00
|
|
|
function unfollow_process(string $url)
|
2020-10-20 05:49:58 +02:00
|
|
|
{
|
|
|
|
$base_return_path = 'contact';
|
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
|
2021-09-26 16:30:44 +02:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (!$owner) {
|
|
|
|
\Friendica\Module\Security\Logout::init();
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-10-20 05:49:58 +02: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 16:30:44 +02:00
|
|
|
$notice_message = '';
|
|
|
|
$return_path = $base_return_path . '/' . $contact['id'];
|
|
|
|
|
|
|
|
try {
|
2021-10-02 21:48:20 +02:00
|
|
|
$result = Contact::terminateFriendship($owner, $contact);
|
2021-09-26 16:30:44 +02:00
|
|
|
|
|
|
|
if ($result === null) {
|
|
|
|
$notice_message = DI::l10n()->t('Unfollowing is currently not supported by this contact\'s network.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
$notice_message = DI::l10n()->t('Unable to unfollow this contact, please retry in a few minutes or contact your administrator.');
|
|
|
|
}
|
2020-10-20 05:49:58 +02:00
|
|
|
|
2021-09-26 16:30:44 +02:00
|
|
|
if ($result === true) {
|
|
|
|
$notice_message = DI::l10n()->t('Contact was successfully unfollowed');
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
2021-10-02 21:48:20 +02:00
|
|
|
DI::logger()->error($e->getMessage(), ['owner' => $owner, 'contact' => $contact]);
|
2021-09-26 16:30:44 +02:00
|
|
|
$notice_message = DI::l10n()->t('Unable to unfollow this contact, please contact your administrator');
|
2020-10-20 05:49:58 +02:00
|
|
|
}
|
|
|
|
|
2021-09-26 16:30:44 +02:00
|
|
|
notice($notice_message);
|
2020-10-20 05:49:58 +02:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2021-05-22 23:45:15 +02:00
|
|
|
}
|