-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstory.py
executable file
·413 lines (340 loc) · 13.7 KB
/
story.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
401
402
403
404
405
406
407
408
409
410
411
412
413
import requests
import re
from bs4 import BeautifulSoup, NavigableString
from urllib.parse import urlparse
from argparse import ArgumentParser
import os
import sys
import subprocess
import email
import smtplib
from getpass import getpass
import yaml
from pathlib import Path
class Story():
def __init__(self, args):
self.initial_url = args['url']
self.folder = '/home/jono/projects/stories'
# get base url of site
parsed_url = urlparse(self.initial_url)
self.base_url = parsed_url.scheme + '://' + parsed_url.hostname
self.debug = args.get('verbosity', 0)
self.container = args.get('container', 'div.chapter-content')
self.next = args.get('next', 'a#next_chap')
self.chap_title_css = args.get('detect_title', False)
self.title = args.get('title', 'ebook')
self.filename = args.get('filename', self.title.replace(' ', '_'))
self.cwd = os.path.dirname(sys.argv[0])
self.html_folder = self.get_folder('html')
self.ebook_folder = self.get_folder(args.get('type', 'epub'))
self.extension = '.' + args.get('type', 'epub')
self.style_folder = self.get_folder('styles')
self.html_file = os.path.join(self.html_folder,
self.filename + '.html')
self.ebook_file = os.path.join(self.ebook_folder,
self.filename + self.extension)
self.style = os.path.join(self.style_folder,
args.get('style', 'white-style.css'))
self.scripts = self.get_scripts(args.get('scripts', ''))
self.args = args
self.story = self.init_story(os.path.join(self.folder,
'template.html'))
self.current_chapter = 0
if self.debug > 1:
print(args)
def init_story(self, template_file):
with open(template_file, 'r') as f:
return BeautifulSoup(f, features='lxml')
def get_folder(self, folder_name):
folder_path = os.path.join(self.folder, folder_name)
try:
os.makedirs(folder_path)
except FileExistsError:
return folder_path
except OSError:
print(f'Could not make {folder_path}. Please edit the folder.')
sys.exit()
return folder_path
def load_webpage(self, url, retries=3):
headers = {'User-Agent': 'Mozilla/5.0 (X11; Ubuntu; Linux i686; \
rv:24.0) Gecko/20100101 Firefox/24.0'}
if self.debug > 1:
print(url + '\n', headers)
i = 0
response = None
while i < retries and not response:
try:
response = requests.get(url, headers=headers)
break
except requests.ConnectionError:
response = None
i += 1
if self.debug > 1:
print(response.status_code, response.reason)
if self.debug > 2:
print(response.text)
if response.status_code == 200:
return response.text
elif response.status_code == 404:
return '404'
else:
return False
def load_soup(self, page):
return BeautifulSoup(page, features='lxml')
def process_story_content(self, soup: BeautifulSoup, container=None, detect_title=False):
if not container:
container = self.container
# filter chapter content
filtered = soup.select(container)
# add div wrapper to each chapter
# add chapter content to story
if len(filtered) < 1:
print('Chapter content not found.')
print(soup.prettify())
return False
chapter = soup.new_tag('div')
chapter['class'] = 'chp'
title = self.get_chapter_title(soup)
chapter.append(title)
for tag in filtered:
chapter.append(tag)
if self.debug > 2:
print(chapter.prettify())
self.story.body.append(chapter)
def get_chapter_title(self, soup):
heading = soup.new_tag('h2')
heading['class'] = 'chapter-heading'
title = ''
chapter_number = None
if self.chap_title_css:
tag = soup.select_one(self.chap_title_css)
chapter_details = re.match(r'((chapter)?[:\s]*(\d+))?[:\-\.\s]*(.*)', tag.string, flags=re.IGNORECASE)
try:
chapter_number = chapter_details.group(3)
title = chapter_details.group(4)
except AttributeError:
title = ''
self.current_chapter = chapter_number if chapter_number else int(self.current_chapter) + 1
chap_title = 'Chapter ' + str(self.current_chapter)
chap_title += (' - ' + title) if title else ''
heading.string = NavigableString(chap_title)
if self.debug:
print(chap_title)
return heading
def get_next_url(self, soup):
try:
next_url = soup.select(self.next)[0].get('href')
if self.debug > 1:
print(f'Next URL: {next_url}')
if self.debug > 2:
print(soup.select(self.next))
except IndexError:
print(f'Could not locate {self.next}.')
if self.debug > 1:
print('\n' + soup.prettify() + '\n')
return ''
if not next_url:
print('Could not get next url.')
return ''
elif 'http' not in next_url:
return self.base_url + next_url
else:
return next_url
def add_chapter(self, url):
page = self.load_webpage(url)
soup = self.load_soup(page)
self.process_story_content(soup)
return self.get_next_url(soup)
def add_style(self, style_file):
style = self.story.new_tag('link')
style['rel'] = 'stylesheet'
style['type'] = 'text/css'
style['href'] = os.path.abspath(style_file)
self.story.head.append(style)
def get_scripts(self, scripts):
if self.debug > 1:
print(scripts)
if not scripts:
return ''
elif not isinstance(scripts, list):
scripts = scripts.split(',')
return [os.path.abspath(s) for s in scripts]
def add_script(self, script_file):
script = self.story.new_tag('script')
script['src'] = script_file
if self.debug > 1:
print(f'Adding {script}')
self.story.head.append(script)
def write(self, filename=None):
if filename:
self.html_file = os.path.join(self.html_folder, self.filename)
if '.html' not in self.html_file:
self.html_file += '.html'
with open(self.html_file, 'w') as f:
f.write(self.story.prettify())
def convert(self, from_file=None, to_file=None):
if not from_file:
from_file = self.html_file
if not to_file:
to_file = self.ebook_file
if self.extension not in to_file[-5:]:
to_file += self.extension
params = ['--title', self.title, '--linearize-tables']
subprocess.run(['ebook-convert', from_file, to_file] + params)
self.ebook_file = to_file
def _condition(self, next_url, count, num_chaps):
if num_chaps:
return next_url and count < num_chaps
else:
return next_url
def download_ebook(self, num_chapters=None, filename=None,
html_attrs=None):
self.add_style(self.style)
if self.scripts:
for script in self.scripts:
try:
self.add_script(script)
except Exception as e:
if self.debug:
print(e)
print(f'Could not add {script}.')
if html_attrs:
for element in html_attrs:
for attr, val in element.items():
self.story[element][attr] = val
count = 0
next_url = self.add_chapter(s.initial_url)
try:
while self._condition(next_url, count, num_chapters):
try:
next_url = self.add_chapter(next_url)
except IndexError:
next_url = False
count += 1
except KeyboardInterrupt:
pass
self.write(filename)
def send_ebook(self, title=None, filepath=None, pwfile=None):
if not title:
title = self.title
if not filepath:
filepath = Path(self.ebook_file)
eml = Email(title, filepath, pwfile)
eml.send_ebook()
class Email():
def __init__(self, title, filepath, passfile=None):
self.title = title.replace('_', ' ')
self.filepath = filepath
self.askpass = (passfile is None or not os.path.exists(passfile))
self.passfile = passfile
def load_pass(self):
if self.askpass:
pw = getpass('Input password for ' + self.msg['From'] + ': ')
if input('Save password [y/n]? ').lower()[0] == 'y':
with open('.ps', 'w') as f:
f.write(pw)
else:
if os.path.isfile(self.passfile):
with open(self.passfile) as f:
return f.read().strip()
else:
print('Could not retrieve email password.')
return False
def create_message(self):
self.msg = email.message.EmailMessage()
self.msg['From'] = '[email protected]'
self.msg['To'] = '[email protected]'
self.msg['Subject'] = self.title
with open(self.filepath, 'rb') as f:
self.msg.add_attachment(f.read(), maintype='application',
subtype='x-mobipocket-ebook',
filename=self.filepath.name)
def send_message(self):
session = smtplib.SMTP('smtp.office365.com', 587)
session.ehlo()
session.starttls()
session.login(self.msg['From'], self.load_pass())
session.send_message(self.msg)
session.quit()
print('Email sent to ' + self.msg['To'] + '.')
def send_ebook(self):
self.create_message()
self.send_message()
class Args(ArgumentParser):
def __init__(self, folder=None):
super().__init__()
self.folder = folder if folder else os.path.dirname(sys.argv[0])
args = self.get_args()
self.story = self.load_story_args(args)
self.extras = {}
for key, val in args.__dict__.items():
if key not in self.story:
self.extras[key] = val
def load_story_args(self, args={}):
sargs = args.__dict__.copy()
template = self.get_template(sargs['input_template'])
if template:
for key, item in template.items():
if not sargs.get(key):
sargs[key] = item
extras = ['input_template', 'no_download', 'no_convert', 'no_email']
for e in extras:
del sargs[e]
return sargs
def get_args(self):
story = self.add_argument_group('story')
debug = self.add_argument_group('debug')
actions = self.add_argument_group('actions')
story.add_argument('-u', '--url', help='URL of first chapter')
story.add_argument('-i', '--input-template',
help='Specify template of arguments')
story.add_argument('-t', '--title', help='Ebook title', default='book')
story.add_argument('-c', '--container', help='Chapter container CSS')
story.add_argument('-n', '--next', help='Next chapter CSS')
story.add_argument('-d', '--detect-title', default=False,
help='CSS selector for chapter title')
story.add_argument('-s', '--scripts', help='Scripts to be added')
story.add_argument('--type', default='epub', help='Type of ebook')
debug.add_argument('-v', dest='verbosity', action='count', default=0,
help='Specify verbose output')
actions.add_argument('--no-download', action='store_true',
default=False, help='Do not download ebook')
actions.add_argument('--no-convert', action='store_true',
default=False, help='Do not convert html to epub')
actions.add_argument('--no-email', action='store_true',
default=False, help='Do not send to kindle')
args = self.parse_args()
if not args.url:
exit('Please specify a URL for the first chapter.')
return args
def get_template(self, filename):
if not filename:
return None
template_dir = os.path.join(self.folder, 'templates')
def check_files(files=[]):
for f in files:
if os.path.isfile(f):
return f
return ''
files = [filename, os.path.join(template_dir, filename),
os.path.join(template_dir, filename + '.yml'),
os.path.join(template_dir, filename + '.yaml')]
template = check_files(files)
try:
with open(template, 'r') as f:
tmp = yaml.full_load(f)
except Exception as e:
print(e)
exit(f'Failed to load template values from {template}.')
return tmp
if __name__ == '__main__':
cmdargs = Args('/home/jono/projects/stories')
s = Story(cmdargs.story)
if cmdargs.story['verbosity'] > 1:
print(cmdargs.__dict__)
if not cmdargs.extras['no_download']:
s.download_ebook()
if not cmdargs.extras['no_convert']:
s.convert()
if not cmdargs.extras['no_email']:
s.send_ebook(pwfile=os.path.join(s.folder, '.ps'))