tweeper.php: strip the leading "www." from hosts
authorAntonio Ospite <ao2@ao2.it>
Wed, 1 Jul 2015 11:35:56 +0000 (13:35 +0200)
committerAntonio Ospite <ao2@ao2.it>
Wed, 1 Jul 2015 11:58:32 +0000 (13:58 +0200)
This makes tweeper more forgiving when it is passed URLs either with or
without the "www" subdomain for the same host.

tweeper.php

index 178176d..2444a39 100644 (file)
@@ -244,7 +244,10 @@ class Tweeper {
       return NULL;
     }
 
-    $xsltProcessor = $this->load_stylesheet($url["host"]);
+    // Strip the leading www. to be more forgiving on input URLs
+    $host = preg_replace('/^www\./', '', $url["host"]);
+
+    $xsltProcessor = $this->load_stylesheet($host);
     if (NULL === $xsltProcessor) {
       return NULL;
     }
@@ -254,7 +257,7 @@ class Tweeper {
       return NULL;
     }
 
-    $xmlDoc = $this->html_to_xml($html, $url["host"]);
+    $xmlDoc = $this->html_to_xml($html, $host);
     if (NULL === $xmlDoc) {
       return NULL;
     }