"""CherryPy tools. A "tool" is any helper, adapted to CP. Tools are usually designed to be used in a variety of ways (although some may only offer one if they choose): Library calls: all tools are callables that can be used wherever needed. The arguments are straightforward and should be detailed within the docstring. Function decorators: All tools, when called, may be used as decorators which configure individual CherryPy page handlers (methods on the CherryPy tree). That is, "@tools.anytool()" should "turn on" the tool via the decorated function's _cp_config attribute. CherryPy hooks: "hooks" are points in the CherryPy request-handling process which may hand off control to registered callbacks. The Request object possesses a "hooks" attribute (a HookMap) for manipulating this. If a tool exposes a "_setup" callable, it will be called once per Request (if the feature is "turned on" via config). Tools may be implemented as any object with a namespace. The builtins are generally either modules or instances of the tools.Tool class. """ import cherrypy def setargs(obj, func): """Copy func parameter names to obj attributes.""" try: import inspect for arg in inspect.getargspec(func)[0]: setattr(obj, arg, None) except (ImportError, AttributeError): pass class Tool(object): """A registered function for use with CherryPy request-processing hooks. help(tool.callable) should give you more information about this Tool. """ def __init__(self, point, callable, name=None): self._point = point self.callable = callable self._name = name self.__doc__ = self.callable.__doc__ setargs(self, callable) def _merged_args(self, d=None): tm = cherrypy.request.toolmap if self._name in tm: conf = tm[self._name].copy() else: conf = {} if d: conf.update(d) if "on" in conf: del conf["on"] return conf def __call__(self, *args, **kwargs): """Compile-time decorator (turn on the tool in config). For example: @tools.proxy() def whats_my_base(self): return cherrypy.request.base whats_my_base.exposed = True """ if args: raise TypeError("The %r Tool does not accept positional " "arguments; you must use keyword arguments." % self._name) def wrapper(f): if not hasattr(f, "_cp_config"): f._cp_config = {} f._cp_config["tools." + self._name + ".on"] = True for k, v in kwargs.iteritems(): f._cp_config["tools." + self._name + "." + k] = v return f return wrapper def _setup(self): """Hook this tool into cherrypy.request. The standard CherryPy request object will automatically call this method when the tool is "turned on" in config. """ conf = self._merged_args() cherrypy.request.hooks.attach(self._point, self.callable, conf) class MainTool(Tool): """Tool which is called 'before main', that may skip normal handlers. The callable provided should return True if processing should skip the normal page handler, and False if it should not. """ def __init__(self, callable, name=None): Tool.__init__(self, 'before_main', callable, name) def handler(self, *args, **kwargs): """Use this tool as a CherryPy page handler. For example: class Root: nav = tools.staticdir.handler(section="/nav", dir="nav", root=absDir) """ def wrapper(*a, **kw): handled = self.callable(*args, **self._merged_args(kwargs)) if not handled: raise cherrypy.NotFound() return cherrypy.response.body wrapper.exposed = True return wrapper def _wrapper(self): if self.callable(**self._merged_args()): cherrypy.request.handler = None def _setup(self): """Hook this tool into cherrypy.request. The standard CherryPy request object will automatically call this method when the tool is "turned on" in config. """ # Don't pass conf (or our wrapper will get wrapped!) cherrypy.request.hooks.attach(self._point, self._wrapper) class ErrorTool(Tool): """Tool which is used to replace the default request.error_response.""" def __init__(self, callable, name=None): Tool.__init__(self, None, callable, name) def _wrapper(self): self.callable(**self._merged_args()) def _setup(self): """Hook this tool into cherrypy.request. The standard CherryPy request object will automatically call this method when the tool is "turned on" in config. """ cherrypy.request.error_response = self._wrapper # Builtin tools # from cherrypy.lib import cptools, encoding, static, tidy from cherrypy.lib import sessions as _sessions, xmlrpc as _xmlrpc from cherrypy.lib import caching as _caching, wsgiapp as _wsgiapp class SessionTool(Tool): """Session Tool for CherryPy.""" def _setup(self): """Hook this tool into cherrypy.request using the given conf. The standard CherryPy request object will automatically call this method when the tool is "turned on" in config. """ Tool._setup(self) cherrypy.request.hooks.attach('before_finalize', _sessions.save) cherrypy.request.hooks.attach('on_end_request', _sessions.close) class XMLRPCController(object): _cp_config = {'tools.xmlrpc.on': True} def __call__(self, *vpath, **params): rpcparams, rpcmethod = _xmlrpc.process_body() subhandler = self for attr in str(rpcmethod).split('.'): subhandler = getattr(subhandler, attr, None) if subhandler and getattr(subhandler, "exposed", False): body = subhandler(*(vpath + rpcparams), **params) else: # http://www.cherrypy.org/ticket/533 # if a method is not found, an xmlrpclib.Fault should be returned # raising an exception here will do that; see # cherrypy.lib.xmlrpc.on_error raise Exception, 'method "%s" is not supported' % attr conf = cherrypy.request.toolmap.get("xmlrpc", {}) _xmlrpc.respond(body, conf.get('encoding', 'utf-8'), conf.get('allow_none', 0)) return cherrypy.response.body __call__.exposed = True index = __call__ class XMLRPCTool(object): """Tool for using XMLRPC over HTTP. Python's None value cannot be used in standard XML-RPC; to allow using it via an extension, provide a true value for allow_none. """ def _setup(self): """Hook this tool into cherrypy.request using the given conf.""" request = cherrypy.request # Guard against running this method twice. if hasattr(request, 'xmlrpc'): return request.xmlrpc = True request.error_response = _xmlrpc.on_error path_info = request.path_info ppath = _xmlrpc.patched_path(path_info) if ppath != path_info: raise cherrypy.InternalRedirect(ppath) class WSGIAppTool(MainTool): """A tool for running any WSGI middleware/application within CP. Here are the parameters: wsgi_app - any wsgi application callable env_update - a dictionary with arbitrary keys and values to be merged with the WSGI environment dictionary. Example: class Whatever: _cp_config = {'tools.wsgiapp.on': True, 'tools.wsgiapp.app': some_app, 'tools.wsgiapp.env': app_environ, } """ def _setup(self): # Keep request body intact so the wsgi app can have its way with it. cherrypy.request.process_request_body = False MainTool._setup(self) class CachingTool: """Caching Tool for CherryPy.""" def __init__(self): self._setup = _caching._setup self.__call__ = _caching.enable class Toolbox(object): """A collection of Tools.""" def __setattr__(self, name, value): # If the Tool._name is None, supply it from the attribute name. if isinstance(value, Tool): if value._name is None: value._name = name object.__setattr__(self, name, value) default_toolbox = Toolbox() default_toolbox.session_auth = MainTool(cptools.session_auth) default_toolbox.proxy = Tool('before_request_body', cptools.proxy) default_toolbox.response_headers = Tool('on_start_resource', cptools.response_headers) # We can't call virtual_host in on_start_resource, # because it's failsafe and the redirect would be swallowed. default_toolbox.virtual_host = Tool('before_request_body', cptools.virtual_host) default_toolbox.log_tracebacks = Tool('before_error_response', cptools.log_traceback) default_toolbox.log_headers = Tool('before_error_response', cptools.log_request_headers) default_toolbox.err_redirect = ErrorTool(cptools.redirect) default_toolbox.etags = Tool('before_finalize', cptools.validate_etags) default_toolbox.decode = Tool('before_main', encoding.decode) default_toolbox.encode = Tool('before_finalize', encoding.encode) default_toolbox.gzip = Tool('before_finalize', encoding.gzip) default_toolbox.staticdir = MainTool(static.staticdir) default_toolbox.staticfile = MainTool(static.staticfile) # _sessions.init must be bound after headers are read default_toolbox.sessions = SessionTool('before_request_body', _sessions.init) default_toolbox.xmlrpc = XMLRPCTool() default_toolbox.wsgiapp = WSGIAppTool(_wsgiapp.run) default_toolbox.caching = CachingTool() default_toolbox.expires = Tool('before_finalize', _caching.expires) default_toolbox.tidy = Tool('before_finalize', tidy.tidy) default_toolbox.nsgmls = Tool('before_finalize', tidy.nsgmls) del cptools, encoding, static, tidy