forked from creativecommons/creativecommons.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_cc4_links.py
executable file
·173 lines (154 loc) · 6.81 KB
/
add_cc4_links.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
#!/usr/bin/env python3
# Copyright 2016 Creative Commons
# Written by Rob Myers <rob@creativecommons.org>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import re, sys
from pathlib import Path
class AddCC4Links(object):
"""Adds a link to a license, specified by language code and name, to all
existing CC 4.0 license legalcodes where they do not already contain a
link to it.
Make sure to run it in a checked out version of the creativecommons.org
repository, either in the tools directory, docroot,
or docroot/legalcode.
Note that this code modifies files inline. Commit any other changes
before running it."""
def usage(self):
print('add-cc4-links.py LANGUAGE_CODE LANGUAGE_NAME')
print(' e.g. add-cc4-links.py nl Nederlands')
print(' LANGUAGE_CODE must be 2 letters or 2-hyphen-N, the same used in filename.')
print(' LANGUAGE_NAME must be in the relevant language')
print(' if it contains whitespace, enclose in quotes.')
def get_args(self):
# Make sure there are enough args
# Make sure arg 2 is a language code
# Make sure arg 3 is not a language code
self.args_ok = (len(sys.argv) == 3) and (len(sys.argv[1]) >= 2) \
and (len(sys.argv[2]) >= 2)
if self.args_ok:
self.language_code = sys.argv[1]
self.language_name = sys.argv[2]
self.exclude_pattern = '*_4.0_' + self.language_code + '.html'
else:
self.usage()
return self.args_ok
def get_path(self):
"""Where are the licenses?"""
self.path = False
path = Path.cwd()
pathdir = path.name
if pathdir == 'legalcode':
self.path = path
if pathdir == 'docroot':
self.path = path / 'legalcode'
if pathdir == 'tools':
self.path = path.parent / 'docroot' /'legalcode'
if not self.path:
print('Please run from within the checked-out project.')
return self.path != False
def get_files(self):
"""Get all the 4.0 files *except* those we are linking to"""
self.files = [f for f in self.path.glob('*_4.0*.html')
if not f.match(self.exclude_pattern)]
def process_files(self):
"""Add links to all the license files"""
for filepath in self.files:
self.process_file(filepath)
def file_license_and_language(self, filepath):
"""Get the license number and language code from the file path"""
elements = filepath.stem.split('_')
# Un-translated deeds don't have a language code, so set to English
if len(elements) != 3:
elements += ['en']
return elements[0], elements[2]
def links_in_page(self, content):
"""Find the translated license links at the bottom of the page"""
return re.findall(r'//creativecommons\.org/licenses/[^/]+/4\.0/legalcode(\...)?">([^>]+)</a>', content)
def is_rtl(self, content):
"""Determine whether the page is in a right-to-left script"""
return (re.search(r' dir="rtl"', content) != None) or \
(re.search(r'class="rtl"', content) != None)
def insert_at_index_rtl(self, links):
index = -1
for i, match in reversed(list(enumerate(links))):
if self.language_name.casefold() < match[1].casefold():
index = i
break
return index
def insert_at_index_ltr(self, links):
index = -1
for match in links:
if self.language_name.casefold() < match[1].casefold():
break
else:
index += 1
return index
def insert_at_index(self, links, rtl):
"""Find the alphabetic position in the list of translated license links
to insert the link at"""
if rtl:
return self.insert_at_index_rtl(links)
else:
return self.insert_at_index_ltr(links)
def insert_link(self, content, lic, links, index):
"""Insert the link to the correct version of the license
in the correct position in the list of links at the bottom of the
page"""
link = '<a href="//creativecommons.org/licenses/' + lic \
+ '/4.0/legalcode.' + self.language_code \
+ '">' + self.language_name + '</a>'
if index == -1:
target = '<a href="//creativecommons.org/licenses/' + lic
replace = link + ', ' + target
else:
lang = links[index][1]
target = '>' + lang + '</a>'
replace = target + ', ' + link
return content.replace(target, replace, 1)
def file_contains_link_already(self, links):
"""Did we already add a link to this page?"""
return next((code for code, name in links
if name == self.language_name
or code == self.language_code),
False) != False
def process_file(self, filepath):
"""Get the file's details and insert a link to the translated version
into it"""
lic, lang = self.file_license_and_language(filepath)
with filepath.open() as infile:
content = infile.read()
links = self.links_in_page(content)
if not self.file_contains_link_already(links):
rtl = self.is_rtl(content)
index = self.insert_at_index(links, rtl)
#print(links)
#print(index)
#print(links[index])
updated_content = self.insert_link(content, lic, links, index)
with filepath.open('w') as outfile:
outfile.write(updated_content)
direction = 'ltr'
if rtl:
direction = 'rtl'
print('Added link to ' + direction + ' file: ' + filepath.name)
#else:
# print('File already contains link: ' + filepath.name)
def main(self):
"""Get the command line arguments, find the files, and process them"""
if self.get_args() and self.get_path():
self.get_files()
self.process_files()
if __name__ == '__main__':
link_adder = AddCC4Links()
link_adder.main()