2017-09-12 08:08:24 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
|
|
|
* @file mod/unfollow.php
|
|
|
|
*/
|
2017-09-12 08:08:24 +02:00
|
|
|
use Friendica\App;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-09-12 08:08:24 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
function unfollow_post(App $a)
|
|
|
|
{
|
2017-09-12 13:04:59 +02:00
|
|
|
if (!local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2017-09-12 13:04:59 +02:00
|
|
|
goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_REQUEST['cancel']) {
|
|
|
|
goaway($_SESSION['return_url']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
$url = notags(trim($_REQUEST['url']));
|
|
|
|
$return_url = $_SESSION['return_url'];
|
|
|
|
|
2018-01-10 04:20:33 +01:00
|
|
|
$condition = ["`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
|
2017-09-12 13:04:59 +02:00
|
|
|
$uid, CONTACT_IS_FRIEND, normalise_link($url),
|
2018-01-10 04:20:33 +01:00
|
|
|
normalise_link($url), $url, NETWORK_STATUSNET];
|
2018-01-10 14:36:02 +01:00
|
|
|
$contact = dba::selectFirst('contact', [], $condition);
|
2017-09-12 13:04:59 +02:00
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (!DBM::is_result($contact)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t("Contact wasn't found or can't be unfollowed."));
|
2017-09-12 13:04:59 +02:00
|
|
|
} else {
|
2018-03-16 07:43:10 +01:00
|
|
|
if (in_array($contact['network'], [NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_DFRN])) {
|
2017-09-12 13:04:59 +02:00
|
|
|
$r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
|
|
|
|
WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
|
|
|
|
intval($uid)
|
|
|
|
);
|
2018-01-22 15:16:25 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2017-11-19 23:03:39 +01:00
|
|
|
Contact::terminateFriendship($r[0], $contact);
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-15 14:05:12 +01:00
|
|
|
dba::update('contact', ['rel' => CONTACT_IS_FOLLOWER], ['id' => $contact['id']]);
|
2017-09-12 13:04:59 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
info(L10n::t('Contact unfollowed').EOL);
|
2017-09-12 13:04:59 +02:00
|
|
|
goaway(System::baseUrl().'/contacts/'.$contact['id']);
|
|
|
|
}
|
|
|
|
goaway($return_url);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
function unfollow_content(App $a)
|
|
|
|
{
|
2017-09-12 08:08:24 +02:00
|
|
|
if (! local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2017-09-12 08:08:24 +02:00
|
|
|
goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
$url = notags(trim($_REQUEST['url']));
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
$submit = L10n::t('Submit Request');
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-01-10 04:20:33 +01:00
|
|
|
$condition = ["`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
|
2017-09-12 08:08:24 +02:00
|
|
|
local_user(), CONTACT_IS_FRIEND, normalise_link($url),
|
2018-01-10 04:20:33 +01:00
|
|
|
normalise_link($url), $url, NETWORK_STATUSNET];
|
2018-01-10 14:36:02 +01:00
|
|
|
$contact = dba::selectFirst('contact', ['url', 'network', 'addr', 'name'], $condition);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (!DBM::is_result($contact)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t("You aren't a friend of this contact.").EOL);
|
2017-09-12 08:08:24 +02:00
|
|
|
$submit = "";
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-03-16 07:43:10 +01:00
|
|
|
if (!in_array($contact['network'], [NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_DFRN])) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t("Unfollowing is currently not supported by your network.").EOL);
|
2017-09-12 08:08:24 +02:00
|
|
|
$submit = "";
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$request = System::baseUrl()."/unfollow";
|
|
|
|
$tpl = get_markup_template('auto_request.tpl');
|
|
|
|
|
|
|
|
$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid));
|
|
|
|
|
|
|
|
if (!$r) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2017-09-12 08:08:24 +02:00
|
|
|
goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
|
|
|
$myaddr = $r[0]["url"];
|
|
|
|
|
|
|
|
// Makes the connection request for friendica contacts easier
|
|
|
|
$_SESSION["fastlane"] = $contact["url"];
|
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
$header = L10n::t("Disconnect/Unfollow");
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
$o = replace_macros($tpl, [
|
2017-09-12 08:08:24 +02:00
|
|
|
'$header' => htmlentities($header),
|
|
|
|
'$desc' => "",
|
|
|
|
'$pls_answer' => "",
|
|
|
|
'$does_know_you' => "",
|
|
|
|
'$add_note' => "",
|
|
|
|
'$page_desc' => "",
|
|
|
|
'$friendica' => "",
|
|
|
|
'$statusnet' => "",
|
|
|
|
'$diaspora' => "",
|
|
|
|
'$diasnote' => "",
|
2018-01-22 15:16:25 +01:00
|
|
|
'$your_address' => L10n::t('Your Identity Address:'),
|
2017-09-12 08:08:24 +02:00
|
|
|
'$invite_desc' => "",
|
|
|
|
'$emailnet' => "",
|
|
|
|
'$submit' => $submit,
|
2018-01-22 15:16:25 +01:00
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2017-09-12 08:08:24 +02:00
|
|
|
'$nickname' => "",
|
|
|
|
'$name' => $contact["name"],
|
|
|
|
'$url' => $contact["url"],
|
2018-06-02 10:05:06 +02:00
|
|
|
'$zrl' => Contact::magicLink($contact["url"]),
|
2018-01-22 15:16:25 +01:00
|
|
|
'$url_label' => L10n::t("Profile URL"),
|
2017-09-12 08:08:24 +02:00
|
|
|
'$myaddr' => $myaddr,
|
|
|
|
'$request' => $request,
|
|
|
|
'$keywords' => "",
|
|
|
|
'$keywords_label' => ""
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
|
|
|
$a->page['aside'] = "";
|
2018-01-15 03:22:39 +01:00
|
|
|
Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
|
2017-09-12 08:08:24 +02:00
|
|
|
|
2018-01-22 15:16:25 +01:00
|
|
|
$o .= replace_macros(get_markup_template('section_title.tpl'), ['$title' => L10n::t('Status Messages and Posts')]);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
|
|
|
// Show last public posts
|
2017-11-19 23:03:39 +01:00
|
|
|
$o .= Contact::getPostsFromUrl($contact["url"]);
|
2017-09-12 08:08:24 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|