]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
déplacement code dans functions.php
authornicosomb <nicolas@loeuillet.org>
Mon, 15 Apr 2013 07:04:23 +0000 (09:04 +0200)
committernicosomb <nicolas@loeuillet.org>
Mon, 15 Apr 2013 07:04:23 +0000 (09:04 +0200)
inc/functions.php
index.php

index 37a560385889d826e967998d56c7aa598c3f41d9..0b9eb93697f291150e21d2669b6e05d30946f9cf 100755 (executable)
@@ -109,4 +109,35 @@ function get_external_file($url, $timeout)
     else {
         return FALSE;
     }
+}
+
+function prepare_url($url)
+{
+    $parametres = array();
+    $url    = html_entity_decode(trim($url));
+
+    // We remove the annoying parameters added by FeedBurner and GoogleFeedProxy (?utm_source=...)
+    // from shaarli, by sebsauvage
+    $i=strpos($url,'&utm_source='); if ($i!==false) $url=substr($url,0,$i);
+    $i=strpos($url,'?utm_source='); if ($i!==false) $url=substr($url,0,$i);
+    $i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
+
+    $title  = $url;
+    if (!preg_match('!^https?://!i', $url))
+        $url = 'http://' . $url;
+
+    $html = Encoding::toUTF8(get_external_file($url,15));
+    if (isset($html) and strlen($html) > 0)
+    {
+        $r = new Readability($html, $url);
+        if($r->init())
+        {
+            $title = $r->articleTitle->innerHTML;
+        }
+    }
+
+    $parametres['title']    = $title;
+    $parametres['content']  = $r->articleContent->innerHTML;
+
+    return $parametres;
 }
\ No newline at end of file
index d40a6c951b11cc038ee0d715beae3ab6c3d3c8c0..d56c19410d4f530bb02f069a5c1d027ed604502d 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -14,41 +14,22 @@ $db = new db(DB_PATH);
 $action = (isset ($_GET['action'])) ? htmlspecialchars($_GET['action']) : '';
 $view   = (isset ($_GET['view'])) ? htmlspecialchars($_GET['view']) : '';
 $id     = (isset ($_GET['id'])) ? htmlspecialchars($_GET['id']) : '';
+$url    = (isset ($_GET['url'])) ? $_GET['url'] : '';
 
 switch ($action)
 {
     case 'add':
-        $url = (isset ($_GET['url'])) ? $_GET['url'] : '';
+
         if ($url == '')
             continue;
 
-        $url    = html_entity_decode(trim($url));
-
-        // We remove the annoying parameters added by FeedBurner and GoogleFeedProxy (?utm_source=...)
-        // from shaarli, by sebsauvage
-        $i=strpos($url,'&utm_source='); if ($i!==false) $url=substr($url,0,$i);
-        $i=strpos($url,'?utm_source='); if ($i!==false) $url=substr($url,0,$i);
-        $i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
-
-        $title  = $url;
-        if (!preg_match('!^https?://!i', $url))
-            $url = 'http://' . $url;
-
-        $html = Encoding::toUTF8(get_external_file($url,15));
-        if (isset($html) and strlen($html) > 0)
-        {
-            $r = new Readability($html, $url);
-            if($r->init())
-            {
-                $title = $r->articleTitle->innerHTML;
-            }
-        }
+        $parametres_url = prepare_url($url);
 
         try
         {
             # insert query
             $query = $db->getHandle()->prepare('INSERT INTO entries ( url, title, content ) VALUES (?, ?, ?)');
-            $query->execute(array($url, $title, $r->articleContent->innerHTML));
+            $query->execute(array($url, $parametres_url['title'], $parametres_url['content']));
         }
         catch (Exception $e)
         {