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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
import inspect
import types
from zope.configuration import xmlconfig
from zope.component import getSiteManager
from zope.component import queryUtility
import zope.configuration.config
from zope.configuration.exceptions import ConfigurationError
from zope.configuration.fields import GlobalObject
from zope.configuration.fields import Tokens
from zope.interface import Interface
from zope.interface import implements
from zope.schema import Bool
from zope.schema import TextLine
from repoze.bfg.interfaces import IRoutesMapper
from repoze.bfg.interfaces import IViewPermission
from repoze.bfg.interfaces import INotFoundAppFactory
from repoze.bfg.interfaces import INotFoundView
from repoze.bfg.interfaces import IForbiddenView
from repoze.bfg.interfaces import IAuthenticationPolicy
from repoze.bfg.interfaces import ISecurityPolicy
from repoze.bfg.interfaces import IView
from repoze.bfg.interfaces import IUnauthorizedAppFactory
from repoze.bfg.interfaces import ILogger
from repoze.bfg.request import DEFAULT_REQUEST_FACTORIES
from repoze.bfg.request import named_request_factories
from repoze.bfg.security import ViewPermissionFactory
from repoze.bfg.secpols import registerBBBAuthn
import martian
def handler(methodName, *args, **kwargs):
method = getattr(getSiteManager(), methodName)
method(*args, **kwargs)
def view(
_context,
permission=None,
for_=None,
view=None,
name="",
request_type=None,
route_name=None,
cacheable=True, # not used, here for b/w compat < 0.8
):
if not view:
raise ConfigurationError('"view" attribute was not specified')
if route_name is None:
request_factories = DEFAULT_REQUEST_FACTORIES
else:
try:
request_factories = _context.request_factories[route_name]
except KeyError:
raise ConfigurationError(
'Unknown route_name "%s". <route> definitions must be ordered '
'before the view definition which mentions the route\'s name '
'within ZCML (or before the "scan" directive is invoked '
'within a bfg_view decorator).' % route_name)
if request_type in request_factories:
request_type = request_factories[request_type]['interface']
else:
request_type = _context.resolve(request_type)
derived_view = derive_view(view)
if permission:
pfactory = ViewPermissionFactory(permission)
_context.action(
discriminator = ('permission', for_, name, request_type,
IViewPermission),
callable = handler,
args = ('registerAdapter',
pfactory, (for_, request_type), IViewPermission, name,
_context.info),
)
_context.action(
discriminator = ('view', for_, name, request_type, IView),
callable = handler,
args = ('registerAdapter',
derived_view, (for_, request_type), IView, name, _context.info),
)
def view_utility(_context, view, iface):
derived_view = derive_view(view)
_context.action(
discriminator = ('notfound_view',),
callable = handler,
args = ('registerUtility', derived_view, iface, '', _context.info),
)
def notfound(_context, view):
view_utility(_context, view, INotFoundView)
def forbidden(_context, view):
view_utility(_context, view, IForbiddenView)
def derive_view(view):
derived_view = view
if inspect.isclass(view):
# If the object we've located is a class, turn it into a
# function that operates like a Zope view (when it's invoked,
# construct an instance using 'context' and 'request' as
# position arguments, then immediately invoke the __call__
# method of the instance with no arguments; __call__ should
# return an IResponse).
if requestonly(view):
# its __init__ accepts only a single request argument,
# instead of both context and request
def _bfg_class_requestonly_view(context, request):
inst = view(request)
return inst()
derived_view = _bfg_class_requestonly_view
else:
# its __init__ accepts both context and request
def _bfg_class_view(context, request):
inst = view(context, request)
return inst()
derived_view = _bfg_class_view
elif requestonly(view):
# its __call__ accepts only a single request argument,
# instead of both context and request
def _bfg_requestonly_view(context, request):
return view(request)
derived_view = _bfg_requestonly_view
if derived_view is not view:
derived_view.__module__ = view.__module__
derived_view.__doc__ = view.__doc__
try:
derived_view.__name__ = view.__name__
except AttributeError:
derived_view.__name__ = repr(view)
return derived_view
def scan(_context, package, martian=martian):
# martian overrideable only for unit tests
module_grokker = martian.ModuleGrokker()
module_grokker.register(BFGViewFunctionGrokker())
martian.grok_dotted_name(package.__name__, grokker=module_grokker,
context=_context, exclude_filter=exclude)
class IRouteDirective(Interface):
""" The interface for the ``route`` ZCML directive
"""
name = TextLine(title=u'name', required=True)
path = TextLine(title=u'path', required=True)
view = GlobalObject(title=u'view', required=False)
view_for = GlobalObject(title=u'view_for', required=False)
permission = TextLine(title=u'permission', required=False)
factory = GlobalObject(title=u'context factory', required=False)
minimize = Bool(title=u'minimize', required=False)
encoding = TextLine(title=u'encoding', required=False)
static = Bool(title=u'static', required=False)
filter = GlobalObject(title=u'filter', required=False)
absolute = Bool(title=u'absolute', required=False)
member_name = TextLine(title=u'member_name', required=False)
collection_name = TextLine(title=u'collection_name', required=False)
request_type = TextLine(title=u'request_type', required=False)
condition_method = TextLine(title=u'condition_method', required=False)
condition_subdomain = TextLine(title=u'condition_subdomain', required=False)
condition_function = GlobalObject(title=u'condition_function',
required=False)
parent_member_name = TextLine(title=u'parent member_name', required=False)
parent_collection_name = TextLine(title=u'parent collection_name',
required=False)
explicit = Bool(title=u'explicit', required=False)
subdomains = Tokens(title=u'subdomains', required=False,
value_type=TextLine())
class Route(zope.configuration.config.GroupingContextDecorator):
""" Handle ``route`` ZCML directives
"""
view = None
view_for = None
permission = None
factory = None
minimize = True
encoding = None
static = False
filter = None
absolute = False
member_name = None
collection_name = None
condition_method = None
request_type = None
condition_subdomain = None
condition_function = None
parent_member_name = None
parent_collection_name = None
subdomains = None
explicit = False
implements(zope.configuration.config.IConfigurationContext,
IRouteDirective)
def __init__(self, context, path, name, **kw):
self.validate(**kw)
self.requirements = {} # mutated by subdirectives
self.context = context
self.path = path
self.name = name
self.__dict__.update(**kw)
def validate(self, **kw):
parent_member_name = kw.get('parent_member_name')
parent_collection_name = kw.get('parent_collection_name')
if parent_member_name or parent_collection_name:
if not (parent_member_name and parent_collection_name):
raise ConfigurationError(
'parent_member_name and parent_collection_name must be '
'specified together')
def after(self):
context = self.context
name = self.name
if not hasattr(context, 'request_factories'):
context.request_factories = {}
context.request_factories[name] = named_request_factories(name)
if self.view:
view(context, self.permission, self.view_for, self.view, '',
self.request_type, name)
method = self.condition_method or self.request_type
self.context.action(
discriminator = ('route', self.name, repr(self.requirements),
method, self.condition_subdomain,
self.condition_function, self.subdomains),
callable = connect_route,
args = (self,),
)
def route_requirement(context, attr, expr):
route = context.context
if attr in route.requirements:
raise ValueError('Duplicate requirement', attr)
route.requirements[attr] = expr
def connect_route(directive):
mapper = queryUtility(IRoutesMapper)
if mapper is None:
return
args = [directive.name, directive.path]
kw = dict(requirements=directive.requirements)
if directive.minimize:
kw['_minimize'] = True
if directive.explicit:
kw['_explicit'] = True
if directive.encoding:
kw['_encoding'] = directive.encoding
if directive.static:
kw['_static'] = True
if directive.filter:
kw['_filter'] = directive.filter
if directive.absolute:
kw['_absolute'] = True
if directive.member_name:
kw['_member_name'] = directive.member_name
if directive.collection_name:
kw['_collection_name'] = directive.collection_name
if directive.parent_member_name and directive.parent_collection_name:
kw['_parent_resource'] = {
'member_name':directive.parent_member_name,
'collection_name':directive.parent_collection_name,
}
conditions = {}
# request_type and condition_method are aliases; condition_method
# "wins"
if directive.request_type:
conditions['method'] = directive.request_type
if directive.condition_method:
conditions['method'] = directive.condition_method
if directive.condition_subdomain:
conditions['sub_domain'] = directive.condition_subdomain
if directive.condition_function:
conditions['function'] = directive.condition_function
if directive.subdomains:
conditions['sub_domain'] = directive.subdomains
if conditions:
kw['conditions'] = conditions
result = mapper.connect(*args, **kw)
route = mapper.matchlist[-1]
route._factory = directive.factory
context = directive.context
route.request_factories = context.request_factories[directive.name]
return result
class IViewDirective(Interface):
for_ = GlobalObject(
title=u"The interface or class this view is for.",
required=False
)
permission = TextLine(
title=u"Permission",
description=u"The permission needed to use the view.",
required=False
)
view = GlobalObject(
title=u"",
description=u"The view function",
required=False,
)
name = TextLine(
title=u"The name of the view",
description=u"""
The name shows up in URLs/paths. For example 'foo' or
'foo.html'.""",
required=False,
)
request_type = TextLine(
title=u"The request type string or dotted name interface for the view",
description=(u"The view will be called if the interface represented by "
u"'request_type' is implemented by the request. The "
u"default request type is repoze.bfg.interfaces.IRequest"),
required=False
)
route_name = TextLine(
title = u'The route that must match for this view to be used',
required = False)
class INotFoundViewDirective(Interface):
view = GlobalObject(
title=u"",
description=u"The notfound view callable",
required=True,
)
class IForbiddenViewDirective(Interface):
view = GlobalObject(
title=u"",
description=u"The forbidden view callable",
required=True,
)
class IRouteRequirementDirective(Interface):
""" The interface for the ``requirement`` route subdirective """
attr = TextLine(title=u'attr', required=True)
expr = TextLine(title=u'expression', required=True)
class IScanDirective(Interface):
package = GlobalObject(
title=u"The package we'd like to scan.",
required=True,
)
def zcml_configure(name, package):
context = zope.configuration.config.ConfigurationMachine()
xmlconfig.registerCommonDirectives(context)
context.package = package
xmlconfig.include(context, name, package)
context.execute_actions(clear=False)
logger = queryUtility(ILogger, name='repoze.bfg.debug')
registry = getSiteManager()
# persistence means always having to say you're sorry
authentication_policy = registry.queryUtility(IAuthenticationPolicy)
if not authentication_policy:
# deal with bw compat of <= 0.8 security policies (deprecated)
secpol = registry.queryUtility(ISecurityPolicy)
if secpol is not None:
logger and logger.warn(
'Your application is using a repoze.bfg ``ISecurityPolicy`` '
'(probably registered via ZCML). This form of security policy '
'has been deprecated in BFG 0.9. See the "Security" chapter '
'of the repoze.bfg documentation to see how to register a more '
'up to date set of security policies (an authentication '
'policy and an authorization policy). ISecurityPolicy-based '
'security policies will cease to work in a later BFG '
'release.')
registerBBBAuthn(secpol, registry)
forbidden_view = registry.queryUtility(IForbiddenView)
unauthorized_app_factory = registry.queryUtility(IUnauthorizedAppFactory)
if unauthorized_app_factory is not None:
if forbidden_view is None:
warning = (
'Instead of registering a utility against the '
'repoze.bfg.interfaces.IUnauthorizedAppFactory interface '
'to return a custom forbidden response, you should now '
'use the "forbidden" ZCML directive.'
'The IUnauthorizedAppFactory interface was deprecated in '
'repoze.bfg 0.9 and will be removed in a subsequent version '
'of repoze.bfg. See the "Hooks" chapter of the repoze.bfg '
'documentation for more information about '
'the forbidden directive.')
logger and logger.warn(warning)
def forbidden(context, request):
app = unauthorized_app_factory()
response = request.get_response(app)
return response
registry.registerUtility(forbidden, IForbiddenView)
notfound_view = registry.queryUtility(INotFoundView)
notfound_app_factory = registry.queryUtility(INotFoundAppFactory)
if notfound_app_factory is not None:
if notfound_view is None:
warning = (
'Instead of registering a utility against the '
'repoze.bfg.interfaces.INotFoundAppFactory interface '
'to return a custom notfound response, you should use the '
'"notfound" ZCML directive. The '
'INotFoundAppFactory interface was deprecated in'
'repoze.bfg 0.9 and will be removed in a subsequent version '
'of repoze.bfg. See the "Hooks" chapter of the repoze.bfg '
'documentation for more information about '
'the "notfound" directive.')
logger and logger.warn(warning)
def notfound(context, request):
app = notfound_app_factory()
response = request.get_response(app)
return response
registry.registerUtility(notfound, INotFoundView)
return context.actions
file_configure = zcml_configure # backwards compat (>0.8.1)
class BFGViewFunctionGrokker(martian.InstanceGrokker):
martian.component(types.FunctionType)
def grok(self, name, obj, **kw):
if hasattr(obj, '__is_bfg_view__'):
permission = obj.__permission__
for_ = obj.__for__
name = obj.__view_name__
request_type = obj.__request_type__
route_name = obj.__route_name__
context = kw['context']
view(context, permission=permission, for_=for_,
view=obj, name=name, request_type=request_type,
route_name=route_name)
return True
return False
def exclude(name):
if name.startswith('.'):
return True
return False
def requestonly(class_or_callable):
""" Return true of the class or callable accepts only a request argument,
as opposed to something that accepts context, request """
if inspect.isfunction(class_or_callable):
fn = class_or_callable
elif inspect.isclass(class_or_callable):
try:
fn = class_or_callable.__init__
except AttributeError:
return False
else:
try:
fn = class_or_callable.__call__
except AttributeError:
return False
try:
argspec = inspect.getargspec(fn)
except TypeError:
return False
args = argspec[0]
defaults = argspec[3]
if hasattr(fn, 'im_func'):
# it's an instance method
if not args:
return False
args = args[1:]
if not args:
return False
if len(args) == 1:
return True
elif args[0] == 'request':
if len(args) - len(defaults) == 1:
return True
return False
class Uncacheable(object):
""" Include in discriminators of actions which are not cacheable;
this class only exists for backwards compatibility (<0.8.1)"""
|