X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Funfollow.php;h=246cb8bad03a7cb53451d2219cfcfee732f23c63;hb=391c5913227c7f62f19b4f08906b0b1b0b618b33;hp=8ee96a14c829e1b5e47e6baf1e98736f0d400464;hpb=4bf6ffb74982373074d4a17e88b107dd06ecef1c;p=friendica.git diff --git a/mod/unfollow.php b/mod/unfollow.php index 8ee96a14c8..246cb8bad0 100644 --- a/mod/unfollow.php +++ b/mod/unfollow.php @@ -1,15 +1,15 @@ 1)); + normalise_link($url), $url, NETWORK_STATUSNET]; + $contact = dba::selectFirst('contact', [], $condition); - if (!dbm::is_result($contact)) { + if (!DBM::is_result($contact)) { notice(t("Contact wasn't found or can't be unfollowed.")); } else { - if (in_array($contact['network'], array(NETWORK_OSTATUS, NETWORK_DIASPORA))) { + if (in_array($contact['network'], [NETWORK_OSTATUS, NETWORK_DIASPORA])) { $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) ); - if (dbm::is_result($r)) { - $self = ""; // Unused parameter - terminate_friendship($r[0], $self, $contact); + if (DBM::is_result($r)) { + Contact::terminateFriendship($r[0], $contact); } } - dba::update('contact', array('rel' => CONTACT_IS_FOLLOWER), array('id' => $contact['id'])); + dba::update('contact', ['rel' => CONTACT_IS_FOLLOWER], ['id' => $contact['id']]); info(t('Contact unfollowed').EOL); goaway(System::baseUrl().'/contacts/'.$contact['id']); @@ -64,18 +63,18 @@ function unfollow_content(App $a) { $submit = t('Submit Request'); - $condition = array("`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?", + $condition = ["`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?", local_user(), CONTACT_IS_FRIEND, normalise_link($url), - normalise_link($url), $url, NETWORK_STATUSNET); - $contact = dba::select('contact', array('url', 'network', 'addr', 'name'), $condition, array('limit' => 1)); + normalise_link($url), $url, NETWORK_STATUSNET]; + $contact = dba::selectFirst('contact', ['url', 'network', 'addr', 'name'], $condition); - if (!dbm::is_result($contact)) { + if (!DBM::is_result($contact)) { notice(t("You aren't a friend of this contact.").EOL); $submit = ""; // NOTREACHED } - if (!in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS))) { + if (!in_array($contact['network'], [NETWORK_DIASPORA, NETWORK_OSTATUS])) { notice(t("Unfollowing is currently not supported by your network.").EOL); $submit = ""; // NOTREACHED @@ -99,7 +98,7 @@ function unfollow_content(App $a) { $header = t("Disconnect/Unfollow"); - $o = replace_macros($tpl,array( + $o = replace_macros($tpl,[ '$header' => htmlentities($header), '$desc' => "", '$pls_answer' => "", @@ -118,23 +117,21 @@ function unfollow_content(App $a) { '$nickname' => "", '$name' => $contact["name"], '$url' => $contact["url"], - '$zrl' => zrl($contact["url"]), + '$zrl' => Profile::zrl($contact["url"]), '$url_label' => t("Profile URL"), '$myaddr' => $myaddr, '$request' => $request, '$keywords' => "", '$keywords_label' => "" - )); + ]); $a->page['aside'] = ""; - profile_load($a, "", 0, get_contact_details_by_url($contact["url"])); + Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"])); - $o .= replace_macros(get_markup_template('section_title.tpl'), - array('$title' => t('Status Messages and Posts') - )); + $o .= replace_macros(get_markup_template('section_title.tpl'), ['$title' => t('Status Messages and Posts')]); // Show last public posts - $o .= posts_from_contact_url($a, $contact["url"]); + $o .= Contact::getPostsFromUrl($contact["url"]); return $o; }