]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/Shorturl_api.php
Better exception handling in index
[quix0rs-gnu-social.git] / lib / Shorturl_api.php
index 5af407fc5a7f934066389f996193fd3b7152e2d7..fe106cb8376a06b69ac5ba142329917b808a4427 100644 (file)
 
 if (!defined('LACONICA')) { exit(1); }
 
-class ShortUrlApi {
+class ShortUrlApi
+{
     protected $service_url;
 
-    function __construct($service_url) {
+    function __construct($service_url)
+    {
         $this->service_url = $service_url;
     }
 
-    function shorten($url) {
+    function shorten($url)
+    {
         if ($this->is_long($url)) return $this->shorten_imp($url);
         return $url;
     }
@@ -67,8 +70,10 @@ class ShortUrlApi {
     }
 }
 
-class LilUrl extends ShortUrlApi {
-    function __construct() {
+class LilUrl extends ShortUrlApi
+{
+    function __construct()
+    {
         parent::__construct('http://ur1.ca/');
     }
 
@@ -76,15 +81,19 @@ class LilUrl extends ShortUrlApi {
         $data['longurl'] = $url;
         $response = $this->http_post($data);
         if (!$response) return $url;
-        $x = simplexml_load_string($response)->body->p[0]->a->attributes();
+        $y = @simplexml_load_string($response);
+        if (!isset($y->body)) return $url;
+        $x = $y->body->p[0]->a->attributes();
         if (isset($x['href'])) return $x['href'];
         return $url;
     }
 }
 
 
-class PtitUrl extends ShortUrlApi {
-    function __construct() {
+class PtitUrl extends ShortUrlApi
+{
+    function __construct()
+    {
         parent::__construct('http://ptiturl.com/?creer=oui&action=Reduire&url=');
     }
 
@@ -92,14 +101,18 @@ class PtitUrl extends ShortUrlApi {
         $response = $this->http_get($url);
         if (!$response) return $url;
         $response = $this->tidy($response);
-        $xml = simplexml_load_string($response)->body->center->table->tr->td->pre->a->attributes();
+        $y = @simplexml_load_string($response);
+        if (!isset($y->body)) return $url;
+        $xml = $y->body->center->table->tr->td->pre->a->attributes();
         if (isset($xml['href'])) return $xml['href'];
         return $url;
     }
 }
 
-class TightUrl extends ShortUrlApi {
-    function __construct() {
+class TightUrl extends ShortUrlApi
+{
+    function __construct()
+    {
         parent::__construct('http://2tu.us/?save=y&url=');
     }
 
@@ -107,10 +120,11 @@ class TightUrl extends ShortUrlApi {
         $response = $this->http_get($url);
         if (!$response) return $url;
         $response = $this->tidy($response);
-        $xml = simplexml_load_string($response)->body->p[0]->code[0]->a->attributes();
+        $y = @simplexml_load_string($response);
+        if (!isset($y->body)) return $url;
+        $xml = $y->body->p[0]->code[0]->a->attributes();
         if (isset($xml['href'])) return $xml['href'];
         return $url;
     }
 }
 
-