]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/poche/WallabagEBooks.class.php
@fivefilters via composer
[github/wallabag/wallabag.git] / inc / poche / WallabagEBooks.class.php
index 1477442570adefc20a79a53eac4ccd4d151abfe6..a9c62af936f3f2f6ece13925ce86ade91df22241 100644 (file)
@@ -16,6 +16,7 @@ class WallabagEBooks
     protected $entries;
     protected $bookTitle;
     protected $bookFileName;
+    protected $author = 'wallabag';
 
     public function __construct(Poche $wallabag, $method, $value)
     {
@@ -30,37 +31,44 @@ class WallabagEBooks
             case 'id':
                 $entryID = filter_var($this->value, FILTER_SANITIZE_NUMBER_INT);
                 $entry = $this->wallabag->store->retrieveOneById($entryID, $this->wallabag->user->getId());
-                $entries = array($entry);
-                $bookTitle = $entry['title'];
-                $bookFileName = substr($bookTitle, 0, 200);
+                $this->entries = array($entry);
+                $this->bookTitle = $entry['title'];
+                $this->bookFileName = substr($this->bookTitle, 0, 200);
+                $this->author = preg_replace('#^w{3}.#', '', Tools::getdomain($entry["url"])); # if only one article, set author to domain name (we strip the eventual www part)
+                Tools::logm('Producing ebook from article ' . $this->bookTitle);
                 break;
             case 'all':
-                $entries = $this->wallabag->store->retrieveAll($this->wallabag->user->getId());
-                $bookTitle = sprintf(_('All my articles on '), date(_('d.m.y'))); #translatable because each country has it's own date format system
-                $bookFileName = _('Allarticles') . date(_('dmY'));
+                $this->entries = $this->wallabag->store->retrieveAll($this->wallabag->user->getId());
+                $this->bookTitle = sprintf(_('All my articles on %s'), date(_('d.m.y'))); #translatable because each country has it's own date format system
+                $this->bookFileName = _('Allarticles') . date(_('dmY'));
+                Tools::logm('Producing ebook from all articles');
                 break;
             case 'tag':
                 $tag = filter_var($this->value, FILTER_SANITIZE_STRING);
                 $tags_id = $this->wallabag->store->retrieveAllTags($this->wallabag->user->getId(), $tag);
                 $tag_id = $tags_id[0]["id"]; // we take the first result, which is supposed to match perfectly. There must be a workaround.
-                $entries = $this->wallabag->store->retrieveEntriesByTag($tag_id, $this->wallabag->user->getId());
-                $bookTitle = sprintf(_('Articles tagged %s'), $tag);
-                $bookFileName = substr(sprintf(_('Tag %s'), $tag), 0, 200);
+                $this->entries = $this->wallabag->store->retrieveEntriesByTag($tag_id, $this->wallabag->user->getId());
+                $this->bookTitle = sprintf(_('Articles tagged %s'), $tag);
+                $this->bookFileName = substr(sprintf(_('Tag %s'), $tag), 0, 200);
+                Tools::logm('Producing ebook from tag ' . $tag);
                 break;
             case 'category':
                 $category = filter_var($this->value, FILTER_SANITIZE_STRING);
-                $entries = $this->wallabag->store->getEntriesByView($category, $this->wallabag->user->getId());
-                $bookTitle = sprintf(_('All articles in category %s'), $category);
-                $bookFileName = substr(sprintf(_('Category %s'), $category), 0, 200);
+                $this->entries = $this->wallabag->store->getEntriesByView($category, $this->wallabag->user->getId());
+                $this->bookTitle = sprintf(_('Articles in category %s'), $category);
+                $this->bookFileName = substr(sprintf(_('Category %s'), $category), 0, 200);
+                Tools::logm('Producing ebook from category ' . $category);
                 break;
             case 'search':
                 $search = filter_var($this->value, FILTER_SANITIZE_STRING);
-                $entries = $this->store->search($search, $this->wallabag->user->getId());
-                $bookTitle = sprintf(_('All articles for search %s'), $search);
-                $bookFileName = substr(sprintf(_('Search %s'), $search), 0, 200);
+                Tools::logm($search);
+                $this->entries = $this->wallabag->store->search($search, $this->wallabag->user->getId());
+                $this->bookTitle = sprintf(_('Articles for search %s'), $search);
+                $this->bookFileName = substr(sprintf(_('Search %s'), $search), 0, 200);
+                Tools::logm('Producing ebook from search ' . $search);
                 break;
             case 'default':
-                die(_('Uh, there is a problem while generating epub.'));
+                die(_('Uh, there is a problem while generating eBook.'));
         }
     }
 }
@@ -72,12 +80,13 @@ class WallabagEpub extends WallabagEBooks
      */
     public function produceEpub()
     {
+        Tools::logm('Starting to produce ePub 3 file');
         $content_start =
             "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
             . "<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:epub=\"http://www.idpf.org/2007/ops\">\n"
             . "<head>"
             . "<meta http-equiv=\"Default-Style\" content=\"text/html; charset=utf-8\" />\n"
-            . "<title>wallabag articles book</title>\n"
+            . "<title>" . _("wallabag articles book") . "</title>\n"
             . "</head>\n"
             . "<body>\n";
 
@@ -94,11 +103,13 @@ class WallabagEpub extends WallabagEBooks
         $log->logLine("getCurrentServerURL: " . $book->getCurrentServerURL());
         $log->logLine("getCurrentPageURL..: " . $book->getCurrentPageURL());
 
-        $book->setTitle($bookTitle);
+        Tools::logm('Filling metadata for ePub...');
+
+        $book->setTitle($this->bookTitle);
         $book->setIdentifier("http://$_SERVER[HTTP_HOST]", EPub::IDENTIFIER_URI); // Could also be the ISBN number, prefered for published books, or a UUID.
         //$book->setLanguage("en"); // Not needed, but included for the example, Language is mandatory, but EPub defaults to "en". Use RFC3066 Language codes, such as "en", "da", "fr" etc.
         $book->setDescription(_("Some articles saved on my wallabag"));
-        $book->setAuthor("wallabag", "wallabag");
+        $book->setAuthor($this->author,$this->author);
         $book->setPublisher("wallabag", "wallabag"); // I hope this is a non existant address :)
         $book->setDate(time()); // Strictly not needed as the book date defaults to time().
         //$book->setRights("Copyright and licence information specific for the book."); // As this is generated, this _could_ contain the name or licence information of the user who purchased the book, if needed. If this is used that way, the identifier must also be made unique for the book.
@@ -111,9 +122,9 @@ class WallabagEpub extends WallabagEBooks
 
         $log->logLine("Add Cover");
 
-        $fullTitle = "<h1> " . $bookTitle . "</h1>\n";
+        $fullTitle = "<h1> " . $this->bookTitle . "</h1>\n";
 
-        $book->setCoverImage("Cover.png", file_get_contents("themes/baggy/img/apple-touch-icon-152.png"), "image/png", $fullTitle);
+        $book->setCoverImage("Cover.png", file_get_contents("themes/_global/img/appicon/apple-touch-icon-152.png"), "image/png", $fullTitle);
 
         $cover = $content_start . '<div style="text-align:center;"><p>' . _('Produced by wallabag with PHPePub') . '</p><p>'. _('Please open <a href="https://github.com/wallabag/wallabag/issues" >an issue</a> if you have trouble with the display of this E-Book on your device.') . '</p></div>' . $bookEnd;
 
@@ -122,7 +133,9 @@ class WallabagEpub extends WallabagEBooks
 
         $book->buildTOC();
 
-        foreach ($entries as $entry) { //set tags as subjects
+        Tools::logm('Adding actual content...');
+
+        foreach ($this->entries as $entry) { //set tags as subjects
             $tags = $this->wallabag->store->retrieveTagsByEntry($entry['id']);
             foreach ($tags as $tag) {
                 $book->setSubject($tag['value']);
@@ -137,99 +150,96 @@ class WallabagEpub extends WallabagEBooks
 
         if (DEBUG_POCHE) {
             $book->addChapter("Log", "Log.html", $content_start . $log->getLog() . "\n</pre>" . $bookEnd); // log generation
+            Tools::logm('Production log available in produced file');
         }
         $book->finalize();
-        $zipData = $book->sendBook($bookFileName);
+        $zipData = $book->sendBook($this->bookFileName);
+        Tools::logm('Ebook produced');
     }
 } 
 
 class WallabagMobi extends WallabagEBooks
 {
        /**
-       * Adapted from News2Kindle
-       * @author Jakub Westfalewski <jwest@jwest.pl>
-       *
+       * MOBI Class
+       * @author Sander Kromwijk
        */
 
        public function produceMobi()
        {
-               $storage = new Storage('static');
-               $this->prepareData();
-               foreach ($entries as $i => $item) {
-                       $content = $item['content'];
-                       $images = new Images($storage, $content);
-            $content = $images->convert();
-                       $storage->add_content
-            (
-                md5($item['title']),
-                mb_convert_encoding($item['title'], 'HTML-ENTITIES', 'utf-8'), 
-                $content, 
-                $item['url']], 
-                ""
-            );
-               }
-               $articles = $storage->get_contents();
-               $toc = array();
-        $articles_count = count($articles);
-
-        foreach($articles as $article){
-            if(array_key_exists($article->website->title, $toc)){
-                $toc[$article->website->title]->articles[] = $article;             
-            }else{
-                $toc[$article->website->title] = (object)array(
-                    'articles' => array($article),
-                    'title' => $article->website->title,
-                    'streamId' => $article->website->streamId,
-                    'url' => $article->website->htmlUrl,
-                );
-            }           
-        }
 
-        $mobi = new MOBI(); 
-        $mobi->setData($content);
-        $mobi->setOptions(array( 
-            'title' => 'Articles from '.date('Y-m-d'), 
-            'author' => 'wallabag', 
-            'subject' => 'Articles from '.date('Y-m-d'),
-        ));
+        Tools::logm('Starting to produce Mobi file');
+        $mobi = new MOBI();
+        $content = new MOBIFile();
 
-        $images = array();
+        $messages = new Messages(); // for later
+        
+        Tools::logm('Filling metadata for Mobi...');
 
-        //prepare images for mobi format
-        foreach ( $storage->info('images') as $n => $image )
-        {
-            $images[$n] = new FileRecord(new Record(file_get_contents($storage->get_path() . $image)));
-        }
+        $content->set("title", $this->bookTitle);
+        $content->set("author", $this->author);
+        $content->set("subject", $this->bookTitle);
 
-        $mobi->setImages($images);
-        $mobi->save( $storage->get_path(FALSE) . 'articles-' . date('Y-m-d') . '.mobi');
-
-        $storage->clean();
-
-        if ($send) {
-               $files = glob($storage->get_path(FALSE).'*.mobi');
-               $mail = new Send(KINDLEMAIL,MAIL);
-               foreach ( $files as $file_mobi )
-               {
-               $mail->send( $file_mobi );
-               }
-               // clean cache 
-               foreach ( $files as $file_mobi )
-               {
-                       unlink( $file_mobi );
-               }
+        # introduction
+        $content->appendParagraph('<div style="text-align:center;" ><p>' . _('Produced by wallabag with PHPMobi') . '</p><p>'. _('Please open <a href="https://github.com/wallabag/wallabag/issues" >an issue</a> if you have trouble with the display of this E-Book on your device.') . '</p></div>');
+        $content->appendImage(imagecreatefrompng("themes/_global/img/appicon/apple-touch-icon-152.png"));
+        $content->appendPageBreak();
+
+        Tools::logm('Adding actual content...');
+
+        foreach ($this->entries as $item) {
+            $content->appendChapterTitle($item['title']);
+            $content->appendParagraph($item['content']);
+            $content->appendPageBreak();
         }
-       }
+        $mobi->setContentProvider($content);
+
+        // we offer file to download
+        $mobi->download($this->bookFileName.'.mobi');
+        Tools::logm('Mobi file produced');
+    }
 }
 
 class WallabagPDF extends WallabagEbooks
 {
        public function producePDF()
        {
-               $mpdf = new mPDF('c'); 
 
-               $mpdf->WriteHTML($html);
-               $mpdf->Output();
-               exit;
+        Tools::logm('Starting to produce PDF file');
+
+        $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
+
+        Tools::logm('Filling metadata for PDF...');
+        $pdf->SetCreator(PDF_CREATOR);
+        $pdf->SetAuthor('');
+        $pdf->SetTitle($this->bookTitle);
+        $pdf->SetSubject($this->bookTitle);
+        
+        Tools::logm('Adding introduction...');
+        $pdf->AddPage();
+        $intro = '<h1>' . $this->bookTitle . '</h1><div style="text-align:center;" >
+        <p>' . _('Produced by wallabag with tcpdf') . '</p>
+        <p>'. _('Please open <a href="https://github.com/wallabag/wallabag/issues" >an issue</a> if you have trouble with the display of this E-Book on your device.') . '</p>
+        <img src="themes/_global/img/appicon/apple-touch-icon-152.png" /></div>';
+
+
+        $pdf->writeHTMLCell(0, 0, '', '', $intro, 0, 1, 0, true, '', true);
+
+        $i = 1;
+        Tools::logm('Adding actual content...');
+        foreach ($this->entries as $item) {
+            $pdf->AddPage();
+            $html = '<h1>' . $item['title'] . '</h1>';
+            $html .= $item['content'];
+            $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
+            $i = $i+1;
+        }
+
+        // set image scale factor
+        $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
+        
+
+        $pdf->Output(CACHE . '/' . $this->bookFileName . '.pdf', 'FD');
+
        }
-}
\ No newline at end of file
+}