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
|
# Copyright 2012-2017 Facundo Batista
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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/>.
#
# For further info, check https://launchpad.net/encuentro
"""A couple of helpers for server stuff."""
import bz2
import pickle
import cgi
import json
import os
import re
import time
from urllib import parse
from urllib.error import HTTPError
UNIQUE_ID_SEPARATOR = '--'
def save_file(basename, data):
"""Save file to disk, dumping the data."""
# encode and compress
info = json.dumps(data)
info = bz2.compress(info.encode('ascii'))
# dump it
tmpname = basename + ".tmp"
bz2name = basename + ".bz2"
with open(tmpname, "wb") as fh:
fh.write(info)
os.rename(tmpname, bz2name)
def _weird_utf8_fixing(byteseq):
"""Clean non-utf8 elements and decode.
Receive bytes, return unicode.
"""
tmp = []
consume = 0
for i, c in enumerate(byteseq):
if consume:
consume -= 1
continue
if c <= 127: # 0... ....
tmp.append(c)
elif 192 <= c <= 223: # 110. ....
n = byteseq[i + 1]
if 128 <= n <= 191:
# second byte ok
tmp.append(c)
tmp.append(n)
consume = 1
else:
ValueError("Unsupported fixing sequence.")
result = bytes(tmp).decode("utf8")
return result
def sanitize(html):
"""Sanitize html."""
# try to decode in utf8, otherwise try in cp1252
try:
html = html.decode("utf8")
except UnicodeDecodeError:
try:
html = html.decode("cp1252")
except UnicodeDecodeError:
html = _weird_utf8_fixing(html)
# remove script stuff
html = re.sub("<script.*?</script>", "", html, flags=re.S)
return html
class Cache(object):
"""An automatic caché in disk."""
def __init__(self, fname):
self.fname = fname
if os.path.exists(fname):
with open(fname, "rb") as fh:
self.db = pickle.load(fh)
else:
self.db = {}
def get(self, key):
"""Return a value in the DB."""
return self.db[key]
def set(self, key, value):
"""Set a value to the DB."""
self.db[key] = value
temp = self.fname + ".tmp"
with open(temp, "wb") as fh:
pickle.dump(self.db, fh)
os.rename(temp, self.fname)
def retryable(logger):
"""Decorator generator."""
def decorator(func):
"""Decorator to retry functions."""
def _f(*args, **kwargs):
"""Retryable function."""
for attempt in range(5, -1, -1): # if reaches 0: no more attempts
try:
res = func(*args, **kwargs)
except Exception as e:
if isinstance(e, HTTPError) and e.code // 100 == 4:
raise
if not attempt:
raise
logger.debug(" problem (retrying...): %s", e)
time.sleep(30)
else:
return res
return _f
return decorator
def get_url_param(url, param):
"""Get the value of the param in the url."""
return cgi.parse_qs(parse.urlparse(url).query)[param][0]
def clean_html(text):
"""Clean HTML structures from the text."""
text = re.sub("<.*?>", "", text)
text = text.replace(" ", "")
return text.strip()
def enhance_number(text):
"""Enhance the number of a title, if any."""
# check "cap" version first
m = re.match("Cap. *(\d+)(.*)", text)
if m:
number, rest = m.groups()
number = int(number)
if rest:
text = "%02d. %s" % (number, rest.strip())
else:
text = "CapĂtulo %02d" % (number,)
return text
parts = text.split("-", 1)
if len(parts) != 2:
return text
maybe_number, rest = parts
try:
number = int(maybe_number)
except ValueError:
return text
text = "%02d. %s" % (number, rest.strip())
return text
def get_unique_id(prev_id, all_ids):
"""Fake an ID using a separator and a number for it to be unique."""
if UNIQUE_ID_SEPARATOR in prev_id:
p1, p2 = prev_id.split(UNIQUE_ID_SEPARATOR)
base_id = p1
prev_number = int(p2)
else:
prev_number = 0
base_id = prev_id
while prev_id in all_ids:
prev_number += 1
prev_id = base_id + UNIQUE_ID_SEPARATOR + str(prev_number)
return prev_id
|