Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 80d64a1

Browse files
committedJul 16, 2015
Fix getnikola/nikola-themes#49 -- https→http fallback
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent d9559f9 commit 80d64a1

File tree

3 files changed

+34
-7
lines changed

3 files changed

+34
-7
lines changed
 

‎CHANGES.txt

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Features
3333
Bugfixes
3434
--------
3535

36+
* Use ``http`` as fallback in plugin/theme installers if a SSL error occurs
37+
(Issue getnikola/nikola-themes#49)
3638
* Add missing ``xmlns:xhtml`` namespace to sitemaps (Issue #1890)
3739
* Fixed superfluous rebuild problems with Python 3. Note that this will cause
3840
rebuilds for most sites. (Issue #1887)

‎nikola/plugins/command/install_theme.py

+16-4
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,12 @@ def _execute(self, options, args):
9595
if name is None and not listing:
9696
LOGGER.error("This command needs either a theme name or the -l option.")
9797
return False
98-
data = requests.get(url).text
99-
data = json.loads(data)
98+
try:
99+
data = requests.get(url).json()
100+
except requests.exceptions.SSLError:
101+
LOGGER.warning("SSL error, using http instead of https")
102+
url = url.replace('http', 'https', 1)
103+
data = requests.get(url).json()
100104
if listing:
101105
print("Themes:")
102106
print("-------")
@@ -124,9 +128,17 @@ def _execute(self, options, args):
124128
def do_install(self, name, data):
125129
if name in data:
126130
utils.makedirs(self.output_dir)
127-
LOGGER.info("Downloading '{0}'".format(data[name]))
131+
url = data[name]
132+
LOGGER.info("Downloading '{0}'".format(url))
133+
try:
134+
zip_data = requests.get(url).content
135+
except requests.exceptions.SSLError:
136+
LOGGER.warning("SSL error, using http instead of https")
137+
url = url.replace('http', 'https', 1)
138+
zip_data = requests.get(url).content
139+
128140
zip_file = io.BytesIO()
129-
zip_file.write(requests.get(data[name]).content)
141+
zip_file.write(zip_data)
130142
LOGGER.info("Extracting '{0}' into themes/".format(name))
131143
utils.extract_all(zip_file)
132144
dest_path = os.path.join(self.output_dir, name)

‎nikola/plugins/command/plugin.py

+16-3
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,17 @@ def do_install(self, url, name, show_install_notes=True):
209209
data = self.get_json(url)
210210
if name in data:
211211
utils.makedirs(self.output_dir)
212-
LOGGER.info('Downloading: ' + data[name])
212+
url = data[name]
213+
LOGGER.info("Downloading '{0}'".format(url))
214+
try:
215+
zip_data = requests.get(url).content
216+
except requests.exceptions.SSLError:
217+
LOGGER.warning("SSL error, using http instead of https")
218+
url = url.replace('http', 'https', 1)
219+
zip_data = requests.get(url).content
220+
213221
zip_file = io.BytesIO()
214-
zip_file.write(requests.get(data[name]).content)
222+
zip_file.write(zip_data)
215223
LOGGER.info('Extracting: {0} into {1}/'.format(name, self.output_dir))
216224
utils.extract_all(zip_file, self.output_dir)
217225
dest_path = os.path.join(self.output_dir, name)
@@ -296,5 +304,10 @@ def do_uninstall(self, name):
296304

297305
def get_json(self, url):
298306
if self.json is None:
299-
self.json = requests.get(url).json()
307+
try:
308+
self.json = requests.get(url).json()
309+
except requests.exceptions.SSLError:
310+
LOGGER.warning("SSL error, using http instead of https")
311+
url = url.replace('http', 'https', 1)
312+
self.json = requests.get(url).json()
300313
return self.json

0 commit comments

Comments
 (0)
Please sign in to comment.