Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # This file is part of the Adblock Plus web scripts, | 1 # This file is part of the Adblock Plus web scripts, |
2 # Copyright (C) 2006-present eyeo GmbH | 2 # Copyright (C) 2006-present eyeo GmbH |
3 # | 3 # |
4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
7 # | 7 # |
8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
12 # | 12 # |
13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 |
16 import os | 16 import os |
17 import re | 17 import re |
18 import errno | |
19 import codecs | 18 import codecs |
20 import ConfigParser | 19 import ConfigParser |
21 import logging | 20 import logging |
22 from argparse import ArgumentParser | 21 from argparse import ArgumentParser |
23 import shutil | 22 import shutil |
24 | 23 |
25 from cms.utils import get_page_params, process_page | 24 from cms.utils import get_page_params, process_page |
26 from cms.sources import create_source | 25 from cms.sources import create_source |
27 | 26 |
28 MIN_TRANSLATED = 0.3 | 27 MIN_TRANSLATED = 0.3 |
28 | |
29 | |
30 def ensure_dirs(partial_path, path_parts): | |
31 """Create an entire path of directories. | |
32 | |
33 This is a recursive function, that also treats these special cases, if | |
34 the partial path we reached so far exists and is: | |
35 | |
36 1. a directory - do nothing, just move on, | |
37 2. a file - remove the file, create a directory in its place, and move on. | |
38 3. neither a file, nor a directory - raise and exception. | |
39 | |
40 Parameters | |
41 ---------- | |
42 partial_path: str | |
43 The path to resolve at this step. | |
44 path_parts: iterable | |
45 The remaining directories that will be created. | |
46 | |
47 Raises | |
48 ------- | |
49 Exception | |
50 If the path we want to resolve at this step exists and is neither a | |
51 file, nor a directory. | |
52 | |
53 """ | |
54 if os.path.isfile(partial_path): | |
55 os.remove(partial_path) | |
56 elif os.path.exists(partial_path) and not os.path.isdir(partial_path): | |
57 raise Exception('The object at {} is not recognisable! It is neither ' | |
58 'a file, nor a directory!'.format(partial_path)) | |
59 | |
60 if not os.path.isdir(partial_path): | |
61 os.mkdir(partial_path) | |
62 | |
63 if len(path_parts) == 0: | |
64 return | |
65 | |
66 ensure_dirs(os.path.join(partial_path, path_parts[0]), path_parts[1:]) | |
67 | |
68 | |
69 def is_in_previous_version(path, new_contents, encoding): | |
70 """Test if a file we try to create already is in the output directory. | |
71 | |
72 It tests if the pre-existent file has all the expected content. | |
73 It also handles the following two cases: | |
74 | |
75 1. The path is a directory - If this happens, it removes the directory from | |
76 the file tree. | |
77 2. The path exists, but it's neither a file, nor a directory. - If this | |
78 happens, it will raise an exception. | |
79 | |
80 Parameters | |
81 ---------- | |
82 path: str | |
83 The path we want to test for existence. | |
84 new_contents: bytes | |
85 The contents we want to write to the file in the new version of the | |
86 website. | |
87 encoding: str | |
88 The encoding to open the file in (if the path exists and is a file. | |
89 | |
90 Returns | |
91 ------- | |
92 bool | |
93 True - if the file exists and has the same contents. | |
94 False - if the path doesn't exist/ is not a file. | |
95 | |
96 Raises | |
97 ------ | |
98 Exception | |
99 If the path exists, but is neither a file, nor a directory. | |
100 | |
101 """ | |
102 if os.path.isfile(path): | |
103 with codecs.open(path, 'rb', encoding=encoding) as handle: | |
104 if handle.read() == new_contents: | |
105 return True | |
106 elif os.path.isdir(path): | |
107 shutil.rmtree(path) | |
108 elif os.path.exists(path): | |
109 raise Exception('The object at {} is not recognisable! It is ' | |
110 'neither a file, nor a directory!'.format(path)) | |
111 | |
112 return False | |
29 | 113 |
30 | 114 |
31 def generate_pages(repo, output_dir): | 115 def generate_pages(repo, output_dir): |
32 known_files = set() | 116 known_files = set() |
33 | 117 |
34 def write_file(path_parts, contents, binary=False): | 118 def write_file(path_parts, contents, binary=False): |
35 encoding = None if binary else 'utf-8' | 119 encoding = None if binary else 'utf-8' |
36 outfile = os.path.join(output_dir, *path_parts) | 120 outfile = os.path.join(output_dir, *path_parts) |
37 if outfile in known_files: | 121 if outfile in known_files: |
38 logging.warning('File %s has multiple sources', outfile) | 122 logging.warning('File %s has multiple sources', outfile) |
39 return | 123 return |
40 known_files.add(outfile) | 124 known_files.add(outfile) |
41 | 125 |
42 if os.path.isfile(outfile): | 126 if is_in_previous_version(outfile, contents, encoding): |
Vasily Kuznetsov
2018/09/24 11:58:47
Are you sure if the two branches of this if statem
Tudor Avram
2018/09/24 14:04:51
Also, one more thing: do we want to raise an error
Vasily Kuznetsov
2018/09/24 14:42:23
I think if there's some kind of weird object in th
Tudor Avram
2018/09/24 16:10:00
Done.
| |
43 with codecs.open(outfile, 'rb', encoding=encoding) as handle: | 127 return |
44 if handle.read() == contents: | 128 |
45 return | 129 ensure_dirs(output_dir, path_parts[:-1]) |
46 elif os.path.isdir(outfile): | |
47 shutil.rmtree(outfile) | |
48 | |
49 try: | |
Vasily Kuznetsov
2018/09/24 11:58:47
I think it would be good to extract this whole blo
Tudor Avram
2018/09/24 13:26:45
Yeah, I think it makes sense to put this into a di
Vasily Kuznetsov
2018/09/24 14:42:23
I don't expect many directories to be created when
Tudor Avram
2018/09/24 16:10:00
Done.
| |
50 os.makedirs(os.path.dirname(outfile)) | |
51 except OSError as e: | |
52 if e.errno != errno.EEXIST: | |
53 raise | |
54 path_so_far = output_dir | |
55 for part in path_parts[:-1]: | |
56 path_so_far = os.path.join(path_so_far, part) | |
57 if os.path.isfile(path_so_far): | |
58 os.remove(path_so_far) | |
59 os.makedirs(os.path.dirname(outfile)) | |
60 break | |
61 | 130 |
62 with codecs.open(outfile, 'wb', encoding=encoding) as handle: | 131 with codecs.open(outfile, 'wb', encoding=encoding) as handle: |
63 handle.write(contents) | 132 handle.write(contents) |
64 | 133 |
65 with create_source(repo, cached=True) as source: | 134 with create_source(repo, cached=True) as source: |
66 config = source.read_config() | 135 config = source.read_config() |
67 defaultlocale = config.get('general', 'defaultlocale') | 136 defaultlocale = config.get('general', 'defaultlocale') |
68 locales = list(source.list_locales()) | 137 locales = list(source.list_locales()) |
69 if defaultlocale not in locales: | 138 if defaultlocale not in locales: |
70 locales.append(defaultlocale) | 139 locales.append(defaultlocale) |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 os.rmdir(path) | 201 os.rmdir(path) |
133 remove_unknown(output_dir) | 202 remove_unknown(output_dir) |
134 | 203 |
135 | 204 |
136 if __name__ == '__main__': | 205 if __name__ == '__main__': |
137 parser = ArgumentParser('Convert website source to static website') | 206 parser = ArgumentParser('Convert website source to static website') |
138 parser.add_argument('source', help="Path to website's repository") | 207 parser.add_argument('source', help="Path to website's repository") |
139 parser.add_argument('output', help='Path to desired output directory') | 208 parser.add_argument('output', help='Path to desired output directory') |
140 args = parser.parse_args() | 209 args = parser.parse_args() |
141 generate_pages(args.source, args.output) | 210 generate_pages(args.source, args.output) |
LEFT | RIGHT |