]> git.mxchange.org Git - friendica.git/blobdiff - mod/follow.php
dfrn_request: added $blocked and $pending as variable to make code more understandable
[friendica.git] / mod / follow.php
index 352a8988b55183e9a8ee8a4f2c89ff64a9121e82..b92a0d980fb57e1150214c07aee7e5b590277c05 100644 (file)
@@ -2,6 +2,7 @@
 
 require_once('include/Scrape.php');
 require_once('include/follow.php');
+require_once('include/Contact.php');
 require_once('include/contact_selectors.php');
 
 function follow_content(&$a) {
@@ -15,6 +16,8 @@ function follow_content(&$a) {
        $uid = local_user();
        $url = notags(trim($_REQUEST['url']));
 
+       $submit = t('Submit Request');
+
        // There is a current issue. It seems as if you can't start following a Friendica that is following you
        // With Diaspora this works - but Friendica is special, it seems ...
        $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND ((`rel` != %d) OR (`network` = '%s')) AND
@@ -25,15 +28,31 @@ function follow_content(&$a) {
 
        if ($r) {
                notice(t('You already added this contact.').EOL);
-               goaway($_SESSION['return_url']);
+               $submit = "";
+               //goaway($_SESSION['return_url']);
                // NOTREACHED
        }
 
        $ret = probe_url($url);
 
+       if (($ret["network"] == NETWORK_DIASPORA) AND !get_config('system','diaspora_enabled')) {
+               notice( t("Diaspora support isn't enabled. Contact can't be added.") . EOL);
+               $submit = "";
+               //goaway($_SESSION['return_url']);
+               // NOTREACHED
+       }
+
+       if (($ret["network"] == NETWORK_OSTATUS) AND get_config('system','ostatus_disabled')) {
+               notice( t("OStatus support is disabled. Contact can't be added.") . EOL);
+               $submit = "";
+               //goaway($_SESSION['return_url']);
+               // NOTREACHED
+       }
+
        if ($ret["network"] == NETWORK_PHANTOM) {
                notice( t("The network type couldn't be detected. Contact can't be added.") . EOL);
-               goaway($_SESSION['return_url']);
+               $submit = "";
+               //goaway($_SESSION['return_url']);
                // NOTREACHED
        }
 
@@ -57,15 +76,18 @@ function follow_content(&$a) {
        }
 
        $myaddr = $r[0]["url"];
+       $gcontact_id = 0;
 
        // Makes the connection request for friendica contacts easier
        $_SESSION["fastlane"] = $ret["url"];
 
-       $r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'",
+       $r = q("SELECT `id`, `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'",
                normalise_link($ret["url"]));
 
        if (!$r)
                $r = array(array("location" => "", "about" => "", "keywords" => ""));
+       else
+               $gcontact_id = $r[0]["id"];
 
        if($ret['network'] === NETWORK_DIASPORA) {
                $r[0]["location"] = "";
@@ -77,11 +99,12 @@ function follow_content(&$a) {
        if ($ret["addr"] != "")
                $header .= " <".$ret["addr"].">";
 
-       $header .= " (".network_to_name($ret['network'], $ret['url']).")";
+       //$header .= " (".network_to_name($ret['network'], $ret['url']).")";
+       $header = t("Connect/Follow");
 
        $o  = replace_macros($tpl,array(
                        '$header' => htmlentities($header),
-                       '$photo' => proxy_url($ret["photo"]),
+                       //'$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL),
                        '$desc' => "",
                        '$pls_answer' => t('Please answer the following:'),
                        '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
@@ -94,7 +117,7 @@ function follow_content(&$a) {
                        '$your_address' => t('Your Identity Address:'),
                        '$invite_desc' => "",
                        '$emailnet' => "",
-                       '$submit' => t('Submit Request'),
+                       '$submit' => $submit,
                        '$cancel' => t('Cancel'),
                        '$nickname' => "",
                        '$name' => $ret["name"],
@@ -103,13 +126,26 @@ function follow_content(&$a) {
                        '$url_label' => t("Profile URL"),
                        '$myaddr' => $myaddr,
                        '$request' => $request,
-                       '$location' => bbcode($r[0]["location"]),
+                       /*'$location' => bbcode($r[0]["location"]),
                        '$location_label' => t("Location:"),
                        '$about' => bbcode($r[0]["about"], false, false),
-                       '$about_label' => t("About:"),
+                       '$about_label' => t("About:"), */
                        '$keywords' => $r[0]["keywords"],
                        '$keywords_label' => t("Tags:")
        ));
+
+       $a->page['aside'] = "";
+       profile_load($a, "", 0, get_contact_details_by_url($ret["url"]));
+
+       // Show last public posts
+       if ($gcontact_id <> 0) {
+               $o .= replace_macros(get_markup_template('section_title.tpl'),
+                                               array('$title' => t('Status Messages and Posts')
+               ));
+
+               $o .= posts_from_gcontact($a, $gcontact_id);
+       }
+
        return $o;
 }