]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/WallabagEBooks.class.php
remove unnecessary line
[github/wallabag/wallabag.git] / inc / poche / WallabagEBooks.class.php
1 <?php
2 /**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT see COPYING file
9 */
10
11 class WallabagEBooks
12 {
13 protected $wallabag;
14 protected $method;
15 protected $value;
16 protected $entries;
17 protected $bookTitle;
18 protected $bookFileName;
19 protected $author = 'wallabag';
20
21 public function __construct(Poche $wallabag, $method, $value)
22 {
23 $this->wallabag = $wallabag;
24 $this->method = $method;
25 $this->value = $value;
26 }
27
28 public function prepareData()
29 {
30 switch ($this->method) {
31 case 'id':
32 $entryID = filter_var($this->value, FILTER_SANITIZE_NUMBER_INT);
33 $entry = $this->wallabag->store->retrieveOneById($entryID, $this->wallabag->user->getId());
34 $this->entries = array($entry);
35 $this->bookTitle = $entry['title'];
36 $this->bookFileName = str_replace('/', '_', substr($this->bookTitle, 0, 200));
37 $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)
38 Tools::logm('Producing ebook from article ' . $this->bookTitle);
39 break;
40 case 'all':
41 $this->entries = $this->wallabag->store->retrieveAll($this->wallabag->user->getId());
42 $this->bookTitle = sprintf(_('All my articles on %s'), date(_('d.m.y'))); #translatable because each country has it's own date format system
43 $this->bookFileName = _('Allarticles') . date(_('dmY'));
44 Tools::logm('Producing ebook from all articles');
45 break;
46 case 'tag':
47 $tag = filter_var($this->value, FILTER_SANITIZE_STRING);
48 $tags_id = $this->wallabag->store->retrieveAllTags($this->wallabag->user->getId(), $tag);
49 $tag_id = $tags_id[0]["id"]; // we take the first result, which is supposed to match perfectly. There must be a workaround.
50 $this->entries = $this->wallabag->store->retrieveEntriesByTag($tag_id, $this->wallabag->user->getId());
51 $this->bookTitle = sprintf(_('Articles tagged %s'), $tag);
52 $this->bookFileName = substr(sprintf(_('Tag %s'), $tag), 0, 200);
53 Tools::logm('Producing ebook from tag ' . $tag);
54 break;
55 case 'category':
56 $category = filter_var($this->value, FILTER_SANITIZE_STRING);
57 $this->entries = $this->wallabag->store->getEntriesByView($category, $this->wallabag->user->getId());
58 $this->bookTitle = sprintf(_('Articles in category %s'), $category);
59 $this->bookFileName = substr(sprintf(_('Category %s'), $category), 0, 200);
60 Tools::logm('Producing ebook from category ' . $category);
61 break;
62 case 'search':
63 $search = filter_var($this->value, FILTER_SANITIZE_STRING);
64 Tools::logm($search);
65 $this->entries = $this->wallabag->store->search($search, $this->wallabag->user->getId());
66 $this->bookTitle = sprintf(_('Articles for search %s'), $search);
67 $this->bookFileName = substr(sprintf(_('Search %s'), $search), 0, 200);
68 Tools::logm('Producing ebook from search ' . $search);
69 break;
70 case 'default':
71 die(_('Uh, there is a problem while generating eBook.'));
72 }
73 }
74 }
75
76 class WallabagEpub extends WallabagEBooks
77 {
78 /**
79 * handle ePub
80 */
81 public function produceEpub()
82 {
83 Tools::logm('Starting to produce ePub 3 file');
84
85 try {
86
87 $content_start =
88 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
89 . "<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:epub=\"http://www.idpf.org/2007/ops\">\n"
90 . "<head>"
91 . "<meta http-equiv=\"Default-Style\" content=\"text/html; charset=utf-8\" />\n"
92 . "<title>" . _("wallabag articles book") . "</title>\n"
93 . "</head>\n"
94 . "<body>\n";
95
96 $bookEnd = "</body>\n</html>\n";
97
98 $log = new Logger("wallabag", TRUE);
99
100 $book = new EPub(EPub::BOOK_VERSION_EPUB3, DEBUG_POCHE);
101 $log->logLine("new EPub()");
102 $log->logLine("EPub class version: " . EPub::VERSION);
103 $log->logLine("EPub Req. Zip version: " . EPub::REQ_ZIP_VERSION);
104 $log->logLine("Zip version: " . Zip::VERSION);
105 $log->logLine("getCurrentServerURL: " . $book->getCurrentServerURL());
106 $log->logLine("getCurrentPageURL..: " . $book->getCurrentPageURL());
107
108 Tools::logm('Filling metadata for ePub...');
109
110 $book->setTitle($this->bookTitle);
111 $book->setIdentifier("http://$_SERVER[HTTP_HOST]", EPub::IDENTIFIER_URI); // Could also be the ISBN number, prefered for published books, or a UUID.
112 //$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.
113 $book->setDescription(_("Some articles saved on my wallabag"));
114 $book->setAuthor($this->author,$this->author);
115 $book->setPublisher("wallabag", "wallabag"); // I hope this is a non existant address :)
116 $book->setDate(time()); // Strictly not needed as the book date defaults to time().
117 //$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.
118 $book->setSourceURL("http://$_SERVER[HTTP_HOST]");
119
120 $book->addDublinCoreMetadata(DublinCore::CONTRIBUTOR, "PHP");
121 $book->addDublinCoreMetadata(DublinCore::CONTRIBUTOR, "wallabag");
122
123 $cssData = "body {\n margin-left: .5em;\n margin-right: .5em;\n text-align: justify;\n}\n\np {\n font-family: serif;\n font-size: 10pt;\n text-align: justify;\n text-indent: 1em;\n margin-top: 0px;\n margin-bottom: 1ex;\n}\n\nh1, h2 {\n font-family: sans-serif;\n font-style: italic;\n text-align: center;\n background-color: #6b879c;\n color: white;\n width: 100%;\n}\n\nh1 {\n margin-bottom: 2px;\n}\n\nh2 {\n margin-top: -2px;\n margin-bottom: 2px;\n}\n";
124
125 $log->logLine("Add Cover");
126
127 $fullTitle = "<h1> " . $this->bookTitle . "</h1>\n";
128
129 $book->setCoverImage("Cover.png", file_get_contents("themes/_global/img/appicon/apple-touch-icon-152.png"), "image/png", $fullTitle);
130
131 $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;
132
133 //$book->addChapter("Table of Contents", "TOC.xhtml", NULL, false, EPub::EXTERNAL_REF_IGNORE);
134 $book->addChapter("Notices", "Cover2.html", $cover);
135
136 $book->buildTOC();
137
138 Tools::logm('Adding actual content...');
139
140 foreach ($this->entries as $entry) { //set tags as subjects
141 $tags = $this->wallabag->store->retrieveTagsByEntry($entry['id']);
142 foreach ($tags as $tag) {
143 $book->setSubject($tag['value']);
144 }
145
146 $log->logLine("Set up parameters");
147
148 $chapter = $content_start . $entry['content'] . $bookEnd;
149 $book->addChapter($entry['title'], htmlspecialchars($entry['title']) . ".html", $chapter, true, EPub::EXTERNAL_REF_ADD);
150 $log->logLine("Added chapter " . $entry['title']);
151 }
152
153 if (DEBUG_POCHE) {
154 $book->addChapter("Log", "Log.html", $content_start . $log->getLog() . "\n</pre>" . $bookEnd); // log generation
155 Tools::logm('Production log available in produced file');
156 }
157 $book->finalize();
158 $zipData = $book->sendBook($this->bookFileName);
159 Tools::logm('Ebook produced');
160 }
161 catch (Exception $e) {
162 Tools::logm('PHPePub has encountered an error : '.$e->getMessage());
163 $this->wallabag->messages->add('e', $e->getMessage());
164 }
165 }
166 }
167
168 class WallabagMobi extends WallabagEBooks
169 {
170 /**
171 * MOBI Class
172 * @author Sander Kromwijk
173 */
174
175 public function produceMobi()
176 {
177 try {
178 Tools::logm('Starting to produce Mobi file');
179 $mobi = new MOBI();
180 $content = new MOBIFile();
181
182 $messages = new Messages(); // for later
183
184 Tools::logm('Filling metadata for Mobi...');
185
186 $content->set("title", $this->bookTitle);
187 $content->set("author", $this->author);
188 $content->set("subject", $this->bookTitle);
189
190 # introduction
191 $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>');
192 $content->appendImage(imagecreatefrompng("themes/_global/img/appicon/apple-touch-icon-152.png"));
193 $content->appendPageBreak();
194
195 Tools::logm('Adding actual content...');
196
197 foreach ($this->entries as $item) {
198 $content->appendChapterTitle($item['title']);
199 $content->appendParagraph($item['content']);
200 $content->appendPageBreak();
201 }
202 $mobi->setContentProvider($content);
203
204 // the browser inside Kindle Devices doesn't likes special caracters either, we limit to A-z/0-9
205 $this->bookFileName = preg_replace('/[^A-Za-z0-9\-]/', '', $this->bookFileName);
206
207 // we offer file to download
208 $mobi->download($this->bookFileName.'.mobi');
209 Tools::logm('Mobi file produced');
210 }
211 catch (Exception $e) {
212 Tools::logm('PHPMobi has encountered an error : '.$e->getMessage());
213 $this->wallabag->messages->add('e', $e->getMessage());
214 }
215 }
216 }
217
218 class WallabagPDF extends WallabagEbooks
219 {
220 public function producePDF()
221 {
222
223 Tools::logm('Starting to produce PDF file');
224 @define ('K_TCPDF_THROW_EXCEPTION_ERROR', TRUE);
225 try {
226 $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
227
228 Tools::logm('Filling metadata for PDF...');
229 $pdf->SetCreator(PDF_CREATOR);
230 $pdf->SetAuthor('wallabag');
231 $pdf->SetTitle($this->bookTitle);
232 $pdf->SetSubject('Articles via wallabag');
233 $pdf->SetKeywords('wallabag');
234
235 Tools::logm('Adding introduction...');
236 $pdf->AddPage();
237 $intro = '<h1>' . $this->bookTitle . '</h1><div style="text-align:center;" >
238 <p>' . _('Produced by wallabag with tcpdf') . '</p>
239 <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>
240 <img src="themes/_global/img/appicon/apple-touch-icon-152.png" /></div>';
241
242
243 $pdf->writeHTMLCell(0, 0, '', '', $intro, 0, 1, 0, true, '', true);
244
245 $i = 1;
246 Tools::logm('Adding actual content...');
247 foreach ($this->entries as $item) {
248 $tags = $this->wallabag->store->retrieveTagsByEntry($entry['id']);
249 foreach ($tags as $tag) {
250 $pdf->SetKeywords($tag['value']);
251 }
252 $pdf->AddPage();
253 $html = '<h1>' . $item['title'] . '</h1>';
254 $html .= $item['content'];
255 $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
256 }
257
258 // set image scale factor
259 $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
260
261
262 $pdf->Output('cache/' . $this->bookFileName . '.pdf', 'FD');
263 }
264 catch (Exception $e) {
265 Tools::logm('TCPDF has encountered an error : '.$e->getMessage());
266 $this->wallabag->messages->add('e', $e->getMessage());
267 }
268
269 }
270 }