]> git.mxchange.org Git - friendica.git/commitdiff
"addr" and "server_url" are now generated directly in "update_gcontact" if not given.
authorMichael Vogel <icarus@dabo.de>
Sun, 14 Feb 2016 10:56:23 +0000 (11:56 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 14 Feb 2016 10:56:23 +0000 (11:56 +0100)
include/Scrape.php
include/ostatus.php
include/socgraph.php

index d54a838afd3bfddf0b70debd7d0b22907300f230..ef1db0312d94d9fbf2d6c6e2bc7fc253b44cb5f5 100644 (file)
@@ -841,18 +841,18 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
                $vcard['fn'] = $url;
 
        if (($notify != "") AND ($poll != "")) {
-               $baseurl = matching(normalise_link($notify), normalise_link($poll));
+               $baseurl = matching_url(normalise_link($notify), normalise_link($poll));
 
-               $baseurl2 = matching($baseurl, normalise_link($profile));
+               $baseurl2 = matching_url($baseurl, normalise_link($profile));
                if ($baseurl2 != "")
                        $baseurl = $baseurl2;
        }
 
        if (($baseurl == "") AND ($notify != ""))
-               $baseurl = matching(normalise_link($profile), normalise_link($notify));
+               $baseurl = matching_url(normalise_link($profile), normalise_link($notify));
 
        if (($baseurl == "") AND ($poll != ""))
-               $baseurl = matching(normalise_link($profile), normalise_link($poll));
+               $baseurl = matching_url(normalise_link($profile), normalise_link($poll));
 
        $baseurl = rtrim($baseurl, "/");
 
@@ -907,19 +907,56 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
        return $result;
 }
 
-function matching($part1, $part2) {
-       $len = min(strlen($part1), strlen($part2));
+/**
+ * @brief Find the matching part between two url
+ *
+ * @param string $url1
+ * @param string $url2
+ * @return string The matching part
+ */
+function matching_url($url1, $url2) {
+
+       if (($url1 == "") OR ($url2 == ""))
+               return "";
+
+       $url1 = normalise_link($url1);
+       $url2 = normalise_link($url2);
+
+       $parts1 = parse_url($url1);
+       $parts2 = parse_url($url2);
+
+       if (!isset($parts1["host"]) OR !isset($parts2["host"]))
+               return "";
+
+       if ($parts1["scheme"] != $parts2["scheme"])
+               return "";
+
+       if ($parts1["host"] != $parts2["host"])
+               return "";
+
+       if ($parts1["port"] != $parts2["port"])
+               return "";
+
+       $match = $parts1["scheme"]."://".$parts1["host"];
+
+       if ($parts1["port"])
+               $match .= ":".$parts1["port"];
+
+       $pathparts1 = explode("/", $parts1["path"]);
+       $pathparts2 = explode("/", $parts2["path"]);
 
-       $match = "";
-       $matching = true;
        $i = 0;
-       while (($i <= $len) AND $matching) {
-               if (substr($part1, $i, 1) == substr($part2, $i, 1))
-                       $match .= substr($part1, $i, 1);
-               else
-                       $matching = false;
+       $path = "";
+       do {
+               $path1 = $pathparts1[$i];
+               $path2 = $pathparts2[$i];
 
-               $i++;
-       }
-       return($match);
+               if ($path1 == $path2)
+                       $path .= $path1."/";
+
+       } while (($path1 == $path2) AND ($i++ <= count($pathparts1)));
+
+       $match .= $path;
+
+       return normalise_link($match);
 }
index 983ed6e1b4d3592f8131b4d29a3c41cc80712b2d..5c5016d0fce9ab8044c1d22c6dd560fdf108c3ff 100644 (file)
@@ -164,8 +164,6 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch)
                        update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
                }
 
-
-               /// @todo Add the "addr" field
                $contact["generation"] = 2;
                $contact["photo"] = $author["author-avatar"];
                update_gcontact($contact);
@@ -675,24 +673,6 @@ function ostatus_conv_fetch_actor($actor) {
                        }
                }
 
-       $contact["server_url"] = $contact["url"];
-
-       $server_url = matching($contact["server_url"], $contact["alias"]);
-       if (strlen($server_url) > 8)
-               $contact["server_url"] = $server_url;
-
-       $server_url = matching($contact["server_url"], $contact["photo"]);
-       if (strlen($server_url) > 8)
-               $contact["server_url"] = $server_url;
-
-       if (($contact["server_url"] == $contact["url"]) OR ($contact["server_url"] == $contact["alias"]))
-               unset($contact["server_url"]);
-       else {
-               $hostname = str_replace("http://", "", normalise_link($contact["server_url"]));
-               if ($hostname AND $contact["nick"])
-                       $contact["addr"] = $contact["nick"]."@".$hostname;
-       }
-
        update_gcontact($contact);
 }
 
index ce5b08e64114ac3fe2e147ca4eeb03252f2b6d5e..e07e0d3533fe20caae1339a071c44e7bc3c1e136 100644 (file)
@@ -1433,6 +1433,28 @@ function update_gcontact($contact) {
        if (!isset($contact["updated"]))
                $contact["updated"] = datetime_convert();
 
+       if ($contact["server_url"] == "") {
+               $server_url = $contact["url"];
+
+               $server_url = matching_url($server_url, $contact["alias"]);
+               if ($server_url != "")
+                       $contact["server_url"] = $server_url;
+
+               $server_url = matching_url($server_url, $contact["photo"]);
+               if ($server_url != "")
+                       $contact["server_url"] = $server_url;
+
+               $server_url = matching_url($server_url, $contact["notify"]);
+               if ($server_url != "")
+                       $contact["server_url"] = $server_url;
+       } else
+               $contact["server_url"] = normalise_link($contact["server_url"]);
+
+       if (($contact["addr"] == "") AND ($contact["server_url"] != "") AND ($contact["nick"] != "")) {
+               $hostname = str_replace("http://", "", $contact["server_url"]);
+               $contact["addr"] = $contact["nick"]."@".$hostname;
+       }
+
        // Check if any field changed
        $update = false;
        unset($fields["generation"]);