2017-09-12 08:08:24 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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;
|
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-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
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
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', ['url', '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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Makes the connection request for friendica contacts easier
|
2018-08-30 14:54:12 +02:00
|
|
|
$_SESSION['fastlane'] = $contact['url'];
|
|
|
|
|
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'],
|
|
|
|
'$zrl' => Contact::magicLink($contact['url']),
|
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
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] = '';
|
2020-07-15 19:06:48 +02:00
|
|
|
Profile::load($a, '', 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();
|
|
|
|
|
|
|
|
$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
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
|
|
|
notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
|
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$dissolve = ($contact['rel'] == Contact::SHARING);
|
|
|
|
|
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if ($owner) {
|
|
|
|
Contact::terminateFriendship($owner, $contact, $dissolve);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sharing-only contacts get deleted as there no relationship any more
|
|
|
|
if ($dissolve) {
|
|
|
|
Contact::remove($contact['id']);
|
|
|
|
$return_path = $base_return_path;
|
|
|
|
} else {
|
|
|
|
DBA::update('contact', ['rel' => Contact::FOLLOWER], ['id' => $contact['id']]);
|
|
|
|
$return_path = $base_return_path . '/' . $contact['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
DI::baseUrl()->redirect($return_path);
|
|
|
|
}
|