2017-09-12 02:08:24 -04:00
|
|
|
<?php
|
2018-01-09 09:59:52 -05:00
|
|
|
/**
|
|
|
|
* @file mod/unfollow.php
|
|
|
|
*/
|
2018-07-19 22:15:21 -04:00
|
|
|
|
2017-09-12 02:08:24 -04:00
|
|
|
use Friendica\App;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 18:28:31 -05:00
|
|
|
use Friendica\DI;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-14 21:22:39 -05:00
|
|
|
use Friendica\Model\Profile;
|
2018-08-31 11:22:51 -04:00
|
|
|
use Friendica\Model\User;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2018-10-13 14:02:04 -04:00
|
|
|
function unfollow_post(App $a)
|
2018-01-14 21:22:39 -05:00
|
|
|
{
|
2018-11-13 16:01:01 -05:00
|
|
|
$base_return_path = 'contact';
|
2018-08-30 08:54:12 -04:00
|
|
|
|
2017-09-12 07:04:59 -04:00
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('login');
|
2017-09-12 07:04:59 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
2019-10-15 09:01:17 -04:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url'] ?? ''));
|
2017-09-12 07:04:59 -04:00
|
|
|
|
2018-09-04 19:29:36 -04:00
|
|
|
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
2018-11-08 11:28:29 -05:00
|
|
|
$uid, Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url];
|
2018-07-20 08:19:26 -04:00
|
|
|
$contact = DBA::selectFirst('contact', [], $condition);
|
2017-09-12 07:04:59 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t("You aren't following this contact."));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2018-08-30 08:52:15 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-10-02 12:13:58 -04:00
|
|
|
if (!empty($_REQUEST['cancel'])) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
2018-10-02 12:13:58 -04:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:53:23 -04:00
|
|
|
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
2018-08-30 08:52:15 -04:00
|
|
|
// NOTREACHED
|
2018-08-30 08:27:31 -04:00
|
|
|
}
|
|
|
|
|
2018-09-05 01:02:06 -04:00
|
|
|
$dissolve = ($contact['rel'] == Contact::SHARING);
|
|
|
|
|
2018-08-31 11:22:51 -04:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if ($owner) {
|
2018-09-05 01:02:06 -04:00
|
|
|
Contact::terminateFriendship($owner, $contact, $dissolve);
|
2018-08-30 08:27:31 -04:00
|
|
|
}
|
2017-09-12 07:04:59 -04:00
|
|
|
|
2018-08-30 08:27:31 -04:00
|
|
|
// Sharing-only contacts get deleted as there no relationship any more
|
2018-09-05 01:02:06 -04:00
|
|
|
if ($dissolve) {
|
2018-08-30 08:27:31 -04:00
|
|
|
Contact::remove($contact['id']);
|
2018-11-13 16:01:01 -05:00
|
|
|
$return_path = $base_return_path;
|
2018-08-30 08:27:31 -04:00
|
|
|
} else {
|
|
|
|
DBA::update('contact', ['rel' => Contact::FOLLOWER], ['id' => $contact['id']]);
|
2018-11-13 16:01:01 -05:00
|
|
|
$return_path = $base_return_path . '/' . $contact['id'];
|
2017-09-12 07:04:59 -04:00
|
|
|
}
|
2018-08-30 08:27:31 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
info(DI::l10n()->t('Contact unfollowed'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-09-12 07:04:59 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-01-22 09:16:25 -05:00
|
|
|
function unfollow_content(App $a)
|
|
|
|
{
|
2018-11-13 16:01:01 -05:00
|
|
|
$base_return_path = 'contact';
|
2018-09-30 13:03:05 -04:00
|
|
|
|
2018-08-30 08:54:12 -04:00
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('login');
|
2017-09-12 02:08:24 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
2018-11-09 13:29:42 -05:00
|
|
|
$url = Strings::escapeTags(trim($_REQUEST['url']));
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2018-08-30 08:52:15 -04:00
|
|
|
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
2018-11-08 11:28:29 -05:00
|
|
|
local_user(), Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url];
|
2018-08-11 16:40:44 -04:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['url', 'network', 'addr', 'name'], $condition);
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t("You aren't following this contact."));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2017-09-12 02:08:24 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:53:23 -04:00
|
|
|
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Unfollowing is currently not supported by your network.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($base_return_path . '/' . $contact['id']);
|
2017-09-12 02:08:24 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2019-12-30 17:00:08 -05:00
|
|
|
$request = DI::baseUrl() . '/unfollow';
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('auto_request.tpl');
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2018-08-30 08:54:12 -04:00
|
|
|
$self = DBA::selectFirst('contact', ['url'], ['uid' => $uid, 'self' => true]);
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2018-08-30 08:54:12 -04:00
|
|
|
if (!DBA::isResult($self)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($base_return_path);
|
2017-09-12 02:08:24 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
// Makes the connection request for friendica contacts easier
|
2018-08-30 08:54:12 -04:00
|
|
|
$_SESSION['fastlane'] = $contact['url'];
|
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$header' => DI::l10n()->t('Disconnect/Unfollow'),
|
2018-08-30 08:54:12 -04:00
|
|
|
'$desc' => '',
|
|
|
|
'$pls_answer' => '',
|
|
|
|
'$does_know_you' => '',
|
|
|
|
'$add_note' => '',
|
|
|
|
'$page_desc' => '',
|
|
|
|
'$friendica' => '',
|
|
|
|
'$statusnet' => '',
|
|
|
|
'$diaspora' => '',
|
|
|
|
'$diasnote' => '',
|
2020-01-18 14:52:34 -05:00
|
|
|
'$your_address' => DI::l10n()->t('Your Identity Address:'),
|
2018-08-30 08:54:12 -04:00
|
|
|
'$invite_desc' => '',
|
|
|
|
'$emailnet' => '',
|
2020-01-18 14:52:34 -05:00
|
|
|
'$submit' => DI::l10n()->t('Submit Request'),
|
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2018-08-30 08:54:12 -04:00
|
|
|
'$nickname' => '',
|
|
|
|
'$name' => $contact['name'],
|
|
|
|
'$url' => $contact['url'],
|
|
|
|
'$zrl' => Contact::magicLink($contact['url']),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$url_label' => DI::l10n()->t('Profile URL'),
|
2018-08-30 08:54:12 -04:00
|
|
|
'$myaddr' => $self['url'],
|
|
|
|
'$request' => $request,
|
|
|
|
'$keywords' => '',
|
|
|
|
'$keywords_label'=> ''
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] = '';
|
2020-01-27 22:01:12 -05:00
|
|
|
Profile::load($a, '', Contact::getDetailsByURL($contact['url']));
|
2017-09-12 02:08:24 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), ['$title' => DI::l10n()->t('Status Messages and Posts')]);
|
2017-09-12 02:08:24 -04:00
|
|
|
|
|
|
|
// Show last public posts
|
2018-08-30 08:54:12 -04:00
|
|
|
$o .= Contact::getPostsFromUrl($contact['url']);
|
2017-09-12 02:08:24 -04:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|