X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Funfollow.php;h=545faf8fdae90c3bb721f39975fcc14f543c29e0;hb=303aef34f0804f9becc10610ae85985835f9d9bf;hp=046fdfe7d6e9fc57111bae34ca35b0a40d7ebcd1;hpb=510e0dbb2e98758899afd8f69be64e3bb92f68a1;p=friendica.git diff --git a/mod/unfollow.php b/mod/unfollow.php index 046fdfe7d6..545faf8fda 100644 --- a/mod/unfollow.php +++ b/mod/unfollow.php @@ -2,15 +2,19 @@ /** * @file mod/unfollow.php */ + use Friendica\App; +use Friendica\Core\L10n; use Friendica\Core\System; +use Friendica\Database\DBA; use Friendica\Database\DBM; use Friendica\Model\Contact; +use Friendica\Model\Profile; -function unfollow_post(App $a) { - +function unfollow_post(App $a) +{ if (!local_user()) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); goaway($_SESSION['return_url']); // NOTREACHED } @@ -23,36 +27,36 @@ function unfollow_post(App $a) { $url = notags(trim($_REQUEST['url'])); $return_url = $_SESSION['return_url']; - $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` != ?", $uid, CONTACT_IS_FRIEND, normalise_link($url), - normalise_link($url), $url, NETWORK_STATUSNET); - $contact = dba::select('contact', array(), $condition, array('limit' => 1)); + normalise_link($url), $url, NETWORK_STATUSNET]; + $contact = DBA::selectFirst('contact', [], $condition); if (!DBM::is_result($contact)) { - notice(t("Contact wasn't found or can't be unfollowed.")); + notice(L10n::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, NETWORK_DFRN])) { $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)) { + 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); + info(L10n::t('Contact unfollowed').EOL); goaway(System::baseUrl().'/contacts/'.$contact['id']); } goaway($return_url); // NOTREACHED } -function unfollow_content(App $a) { - +function unfollow_content(App $a) +{ if (! local_user()) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); goaway($_SESSION['return_url']); // NOTREACHED } @@ -60,21 +64,21 @@ function unfollow_content(App $a) { $uid = local_user(); $url = notags(trim($_REQUEST['url'])); - $submit = t('Submit Request'); + $submit = L10n::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)) { - notice(t("You aren't a friend of this contact.").EOL); + notice(L10n::t("You aren't a friend of this contact.").EOL); $submit = ""; // NOTREACHED } - if (!in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS))) { - notice(t("Unfollowing is currently not supported by your network.").EOL); + if (!in_array($contact['network'], [NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_DFRN])) { + notice(L10n::t("Unfollowing is currently not supported by your network.").EOL); $submit = ""; // NOTREACHED } @@ -85,7 +89,7 @@ function unfollow_content(App $a) { $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid)); if (!$r) { - notice(t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); goaway($_SESSION['return_url']); // NOTREACHED } @@ -95,9 +99,9 @@ function unfollow_content(App $a) { // Makes the connection request for friendica contacts easier $_SESSION["fastlane"] = $contact["url"]; - $header = t("Disconnect/Unfollow"); + $header = L10n::t("Disconnect/Unfollow"); - $o = replace_macros($tpl,array( + $o = replace_macros($tpl, [ '$header' => htmlentities($header), '$desc' => "", '$pls_answer' => "", @@ -108,28 +112,26 @@ function unfollow_content(App $a) { '$statusnet' => "", '$diaspora' => "", '$diasnote' => "", - '$your_address' => t('Your Identity Address:'), + '$your_address' => L10n::t('Your Identity Address:'), '$invite_desc' => "", '$emailnet' => "", '$submit' => $submit, - '$cancel' => t('Cancel'), + '$cancel' => L10n::t('Cancel'), '$nickname' => "", '$name' => $contact["name"], '$url' => $contact["url"], - '$zrl' => zrl($contact["url"]), - '$url_label' => t("Profile URL"), + '$zrl' => Contact::magicLink($contact["url"]), + '$url_label' => L10n::t("Profile URL"), '$myaddr' => $myaddr, '$request' => $request, '$keywords' => "", '$keywords_label' => "" - )); + ]); $a->page['aside'] = ""; - profile_load($a, "", 0, Contact::getDetailsByURL($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' => L10n::t('Status Messages and Posts')]); // Show last public posts $o .= Contact::getPostsFromUrl($contact["url"]);