############################################################################## # # Copyright (c) 2001, 2002 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """XMLRPC configuration code $Id: metaconfigure.py 67630 2006-04-27 00:54:03Z jim $ """ import zope.interface from zope.interface import Interface from zope.security.checker import CheckerPublic, Checker from zope.configuration.exceptions import ConfigurationError from zope.publisher.interfaces.xmlrpc import IXMLRPCRequest from zope.component.interface import provideInterface from zope.component.zcml import handler from zope.app.publisher.xmlrpc import MethodPublisher def view(_context, for_=None, interface=None, methods=None, class_=None, permission=None, name=None): interface = interface or [] methods = methods or [] # If there were special permission settings provided, then use them if permission == 'zope.Public': permission = CheckerPublic require = {} for attr_name in methods: require[attr_name] = permission if interface: for iface in interface: for field_name in iface: require[field_name] = permission _context.action( discriminator = None, callable = provideInterface, args = ('', for_) ) # Make sure that the class inherits MethodPublisher, so that the views # have a location if class_ is None: class_ = original_class = MethodPublisher else: original_class = class_ class_ = type(class_.__name__, (class_, MethodPublisher), {}) if name: # Register a single view if permission: checker = Checker(require) def proxyView(context, request, class_=class_, checker=checker): view = class_(context, request) # We need this in case the resource gets unwrapped and # needs to be rewrapped view.__Security_checker__ = checker return view class_ = proxyView class_.factory = original_class # Register the new view. _context.action( discriminator = ('view', for_, name, IXMLRPCRequest), callable = handler, args = ('registerAdapter', class_, (for_, IXMLRPCRequest), Interface, name, _context.info) ) else: if permission: checker = Checker({'__call__': permission}) else: checker = None for name in require: # create a new callable class with a security checker; cdict = {'__Security_checker__': checker, '__call__': getattr(class_, name)} new_class = type(class_.__name__, (class_,), cdict) _context.action( discriminator = ('view', for_, name, IXMLRPCRequest), callable = handler, args = ('registerAdapter', new_class, (for_, IXMLRPCRequest), Interface, name, _context.info) ) # Register the used interfaces with the site manager if for_ is not None: _context.action( discriminator = None, callable = provideInterface, args = ('', for_) )