2017-09-12 08:08:24 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
|
|
|
* @file mod/unfollow.php
|
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-09-12 08:08:24 +02:00
|
|
|
use Friendica\App;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
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
|
|
|
{
|
2018-11-13 22:01:01 +01:00
|
|
|
$base_return_path = 'contact';
|
2018-08-30 14:54:12 +02:00
|
|
|
|
2017-09-12 13:04:59 +02:00
|
|
|
if (!local_user()) {
|
2018-08-30 14:54:12 +02:00
|
|
|
notice(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
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
2019-10-15 15:01:17 +02:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url'] ?? ''));
|
2017-09-12 13:04:59 +02:00
|
|
|
|
2018-09-05 01:29:36 +02:00
|
|
|
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
2018-11-08 17:28:29 +01:00
|
|
|
$uid, Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', [], $condition);
|
2017-09-12 13:04:59 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2018-08-30 14:52:15 +02:00
|
|
|
notice(L10n::t("You aren't following this contact."));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2018-08-30 14:52:15 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-10-02 18:13:58 +02:00
|
|
|
if (!empty($_REQUEST['cancel'])) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
2018-10-02 18:13:58 +02:00
|
|
|
}
|
|
|
|
|
2018-08-30 23:53:23 +02:00
|
|
|
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
2018-08-30 14:52:15 +02:00
|
|
|
notice(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']);
|
2018-08-30 14:52:15 +02:00
|
|
|
// NOTREACHED
|
2018-08-30 14:27:31 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 07:02:06 +02:00
|
|
|
$dissolve = ($contact['rel'] == Contact::SHARING);
|
|
|
|
|
2018-08-31 17:22:51 +02:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if ($owner) {
|
2018-09-05 07:02:06 +02:00
|
|
|
Contact::terminateFriendship($owner, $contact, $dissolve);
|
2018-08-30 14:27:31 +02:00
|
|
|
}
|
2017-09-12 13:04:59 +02:00
|
|
|
|
2018-08-30 14:27:31 +02:00
|
|
|
// Sharing-only contacts get deleted as there no relationship any more
|
2018-09-05 07:02:06 +02:00
|
|
|
if ($dissolve) {
|
2018-08-30 14:27:31 +02:00
|
|
|
Contact::remove($contact['id']);
|
2018-11-13 22:01:01 +01:00
|
|
|
$return_path = $base_return_path;
|
2018-08-30 14:27:31 +02:00
|
|
|
} else {
|
|
|
|
DBA::update('contact', ['rel' => Contact::FOLLOWER], ['id' => $contact['id']]);
|
2018-11-13 22:01:01 +01:00
|
|
|
$return_path = $base_return_path . '/' . $contact['id'];
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
2018-08-30 14:27:31 +02:00
|
|
|
|
|
|
|
info(L10n::t('Contact unfollowed'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-09-12 13:04:59 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
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()) {
|
|
|
|
notice(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)) {
|
2018-08-30 14:52:15 +02:00
|
|
|
notice(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)) {
|
2018-08-30 14:52:15 +02:00
|
|
|
notice(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)) {
|
|
|
|
notice(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'];
|
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2018-12-25 17:37:32 +01:00
|
|
|
'$header' => L10n::t('Disconnect/Unfollow'),
|
2018-08-30 14:54:12 +02:00
|
|
|
'$desc' => '',
|
|
|
|
'$pls_answer' => '',
|
|
|
|
'$does_know_you' => '',
|
|
|
|
'$add_note' => '',
|
|
|
|
'$page_desc' => '',
|
|
|
|
'$friendica' => '',
|
|
|
|
'$statusnet' => '',
|
|
|
|
'$diaspora' => '',
|
|
|
|
'$diasnote' => '',
|
|
|
|
'$your_address' => L10n::t('Your Identity Address:'),
|
|
|
|
'$invite_desc' => '',
|
|
|
|
'$emailnet' => '',
|
|
|
|
'$submit' => L10n::t('Submit Request'),
|
|
|
|
'$cancel' => L10n::t('Cancel'),
|
|
|
|
'$nickname' => '',
|
|
|
|
'$name' => $contact['name'],
|
|
|
|
'$url' => $contact['url'],
|
|
|
|
'$zrl' => Contact::magicLink($contact['url']),
|
|
|
|
'$url_label' => L10n::t('Profile URL'),
|
|
|
|
'$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'] = '';
|
2018-08-30 14:54:12 +02:00
|
|
|
Profile::load($a, '', 0, Contact::getDetailsByURL($contact['url']));
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => 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;
|
|
|
|
}
|