forked from swaroopch/byte-of-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfabfile.py
More file actions
executable file
·503 lines (399 loc) · 15.6 KB
/
Copy pathfabfile.py
File metadata and controls
executable file
·503 lines (399 loc) · 15.6 KB
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
#!/usr/bin/env python
from __future__ import print_function
##### Configuration ##############################
import io
import os
import json
os.environ["PYTHONIOENCODING"] = "utf-8"
CONFIG_FILE = "config.json"
CONFIG = json.load(io.open(CONFIG_FILE, encoding="utf-8"))
OAUTH_CONFIG_FILE = "oauth.json"
OAUTH_CONFIG = None
if os.path.exists(OAUTH_CONFIG_FILE):
OAUTH_CONFIG = json.load(io.open(OAUTH_CONFIG_FILE, encoding="utf-8"))
## NOTES
## 1. This assumes that you have already created the S3 bucket whose name
## is stored in AWS_S3_BUCKET_NAME environment variable.
## 2. Under that S3 bucket, you have created a folder whose name is stored
## above as SHORT_PROJECT_NAME.
## 3. Under that S3 bucket, you have created a folder whose name is stored as
## SHORT_PROJECT_NAME/assets.
##### Imports ####################################
import datetime
import subprocess
import copy
import webbrowser
import urllib
import time
from functools import wraps
import boto
import boto.s3.bucket
import boto.s3.key
from bs4 import BeautifulSoup
import requests
from fabric.api import task, local
from fabric.utils import abort
import logging
##### Start with checks ##########################
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger(__name__)
for chapter in CONFIG["MARKDOWN_FILES"]:
assert (chapter["slug"].lower() == chapter["slug"]), \
"Slug must be lower case : {}".format(chapter["slug"])
if str(os.environ.get("AWS_ENABLED")).lower() == "false":
AWS_ENABLED = False
elif os.environ.get("AWS_ACCESS_KEY_ID") is not None \
and len(os.environ["AWS_ACCESS_KEY_ID"]) > 0 \
and os.environ.get("AWS_SECRET_ACCESS_KEY") is not None \
and len(os.environ["AWS_SECRET_ACCESS_KEY"]) > 0 \
and os.environ.get("AWS_S3_BUCKET_NAME") is not None \
and len(os.environ["AWS_S3_BUCKET_NAME"]) > 0:
AWS_ENABLED = True
else:
AWS_ENABLED = False
print("NOTE: S3 uploading is disabled because of missing " +
"AWS key environment variables.")
# In my case, they are the same - "files.swaroopch.com"
# http://docs.amazonwebservices.com/AmazonS3/latest/dev/VirtualHosting.html#VirtualHostingCustomURLs
if AWS_ENABLED:
S3_PUBLIC_URL = os.environ["AWS_S3_BUCKET_NAME"]
#else
#S3_PUBLIC_URL = "s3.amazonaws.com/{}".format(
#os.environ["AWS_S3_BUCKET_NAME"])
if OAUTH_CONFIG is not None:
WORDPRESS_ENABLED = True
WORDPRESS_CLIENT_ID = os.environ["WORDPRESS_CLIENT_ID"]
WORDPRESS_CLIENT_SECRET = os.environ["WORDPRESS_CLIENT_SECRET"]
WORDPRESS_PARENT_PAGE_ID = int(os.environ["WORDPRESS_PARENT_PAGE_ID"])
WORDPRESS_PARENT_PAGE_SLUG = os.environ["WORDPRESS_PARENT_PAGE_SLUG"]
WORDPRESS_BASE_URL = os.environ["WORDPRESS_BASE_URL"]
else:
WORDPRESS_ENABLED = False
print("NOTE: Wordpress uploading is disabled because of " +
"missing environment variables.")
##### Helper methods #############################
def retry(f):
@wraps(f)
def wrapped_f(*args, **kwargs):
MAX_ATTEMPTS = 5
for attempt in range(1, MAX_ATTEMPTS + 1):
try:
return f(*args, **kwargs)
except:
log.exception("Attempt %s/%s failed : %s",
attempt,
MAX_ATTEMPTS,
(args, kwargs))
time.sleep(10 * attempt)
log.critical("All %s attempts failed : %s",
MAX_ATTEMPTS,
(args, kwargs))
return wrapped_f
def _upload_to_s3(filename, key):
"""http://docs.pythonboto.org/en/latest/s3_tut.html#storing-data"""
conn = boto.connect_s3()
b = boto.s3.bucket.Bucket(conn, os.environ["AWS_S3_BUCKET_NAME"])
k = boto.s3.key.Key(b)
k.key = key
k.set_contents_from_filename(filename)
k.set_acl("public-read")
url = "http://{}/{}".format(S3_PUBLIC_URL, key)
print("Uploaded to S3 : {}".format(url))
return url
def upload_output_to_s3(filename):
key = "{}/{}".format(CONFIG["SHORT_PROJECT_NAME"],
filename.split("/")[-1])
return _upload_to_s3(filename, key)
def upload_asset_to_s3(filename):
key = "{}/assets/{}".format(CONFIG["SHORT_PROJECT_NAME"],
filename.split("/")[-1])
return _upload_to_s3(filename, key)
def replace_images_with_s3_urls(text):
"""http://www.crummy.com/software/BeautifulSoup/bs4/doc/"""
soup = BeautifulSoup(text)
for image in soup.find_all("img"):
image["src"] = upload_asset_to_s3(image["src"])
return str(soup)
def markdown_to_html(source_text, upload_assets_to_s3=False):
"""Convert from Markdown to HTML; optional: upload images, etc. to S3."""
args = ["pandoc",
"-f", "markdown",
"-t", "html5"]
p = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
output = p.communicate(source_text.encode("utf-8", "ignore"))[0]
# http://wordpress.org/extend/plugins/raw-html/
output = u"<!--raw-->\n" + \
output.decode("utf-8", "ignore") + \
u"\n<!--/raw-->"
# NOTE: Also assumes that you have added the CSS from
# `pandoc -t html5` to the `style.css` of your active Wordpress theme.
if upload_assets_to_s3:
output = replace_images_with_s3_urls(output)
return output.decode("utf-8", "ignore")
def collect_header_anchors(chapter, i, all_headers):
soup = BeautifulSoup(chapter["html"])
for header in soup.find_all(["h1", "h2", "h3", "h4", "h5", "h6"]):
if "id" in header.attrs:
all_headers[header["id"]] = i
def fix_links_to_other_chapters(chapter, chapters, all_headers):
"""Fix links to other sections with Wordpress page URL."""
soup = BeautifulSoup(chapter["html"])
for link in soup.find_all("a"):
if "href" in link.attrs:
if link["href"].startswith("#"):
header_id = link["href"][1:]
assert header_id in all_headers, \
"#{} does not exist, referred in {}".format(
header_id, chapter["file"])
other_chapter = chapters[all_headers[header_id]]
link["href"] = "{}#{}".format(
other_chapter["link"],
header_id)
chapter["html"] = unicode(soup)
def add_previous_next_links(chapter, i, chapters):
previous_link = None
if i > 0:
previous_link = chapters[i - 1]["link"]
next_link = None
if i < len(chapters) - 1:
next_link = chapters[i + 1]["link"]
if previous_link is not None or next_link is not None:
chapter["html"] += u"\n"
if previous_link is not None:
chapter["html"] += u"""\
<a href="{}">⇐ Previous chapter</a>\
""".format(previous_link)
if previous_link is not None and next_link is not None:
chapter["html"] += u" " * 5
if next_link is not None:
chapter["html"] += u"""\
<a href="{}">Next chapter ⇒</a>\
""".format(next_link)
##### Tasks ######################################
@task
def prepare():
frontpage = CONFIG["MARKDOWN_FILES"][0]
content = io.open(frontpage["file"], encoding="utf-8").read()
# TODO Can I make this always go change the third line instead?
# TODO And then go back and change it to "$$date$$" so that it
# is not inadvertently committed to the git repo.
today = unicode(datetime.datetime.now().strftime("%d %b %Y"))
content = content.replace(u"$$date$$", today)
with io.open(frontpage["file"], "wt", encoding="utf-8") as output:
output.write(content)
@task
def html():
"""HTML5 output."""
prepare()
args = ["pandoc",
"-f", "markdown",
"-t", "html5",
"-o", "{}.html".format(CONFIG["FULL_PROJECT_NAME"]),
"-s",
"--toc"] + [i["file"] for i in CONFIG["MARKDOWN_FILES"]]
local(" ".join(args))
html_file = "file://" + os.path.abspath(
"{}.html".format(CONFIG["FULL_PROJECT_NAME"]))
print(html_file)
webbrowser.open(html_file)
@task
def epub():
"""http://johnmacfarlane.net/pandoc/epub.html"""
prepare()
args = ["pandoc",
"-f", "markdown",
"-t", "epub",
"-o", "{}.epub".format(CONFIG["FULL_PROJECT_NAME"])] + \
[i["file"] for i in CONFIG["MARKDOWN_FILES"]]
# TODO --epub-cover-image
# TODO --epub-metadata
# TODO --epub-stylesheet
local(" ".join(args))
if AWS_ENABLED:
upload_output_to_s3("{}.epub".format(CONFIG["FULL_PROJECT_NAME"]))
@task
def pdf():
"""http://johnmacfarlane.net/pandoc/README.html#creating-a-pdf"""
prepare()
args = ["pandoc",
"-f", "markdown",
# https://github.com/jgm/pandoc/issues/571
#"-t", "pdf",
"-o", "{}.pdf".format(CONFIG["FULL_PROJECT_NAME"]),
"-N",
# https://github.com/jgm/pandoc/issues/600
"-V", "papersize:\"a4paper\"",
"--toc"] + [i["file"] for i in CONFIG["MARKDOWN_FILES"]]
local(" ".join(args))
if AWS_ENABLED:
upload_output_to_s3("{}.pdf".format(CONFIG["FULL_PROJECT_NAME"]))
@task
def clean():
"""Remove generated output files"""
possible_outputs = (
"{}.html".format(CONFIG["FULL_PROJECT_NAME"]),
"{}.epub".format(CONFIG["FULL_PROJECT_NAME"]),
"{}.pdf".format(CONFIG["FULL_PROJECT_NAME"]),
)
for filename in possible_outputs:
if os.path.exists(filename):
os.remove(filename)
print("Removed {}".format(filename))
@task
def push():
"""Upload Wordpress, EPUB, PDF."""
clean()
wp()
epub()
pdf()
########## WordPress ##########
## http://developer.wordpress.com/docs/api/ ##
@task
def oauth_step1():
"""Fetch OAuth2 token.
http://developer.wordpress.com/docs/oauth2/"""
if os.path.exists(OAUTH_CONFIG_FILE):
os.remove(OAUTH_CONFIG_FILE)
request_url = "https://public-api.wordpress.com/oauth2/authorize"
params = {
"client_id": WORDPRESS_CLIENT_ID,
"redirect_uri": "http://swaroopch.com",
"response_type": "code",
}
url = "{}?{}".format(request_url, urllib.urlencode(params))
print("""\
1. After authorization, it will redirect, for e.g.
http://swaroopch.com/?code=8D1Gq1tLQy&state
2. Extract the code from the URL and run:
fab oauth_step2:8D1Gq1tLQy
3. See generated OAUTH_CONFIG_FILE file
""")
try:
proceed = raw_input("Proceed? (y/n) ")
if proceed.lower().startswith("y"):
webbrowser.open(url)
else:
abort("Okay, bye.")
except SyntaxError:
abort("Okay, bye.")
@task
def oauth_step2(code):
"""Use fetched token to generate OAuth access token."""
request_url = "https://public-api.wordpress.com/oauth2/token"
params = {
"client_id": WORDPRESS_CLIENT_ID,
"client_secret": WORDPRESS_CLIENT_SECRET,
"code": code,
"redirect_uri": "http://swaroopch.com",
"grant_type": "authorization_code",
}
response = requests.post(request_url, data=params)
response.raise_for_status()
response = response.json()
print(response)
with io.open(OAUTH_CONFIG_FILE, "wt", encoding="utf-8") as output_file:
json.dump(response, output_file, sort_keys=True, indent=2)
@task
def wp():
"""http://developer.wordpress.com/docs/api/"""
if WORDPRESS_ENABLED:
prepare()
chapters = copy.deepcopy(CONFIG["MARKDOWN_FILES"])
# header anchor id -> index in MARKDOWN_FILES
all_headers = {}
# Render html
print("Rendering html")
for (i, chapter) in enumerate(chapters):
chapter_content = io.open(chapter["file"],
encoding="utf-8").read()
chapter["html"] = markdown_to_html(
chapter_content,
upload_assets_to_s3=AWS_ENABLED)
collect_header_anchors(chapter, i, all_headers)
chapter["link"] = "{}/{}/{}".format(
WORDPRESS_BASE_URL,
WORDPRESS_PARENT_PAGE_SLUG,
chapter["slug"])
# Fix cross-links
for chapter in chapters:
fix_links_to_other_chapters(chapter, chapters, all_headers)
# Add previous and next links at end of html
for (i, chapter) in enumerate(chapters):
add_previous_next_links(chapter, i, chapters)
# Fetch list of pages on the server and determine which already exist
existing_pages = _wordpress_get_pages()
page_slug_to_id = dict([(i.get("slug"), i.get("ID"))
for i in existing_pages])
for chapter in chapters:
if chapter["slug"] in page_slug_to_id:
chapter["page_id"] = page_slug_to_id[chapter["slug"]]
# Send to WP
print("Uploading to WordPress")
for chapter in chapters:
if chapter["slug"] in page_slug_to_id:
print("Existing page: {}".format(chapter["link"]))
assert wordpress_edit_page(chapter["page_id"],
chapter["title"],
chapter["html"])
else:
print("New page: {}".format(chapter["link"]))
assert wordpress_new_page(chapter["slug"],
chapter["title"],
chapter["html"])
def _wordpress_headers():
assert WORDPRESS_ENABLED
return {
"Authorization": "Bearer {}".format(OAUTH_CONFIG["access_token"]),
}
@retry
def _wordpress_get_pages():
url = "https://public-api.wordpress.com/rest/v1/sites/{}/posts/"
url = url.format(OAUTH_CONFIG["blog_id"])
offset = 0
number = 100
posts = []
while True:
print("offset = {}".format(offset))
response = requests.get(url,
params={"context": "edit",
"type": "page",
"status": "publish",
"number": number,
"search": CONFIG["BOOK_PAGES_SEARCH"],
"offset": offset},
headers=_wordpress_headers())
response.raise_for_status()
new_posts = response.json()["posts"]
posts.extend(new_posts)
if len(new_posts) < number:
break
offset += 100
return posts
@retry
def wordpress_new_page(slug, title, content):
"""Create a new Wordpress page."""
url = "https://public-api.wordpress.com/rest/v1/sites/{}/posts/new"
url = url.format(OAUTH_CONFIG["blog_id"])
response = requests.post(url,
data={"slug": slug,
"title": title,
"content": content,
"parent": WORDPRESS_PARENT_PAGE_ID,
"type": "page",
"comments_open": False,
"pings_open": False,
"publicize": False},
headers=_wordpress_headers())
response.raise_for_status()
return response.json()
@retry
def wordpress_edit_page(post_id, title, content):
"""Edit a Wordpress page."""
url = "https://public-api.wordpress.com/rest/v1/sites/{}/posts/{}"
url = url.format(OAUTH_CONFIG["blog_id"], post_id)
response = requests.post(url,
data={"title": title,
"content": content},
headers=_wordpress_headers())
response.raise_for_status()
return response.json()