-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpublisher.py
128 lines (109 loc) · 4.57 KB
/
publisher.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
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import io
import os
import re
import shutil
import typing
from scss.compiler import compile_file # type: ignore
import click
from aip_site.jinja.env import jinja_env
from aip_site.models.aip import AIP
from aip_site.models.scope import Scope
from aip_site.models.site import Site
from aip_site.models.page import Page
SUPPORT_ROOT = os.path.realpath(
os.path.join(os.path.dirname(__file__), 'support'),
)
class Publisher:
"""Class for writing the AIP site out to disk."""
def __init__(self, src, dest):
self.output_dir = dest.rstrip(os.path.sep)
self.site = Site.load(src.rstrip(os.path.sep))
def log(self, message: str, *, err: bool = False):
"""Conditionally log a message."""
click.secho(f'{message}', nl=True, err=err)
def publish_site(self):
"""Publish the full site."""
# Publish every page, AIP listing, and AIP.
for page in self.site.pages.values():
self.publish_doc(page)
for scope in self.site.scopes.values():
self.publish_doc(scope)
for aip in self.site.aips.values():
self.publish_doc(aip)
# Publish support pages that are not Markdown pages.
self.publish_template('index.html.j2', 'index.html')
self.publish_template('search.html.j2', 'search.html')
# Copy over assets files verbatim.
self.publish_assets()
# Publish dynamic content that goes in the assets directory.
self.publish_template(
'search.js.j2',
'assets/js/search/tipuesearch_content.js',
)
self.publish_css()
def publish_doc(self, doc: typing.Union[AIP, Scope, Page]):
"""Publish a single AIP document to disk."""
# Determine the path and make sure the directory exists.
path = f'{self.output_dir}{doc.relative_uri}.html'
os.makedirs(os.path.dirname(path), exist_ok=True)
# Write the document's file to disk.
with io.open(path, 'w') as f:
f.write(doc.render())
self.log(f'Successfully wrote {path}.')
# If this document has any redirects (only AIPs do as of this writing),
# write out the redirect files to disk also.
for redirect in getattr(doc, 'redirects', set()):
rpath = f'{self.output_dir}{redirect}.html'
with io.open(rpath, 'w') as f:
f.write(jinja_env.get_template('redirect.html.j2').render(
site=self.site,
target=doc,
))
self.log(f'Successfully wrote {rpath} (redirect).')
def publish_template(self, tmpl: str, path: str):
"""Publish a site-wide template to a particular path."""
path = f'{self.output_dir}{os.path.sep}{path}'
os.makedirs(os.path.dirname(path), exist_ok=True)
with io.open(path, 'w') as f:
f.write(jinja_env.get_template(tmpl).render(
site=self.site,
path=path.split('.')[0],
))
self.log(f'Successfully wrote {path}.')
def publish_assets(self):
"""Copy the assets directory."""
shutil.copytree(
src=os.path.join(SUPPORT_ROOT, 'assets'),
dst=os.path.join(self.output_dir, 'assets'),
dirs_exist_ok=True,
)
self.log('Successfully wrote asset files.')
def publish_css(self):
"""Compile and publish all SCSS files in the root SCSS directory."""
scss_path = os.path.join(SUPPORT_ROOT, 'scss')
css_path = os.path.join(self.output_dir, 'assets', 'css')
os.makedirs(css_path, exist_ok=True)
for scss_file in os.listdir(scss_path):
if not scss_file.endswith('.scss'):
continue
css_file = os.path.join(
css_path,
re.sub(r'\.scss$', '.css', scss_file),
)
with io.open(css_file, 'w') as f:
f.write(compile_file(os.path.join(scss_path, scss_file)))
self.log(f'Successfully wrote {css_file}.')