forked from hforge/ikaaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
368 lines (293 loc) · 11.2 KB
/
utils.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# -*- coding: UTF-8 -*-
# Copyright (C) 2007 Hervé Cauwelier <[email protected]>
# Copyright (C) 2007 Nicolas Deram <[email protected]>
# Copyright (C) 2007-2008 Juan David Ibáñez Palomar <[email protected]>
#
# 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 from the Standard Library
from hashlib import sha1, sha256
from random import sample
# Import from other modules
try:
import tidy
except ImportError:
tidy = None
# Import from itools
from itools.database import AllQuery, AndQuery, PhraseQuery, OrQuery
from itools.database import RangeQuery
from itools.datatypes import Unicode
from itools.handlers import checkid
from itools.html import HTMLParser, stream_to_str_as_xhtml
from itools.stl import STLTemplate, stl_namespaces
from itools.uri import get_reference, Reference
from itools.web import get_context
from itools.xml import XMLParser
###########################################################################
# CMS Template
###########################################################################
def make_stl_template(data):
return list(XMLParser(data, stl_namespaces))
class CMSTemplate(STLTemplate):
template = None
def get_template(self):
# Get the template
template = self.template
if template is None:
msg = "%s is missing the 'template' variable"
raise NotImplementedError, msg % repr(self)
# Case 1: a ready made list of events
if type(template) is list:
return template
# Case 2: a path to a template in the filesystem (ui)
if type(template) is str:
handler = get_context().get_template(template)
return handler.events
raise ValueError, 'bad value for the template attribute'
###########################################################################
# Navigation helper functions
###########################################################################
def get_parameters(prefix, **kw):
"""Gets the parameters from the request form, the keyword argument
specifies which are the parameters to get and which are their default
values.
The prefix argument lets to create different namespaces for the
parameters, so the same page web can have different sections with
different but equivalent parameters.
For example, call it like:
get_parameters('resources', sortby='id', sortorder='up')
"""
# Get the form field from the request (a zope idiom)
get_parameter = get_context().get_form_value
# Get the parameters
parameters = {}
for key, value in kw.items():
parameters[key] = get_parameter('%s_%s' % (prefix, key),
default=value)
return parameters
###########################################################################
# Languages
###########################################################################
# Mark for translatios
u'Basque'
u'Catalan'
u'English'
u'French'
u'German'
u'Hungarian'
u'Italian'
u'Japanese'
u'Portuguese'
u'Spanish'
###########################################################################
# String format for display
###########################################################################
def reduce_string(title='', word_treshold=15, phrase_treshold=40):
"""Reduce words and string size.
"""
ellipsis = u'…' if type(title) is unicode else '…'
words = title.strip().split(' ')
for i, word in enumerate(words):
if len(word) > word_treshold:
words.pop(i)
word = word[:word_treshold] + ellipsis
words.insert(i, word)
title = ' '.join(words)
if len(title) > phrase_treshold:
# Remove right trailling whitespaces
title = title[:phrase_treshold - 1].rstrip()
# Only add ellipsis if the last word does not already
# end with one
if title[-1] != ellipsis:
title += ellipsis
return title
encodings = ['utf-8', 'windows-1252', 'cp437']
def process_name(name):
for encoding in encodings:
try:
title = unicode(name, encoding)
checkid_name = checkid(title, soft=False)
break
except UnicodeError:
pass
else:
raise ValueError, name
if checkid_name is None:
raise ValueError, name
# Ok
return checkid_name, title
###########################################################################
# Tidy HTML
###########################################################################
encodings = ['utf-8', 'windows-1252', 'cp437']
def to_utf8(data):
for encoding in encodings:
try:
return unicode(data, encoding).encode('utf-8')
except UnicodeError:
pass
raise UnicodeError, 'unable to find out encoding'
def tidy_html(body):
if tidy:
body = to_utf8(body)
body = tidy.parseString(body, indent=1, char_encoding='utf8',
output_xhtml=1, word_2000=1)
body = str(body)
return stream_to_str_as_xhtml(HTMLParser(body))
###########################################################################
# User and Authentication
###########################################################################
# ASCII letters and digits, except the characters: 0, O, 1, l
tokens = 'abcdefghijkmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ23456789'
def generate_password(length=6):
return ''.join(sample(tokens, length))
algos = {
'sha1': sha1,
'sha256': sha256}
def get_secure_hash(password, algo, salt=None):
if salt is None:
salt = generate_password()
return algos[algo](password + salt).digest(), salt
###########################################################################
# Generate next name
###########################################################################
def generate_name(name, used, suffix='_'):
"""Generate a name which is not in list "used" based on name and suffix.
Example:
With name='toto.txt', used=['toto.txt', 'toto_0.txt']
--> toto.txt and toto_0.txt are used so it returns toto_1.txt
With name='toto.txt', used=['toto.txt', 'toto_0.txt'], suffix='_copy_'
--> toto.txt is used so it returns toto_copy_0.txt
"""
if name not in used:
return name
items = name.split('.', 1)
basename = items[0]
extent = ''
if len(items) > 1:
extent = '.%s' % items[1]
# 1st time called
if suffix not in basename:
index = 0
else:
basename, index = basename.rsplit(suffix, 1)
try:
index = int(index) + 1
except ValueError:
basename = '%s%s%s' % (basename, suffix, index)
index = 0
name = ''.join([basename, suffix, str(index), extent])
while name in used:
index += 1
name = ''.join([basename, suffix, str(index), extent])
return str(name)
###########################################################################
# Index and Search
###########################################################################
def get_base_path_query(path, min_depth=1, max_depth=None):
"""Builds a query that will return all the objects within the given
absolute path, like it is returned by 'resource.abspath'.
The minimum and maximum depth parameters are relative to the given path:
- If the minimum depth is zero it means include the container
- If the maximum depth is None it means unlimited.
"""
# Preprocess input data
if type(path) is not str:
path = str(path)
if max_depth is not None and max_depth < min_depth:
err = 'maximum depth (%d) smaller than minimum depth (%d)'
raise ValueError, err % (max_depth, min_depth)
# Special case: everything
if path == '/' and min_depth == 0 and max_depth is None:
return AllQuery()
# Special case: just the given path
if min_depth == 0 and max_depth == 0:
return PhraseQuery('abspath', path)
# Standard case
query = PhraseQuery('parent_paths', path)
if min_depth > 1 or max_depth is not None:
path_depth = path.rstrip('/').count('/')
a = path_depth + min_depth
b = path_depth + max_depth if max_depth is not None else None
query = AndQuery(query, RangeQuery('abspath_depth', a, b))
if min_depth == 0:
return OrQuery(query, PhraseQuery('abspath', path))
return query
###########################################################################
# Used by the add-form
###########################################################################
def get_content_containers(context, class_id=None):
query = AndQuery(
PhraseQuery('base_classes', 'folder'),
PhraseQuery('is_content', True))
root = context.root
for container in context.search(query).get_resources():
if not root.has_permission(context.user, 'add', container, class_id):
continue
if class_id is None:
yield container
continue
for cls in container.get_document_types():
if class_id == cls.class_id:
yield container
break
###########################################################################
# Used by *_links and menu
###########################################################################
def split_reference(ref):
"""Return the reference associated to the path, the path and the optional
view without query/fragment.
ref: Reference
path: Path
view: string
"""
# XXX specific case for the menu
# Be robust if the path is multilingual
type_ref = type(ref)
if type_ref is unicode:
ref = Unicode.encode(ref)
if type_ref is not Reference:
ref = get_reference(ref)
# Split path and view
path = ref.path
view = ''
name = path.get_name()
# Strip the view
if name and name[0] == ';':
view = '/' + name
path = path[:-1]
return ref, path, view
###########################################################################
# Fancy box (javascript)
###########################################################################
_close_fancybox = """
<html>
<head>
<script src="/ui/jquery.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() { parent.$.fancybox.close(); });
</script>
</body>
</html>
"""
def close_fancybox(context, default=None):
# Case 1: fancybox
fancybox = context.get_query_value('fancybox')
if fancybox:
context.set_content_type('text/html')
return _close_fancybox
# Case 2: normal
goto = context.get_form_value('referrer') or default
return get_reference(goto) if type(goto) is str else goto