]> git.mxchange.org Git - friendica.git/blobdiff - mod/unfollow.php
Ops, one more left ...
[friendica.git] / mod / unfollow.php
index 8ee96a14c829e1b5e47e6baf1e98736f0d400464..5c00726e272bfb7224d577ce740eea9ae576217a 100644 (file)
@@ -1,17 +1,20 @@
 <?php
+/**
+ * @file mod/unfollow.php
+ */
 
 use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\Protocol;
 use Friendica\Core\System;
+use Friendica\Database\DBA;
+use Friendica\Model\Contact;
+use Friendica\Model\Profile;
 
-require_once 'include/probe.php';
-require_once 'include/follow.php';
-require_once 'include/Contact.php';
-require_once 'include/contact_selectors.php';
-
-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
        }
@@ -24,37 +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` != ?",
-                       $uid, CONTACT_IS_FRIEND, normalise_link($url),
-                       normalise_link($url), $url, NETWORK_STATUSNET);
-       $contact = dba::select('contact', array(), $condition, array('limit' => 1));
+       $condition = ["`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
+                       $uid, Contact::FRIEND, normalise_link($url),
+                       normalise_link($url), $url, Protocol::STATUSNET];
+       $contact = DBA::selectFirst('contact', [], $condition);
 
-       if (!dbm::is_result($contact)) {
-               notice(t("Contact wasn't found or can't be unfollowed."));
+       if (!DBA::isResult($contact)) {
+               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'], [Protocol::OSTATUS, Protocol::DIASPORA, Protocol::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)) {
-                               $self = ""; // Unused parameter
-                               terminate_friendship($r[0], $self, $contact);
+                       if (DBA::isResult($r)) {
+                               Contact::terminateFriendship($r[0], $contact);
                        }
                }
-               dba::update('contact', array('rel' => CONTACT_IS_FOLLOWER), array('id' => $contact['id']));
+               DBA::update('contact', ['rel' => Contact::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
        }
@@ -62,21 +64,22 @@ function unfollow_content(App $a) {
        $uid = local_user();
        $url = notags(trim($_REQUEST['url']));
 
-       $submit = t('Submit Request');
+       $submit = L10n::t('Submit Request');
+
+       $condition = ["`uid` = ? AND `rel` = ? AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
+                       local_user(), Contact::FRIEND, normalise_link($url),
+                       normalise_link($url), $url, Protocol::STATUSNET];
 
-       $condition = array("`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));
+       $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);
+       if (!DBA::isResult($contact)) {
+               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'], [Protocol::DIASPORA, Protocol::OSTATUS, Protocol::DFRN])) {
+               notice(L10n::t("Unfollowing is currently not supported by your network.").EOL);
                $submit = "";
                // NOTREACHED
        }
@@ -87,7 +90,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
        }
@@ -97,9 +100,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' => "",
@@ -110,31 +113,29 @@ 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, 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' => L10n::t('Status Messages and Posts')]);
 
        // Show last public posts
-       $o .= posts_from_contact_url($a, $contact["url"]);
+       $o .= Contact::getPostsFromUrl($contact["url"]);
 
        return $o;
 }