]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/functions.php
Merge branch 'dev'
[github/wallabag/wallabag.git] / inc / functions.php
index b830b616edf62756299186f25a6b988e594b940e..73e591c55398e58077d838d3af22ac3e2e8eb4ba 100644 (file)
@@ -23,6 +23,11 @@ function get_poche_url()
     return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
 }
 
+function encode_string($string) 
+{
+    return sha1($string . SALT);
+}
+
 // function define to retrieve url content
 function get_external_file($url)
 {
@@ -39,9 +44,9 @@ function get_external_file($url)
         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
         curl_setopt($curl, CURLOPT_HEADER, false);
 
-               // FOR SSL do not verified certificate
+        // FOR SSL do not verified certificate
         curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
-               curl_setopt($curl, CURLOPT_AUTOREFERER, TRUE );
+        curl_setopt($curl, CURLOPT_AUTOREFERER, TRUE );
 
         // FeedBurner requires a proper USER-AGENT...
         curl_setopt($curl, CURL_HTTP_VERSION_1_1, true);
@@ -59,14 +64,14 @@ function get_external_file($url)
 
         // create http context and add timeout and user-agent
         $context = stream_context_create(array(
-                                                               'http'=>array('timeout' => $timeout,
-                                                                               'header'=> "User-Agent: ".$useragent,   /*spoot Mozilla Firefox*/
-                                                                               'follow_location' => true),
-                                                               // FOR SSL do not verified certificate
-                                                               'ssl' => array('verify_peer' => false,
-                                                                               'allow_self_signed' => true)
-                                                               )
-                                               );
+                                'http'=>array('timeout' => $timeout,
+                                    'header'=> "User-Agent: ".$useragent,      /*spoot Mozilla Firefox*/
+                                    'follow_location' => true),
+                                // FOR SSL do not verified certificate
+                                'ssl' => array('verify_peer' => false,
+                                        'allow_self_signed' => true)
+                                )
+                            );
 
         // only download page lesser than 4MB
         $data = @file_get_contents($url, false, $context, -1, 4000000); // We download at most 4 MB from source.
@@ -110,8 +115,6 @@ function get_external_file($url)
  */
 function prepare_url($url)
 {
-    global $msg;
-
     $parametres = array();
     $url        = html_entity_decode(trim($url));
 
@@ -122,19 +125,25 @@ function prepare_url($url)
     $i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
 
     $title = $url;
-       $html = Encoding::toUTF8(get_external_file($url,15));
-       // If get_external_file if not able to retrieve HTTPS content try the same URL with HTTP protocol
-       if (!preg_match('!^https?://!i', $url) && (!isset($html) || strlen($html) <= 0)) {
-                       $url = 'http://' . $url;
-                       $html = Encoding::toUTF8(get_external_file($url,15));
-       }
+    $html = Encoding::toUTF8(get_external_file($url,15));
+    // If get_external_file if not able to retrieve HTTPS content try the same URL with HTTP protocol
+    if (!preg_match('!^https?://!i', $url) && (!isset($html) || strlen($html) <= 0)) {
+        $url = 'http://' . $url;
+        $html = Encoding::toUTF8(get_external_file($url,15));
+    }
+
+    if (function_exists('tidy_parse_string')) {
+        $tidy = tidy_parse_string($html, array(), 'UTF8');
+        $tidy->cleanRepair();
+        $html = $tidy->value;
+    }
 
     if (isset($html) and strlen($html) > 0)
     {
         $r = new Readability($html, $url);
-               
+
         $r->convertLinksToFootnotes = CONVERT_LINKS_FOOTNOTES;
-       $r->revertForcedParagraphElements = REVERT_FORCED_PARAGRAPH_ELEMENTS;
+        $r->revertForcedParagraphElements = REVERT_FORCED_PARAGRAPH_ELEMENTS;
 
         if($r->init())
         {
@@ -281,7 +290,13 @@ function display_view($view, $id = 0, $full_head = 'yes')
                 $tpl->assign('id', $entry['id']);
                 $tpl->assign('url', $entry['url']);
                 $tpl->assign('title', $entry['title']);
-                $tpl->assign('content', $entry['content']);
+                $content = $entry['content'];
+                if (function_exists('tidy_parse_string')) {
+                    $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
+                    $tidy->cleanRepair();
+                    $content = $tidy->value;
+                }
+                $tpl->assign('content', $content);
                 $tpl->assign('is_fav', $entry['is_fav']);
                 $tpl->assign('is_read', $entry['is_read']);
                 $tpl->assign('load_all_js', 0);
@@ -365,12 +380,10 @@ function action_to_do($action, $url, $id = 0)
             break;
         case 'toggle_fav' :
             $store->favoriteById($id);
-            $msg->add('s', 'the favorite toggle has been done successfully');
             logm('mark as favorite link #' . $id);
             break;
         case 'toggle_archive' :
             $store->archiveById($id);
-            $msg->add('s', 'the archive toggle has been done successfully');
             logm('archive link #' . $id);
             break;
         default: