]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add webmention support
authorStephen Paul Weber <singpolyma@singpolyma.net>
Wed, 14 Oct 2015 21:13:58 +0000 (16:13 -0500)
committerStephen Paul Weber <singpolyma@singpolyma.net>
Thu, 15 Oct 2015 00:29:53 +0000 (00:29 +0000)
plugins/Linkback/LinkbackPlugin.php

index 84215046fa5deecf891f5805000c5b6f8c7ccd3f..045fc2f4f7fd232592efff29a111d0b6e2d2e879 100644 (file)
@@ -103,21 +103,73 @@ class LinkbackPlugin extends Plugin
             return $orig;
         }
 
-        $pb = $this->getPingback($result);
-        if (!empty($pb)) {
-            $this->pingback($result->final_url, $pb);
         // XXX: Should handle relative-URI resolution in these detections
 
+        $wm = $this->getWebmention($result);
+        if(!empty($wm)) {
+            $this->webmention($result->final_url, $wm);
         } else {
-            $tb = $this->getTrackback($result);
-            if (!empty($tb)) {
-                $this->trackback($result->final_url, $tb);
+            $pb = $this->getPingback($result);
+            if (!empty($pb)) {
+                $this->pingback($result->final_url, $pb);
+            } else {
+                $tb = $this->getTrackback($result);
+                if (!empty($tb)) {
+                    $this->trackback($result->final_url, $tb);
+                }
             }
         }
 
         return $orig;
     }
 
+    // Based on https://github.com/indieweb/mention-client-php
+    // which is licensed Apache 2.0
+    function getWebmention($result) {
+        // XXX: the fetcher only gives back one of each header, so this may fail on multiple Link headers
+        if(preg_match('~<((?:https?://)?[^>]+)>; rel="webmention"~', $result->headers['Link'], $match)) {
+            return $match[1];
+        } elseif(preg_match('~<((?:https?://)?[^>]+)>; rel="http://webmention.org/?"~', $result->headers['Link'], $match)) {
+            return $match[1];
+        }
+
+        if(preg_match('/<(?:link|a)[ ]+href="([^"]+)"[ ]+rel="[^" ]* ?webmention ?[^" ]*"[ ]*\/?>/i', $result->body, $match)
+           || preg_match('/<(?:link|a)[ ]+rel="[^" ]* ?webmention ?[^" ]*"[ ]+href="([^"]+)"[ ]*\/?>/i', $result->body, $match)) {
+            return $match[1];
+        } elseif(preg_match('/<(?:link|a)[ ]+href="([^"]+)"[ ]+rel="http:\/\/webmention\.org\/?"[ ]*\/?>/i', $result->body, $match)
+                 || preg_match('/<(?:link|a)[ ]+rel="http:\/\/webmention\.org\/?"[ ]+href="([^"]+)"[ ]*\/?>/i', $result->body, $match)) {
+            return $match[1];
+        }
+    }
+
+    function webmention($url, $endpoint) {
+        $source = $this->notice->getUrl();
+
+        $payload = array(
+            'source' => $source,
+            'target' => $url
+        );
+
+        $request = HTTPClient::start();
+        try {
+            $response = $request->post($endpoint,
+                array(
+                    'Content-type: application/x-www-form-urlencoded',
+                    'Accept: application/json'
+                ),
+                $payload
+            );
+
+            if(!in_array($response->getStatus(), array(200,202))) {
+                common_log(LOG_WARNING,
+                           "Webmention request failed for '$url' ($endpoint)");
+            }
+        } catch (HTTP_Request2_Exception $e) {
+            common_log(LOG_WARNING,
+                       "Webmention request failed for '$url' ($endpoint)");
+        }
+    }
+
     function getPingback($result) {
         if (array_key_exists('X-Pingback', $result->headers)) {
             return $result->headers['X-Pingback'];