-
Notifications
You must be signed in to change notification settings - Fork 63
/
epub.py
executable file
·400 lines (335 loc) · 11.6 KB
/
epub.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#!/usr/bin/env python
'''
python/curses epub reader. Requires BeautifulSoup
Keyboard commands:
Esc/q - quit
Tab/Left/Right - toggle between TOC and chapter views
TOC view:
Up - up a line
Down - down a line
PgUp - up a page
PgDown - down a page
Chapter view:
Up - up a page
Down - down a page
PgUp - up a line
PgDown - down a line
i - open images on page in web browser
'''
import curses.wrapper
import curses.ascii
import formatter
import htmllib
import locale
import os
import StringIO
import re
import tempfile
import zipfile
from bs4 import BeautifulSoup
try:
from fabulous import image
import Pillow
except ImportError:
images = False
else:
images = True
locale.setlocale(locale.LC_ALL, 'en_US.utf-8')
basedir = ''
ESCAPE_KEYS = [ord('q'), curses.ascii.ESC]
TOC_DOWN_LINE_KEYS = [curses.KEY_DOWN]
TOC_UP_LINE_KEYS = [curses.KEY_UP]
TOC_DOWN_PAGE_KEYS = [curses.KEY_NPAGE]
TOC_UP_PAGE_KEYS = [curses.KEY_PPAGE]
CHAPTER_DOWN_PAGE_KEYS = [curses.KEY_DOWN]
CHAPTER_UP_PAGE_KEYS = [curses.KEY_UP]
CHAPTER_DOWN_LINE_KEYS = [curses.KEY_NPAGE]
CHAPTER_UP_LINE_KEYS = [curses.KEY_PPAGE]
CHAPTERTOCSWITCH_KEYS = [curses.ascii.HT, curses.KEY_RIGHT, curses.KEY_LEFT]
def run(screen, program, *args):
curses.nocbreak()
screen.keypad(0)
curses.echo()
pid = os.fork()
if not pid:
os.execvp(program, (program,) + args)
os.wait()[0]
curses.noecho()
screen.keypad(1)
curses.cbreak()
def open_image(screen, name, s):
''' show images with PIL and fabulous '''
if not images:
screen.addstr(0, 0, "missing PIL or fabulous", curses.A_REVERSE)
return
ext = os.path.splitext(name)[1]
screen.erase()
screen.refresh()
curses.setsyx(0, 0)
image_file = tempfile.NamedTemporaryFile(suffix=ext, delete=False)
image_file.write(s)
image_file.close()
try:
print image.Image(image_file.name)
except:
print image_file.name
finally:
os.unlink(image_file.name)
def textify(html_snippet, img_size=(80, 45), maxcol=72):
''' text dump of html '''
class Formatter(formatter.AbstractFormatter):
pass
class Parser(htmllib.HTMLParser):
def anchor_end(self):
self.anchor = None
def handle_image(self, source, alt, ismap, alight, width, height):
global basedir
self.handle_data(
'[img="{0}{1}" "{2}"]'.format(basedir, source, alt)
)
class Writer(formatter.DumbWriter):
def __init__(self, fl, maxcol=72):
formatter.DumbWriter.__init__(self, fl)
self.maxcol = maxcol
def send_label_data(self, data):
self.send_flowing_data(data)
self.send_flowing_data(' ')
o = StringIO.StringIO()
p = Parser(Formatter(Writer(o, maxcol)))
p.feed(html_snippet)
p.close()
return o.getvalue()
def table_of_contents(fl):
global basedir
# find opf file
soup = BeautifulSoup(fl.read('META-INF/container.xml'))
opf = dict(soup.find('rootfile').attrs)['full-path']
basedir = os.path.dirname(opf)
if basedir:
basedir = '{0}/'.format(basedir)
soup = BeautifulSoup(fl.read(opf))
# title
yield (soup.find('dc:title').text, None)
# all files, not in order
x, ncx = {}, None
for item in soup.find('manifest').findAll('item'):
d = dict(item.attrs)
x[d['id']] = '{0}{1}'.format(basedir, d['href'])
if d['media-type'] == 'application/x-dtbncx+xml':
ncx = '{0}{1}'.format(basedir, d['href'])
# reading order, not all files
y = []
for item in soup.find('spine').findAll('itemref'):
y.append(x[dict(item.attrs)['idref']])
z = {}
if ncx:
# get titles from the toc
soup = BeautifulSoup(fl.read(ncx))
for navpoint in soup('navpoint'):
k = navpoint.content.get('src', None)
# strip off any anchor text
k = k.split('#')[0]
if k:
z[k] = navpoint.navlabel.text
# output
for section in y:
if section in z:
yield (z[section].encode('utf-8'), section.encode('utf-8'))
else:
yield (u'', section.encode('utf-8').strip())
def list_chaps(screen, chaps, start, length):
for i, (title, src) in enumerate(chaps[start:start + length]):
try:
if start == 0:
screen.addstr(i, 0, ' {0}'.format(title), curses.A_BOLD)
else:
screen.clrtoeol()
screen.addstr(i, 0, '{0:-5} {1}'.format(start, title.strip()))
except:
pass
start += 1
screen.refresh()
return i
def check_epub(fl):
if os.path.isfile(fl) and os.path.splitext(fl)[1].lower() == '.epub':
return True
def dump_epub(fl, maxcol=float("+inf")):
if not check_epub(fl):
return
fl = zipfile.ZipFile(fl, 'r')
chaps = [i for i in table_of_contents(fl)]
for title, src in chaps:
print title
print '-' * len(title)
if src:
soup = BeautifulSoup(fl.read(src))
print textify(
unicode(soup.find('body')).encode('utf-8'),
maxcol=maxcol,
)
print '\n'
def curses_epub(screen, fl):
if not check_epub(fl):
return
#curses.mousemask(curses.BUTTON1_CLICKED)
fl = zipfile.ZipFile(fl, 'r')
chaps = [i for i in table_of_contents(fl)]
chaps_pos = [0 for i in chaps]
start = 0
cursor_row = 0
# toc
while True:
curses.curs_set(1)
maxy, maxx = screen.getmaxyx()
if cursor_row >= maxy:
cursor_row = maxy - 1
len_chaps = list_chaps(screen, chaps, start, maxy)
screen.move(cursor_row, 0)
ch = screen.getch()
if ch in ESCAPE_KEYS:
return
# up/down line
if ch in TOC_DOWN_LINE_KEYS:
if start < len(chaps) - maxy:
start += 1
screen.clear()
elif cursor_row < maxy - 1 and cursor_row < len_chaps:
cursor_row += 1
elif ch in TOC_UP_LINE_KEYS:
if start > 0:
start -= 1
screen.clear()
elif cursor_row > 0:
cursor_row -= 1
# up/down page
elif ch in TOC_DOWN_PAGE_KEYS:
if start + maxy - 1 < len(chaps):
start += maxy - 1
if len_chaps < maxy:
start = len(chaps) - maxy
screen.clear()
elif ch in TOC_UP_PAGE_KEYS:
if start > 0:
start -= maxy - 1
if start < 0:
start = 0
screen.clear()
# to chapter
elif ch in CHAPTERTOCSWITCH_KEYS:
if chaps[start + cursor_row][1]:
html = fl.read(chaps[start + cursor_row][1])
soup = BeautifulSoup(html)
chap = textify(
unicode(soup.find('body')).encode('utf-8'),
img_size=screen.getmaxyx(),
maxcol=screen.getmaxyx()[1]
).split('\n')
else:
chap = ''
screen.clear()
curses.curs_set(0)
# chapter
while True:
maxy, maxx = screen.getmaxyx()
images = []
for i, line in enumerate(chap[
chaps_pos[start + cursor_row]:
chaps_pos[start + cursor_row] + maxy
]):
try:
screen.addstr(i, 0, line)
mch = re.search('\[img="([^"]+)" "([^"]*)"\]', line)
if mch:
images.append(mch.group(1))
except:
pass
screen.refresh()
ch = screen.getch()
# quit
if ch in ESCAPE_KEYS:
return
# to TOC
if ch in CHAPTERTOCSWITCH_KEYS:
screen.clear()
break
# up/down page
elif ch in CHAPTER_DOWN_PAGE_KEYS:
if chaps_pos[start + cursor_row] + maxy - 1 < len(chap):
chaps_pos[start + cursor_row] += maxy - 1
screen.clear()
elif ch in CHAPTER_UP_PAGE_KEYS:
if chaps_pos[start + cursor_row] > 0:
chaps_pos[start + cursor_row] -= maxy - 1
if chaps_pos[start + cursor_row] < 0:
chaps_pos[start + cursor_row] = 0
screen.clear()
# up/down line
elif ch in CHAPTER_DOWN_LINE_KEYS:
if chaps_pos[start + cursor_row] + maxy - 1 < len(chap):
chaps_pos[start + cursor_row] += 1
screen.clear()
elif ch in CHAPTER_UP_LINE_KEYS:
if chaps_pos[start + cursor_row] > 0:
chaps_pos[start + cursor_row] -= 1
screen.clear()
#elif ch in [curses.KEY_MOUSE]:
# id, x, y, z, bstate = curses.getmouse()
# line = screen.instr(y, 0)
# mch = re.search('\[img="([^"]+)" "([^"]*)"\]', line)
# if mch:
# img_fl = mch.group(1)
else:
try:
if chr(ch) == 'i':
for img in images:
try:
err = open_image(screen, img, fl.read(img))
except KeyError:
err = 'image not found'
if err:
screen.addstr(0, 0, err, curses.A_REVERSE)
# edit html
elif chr(ch) == 'e':
tmpfl = tempfile.NamedTemporaryFile(delete=False)
tmpfl.write(html)
tmpfl.close()
run(screen, 'vim', tmpfl.name)
with open(tmpfl.name) as changed:
new_html = changed.read()
os.unlink(tmpfl.name)
if new_html != html:
pass
# write to zipfile?
# go back to TOC
screen.clear()
break
except (ValueError, IndexError):
pass
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description=__doc__,
)
parser.add_argument(
'-d', '--dump',
action='store_true',
help='dump EPUB to text'
)
parser.add_argument(
'-c', '--cols',
action='store',
type=int,
default=float("+inf"),
help='Number of columns to wrap; default is no wrapping.'
)
parser.add_argument('EPUB', help='view EPUB')
args = parser.parse_args()
if args.EPUB:
if args.dump:
dump_epub(args.EPUB, args.cols)
else:
try:
curses.wrapper(curses_epub, args.EPUB)
except KeyboardInterrupt:
pass