pyramid_cubicweb/__init__.py
changeset 11484 39768d122f97
parent 11482 151b8a4b9f3f
child 11485 3905c9f06d0e
--- a/pyramid_cubicweb/__init__.py	Sun Jul 06 18:25:31 2014 +0200
+++ b/pyramid_cubicweb/__init__.py	Wed Jul 09 17:14:32 2014 +0200
@@ -1,6 +1,5 @@
 from cubicweb.web.request import CubicWebRequestBase
 from cubicweb.cwconfig import CubicWebConfiguration
-from cubicweb.web.application import CubicWebPublisher
 from cubicweb import repoapi
 
 import cubicweb
@@ -63,25 +62,6 @@
     status_out = property(_get_status_out, _set_status_out)
 
 
-class PyramidSessionHandler(object):
-    """A CW Session handler that rely on the pyramid API to fetch the needed
-    informations"""
-
-    def __init__(self, appli):
-        self.appli = appli
-
-    def get_session(self, req):
-        return req._request.cw_session
-
-    def logout(self, req, goto_url):
-        del req._request.session['cubicweb.sessionid']
-        if not req.session.closed:
-            req.session.repo.close(req.session.sessionid)
-        for name, value in security.forget(req._request):
-            req.headers_out.setHeader(name, value)
-        raise cubicweb.web.LogOut(url=goto_url)
-
-
 def render_view(request, vid, **kwargs):
     vreg = request.registry['cubicweb.registry']
     # XXX The select() function could, know how to handle a pyramid
@@ -128,22 +108,6 @@
     return response
 
 
-class CubicWebPyramidHandler(object):
-    def __init__(self, appli):
-        self.appli = appli
-
-    def __call__(self, request):
-        req = request.cw_request()
-        result = self.appli.handle_request(req, req.path)
-        if result is not None:
-            request.response.body = result
-        request.response.headers.clear()
-        for k, v in req.headers_out.getAllRawHeaders():
-            for item in v:
-                request.response.headers.add(k, item)
-        return request.response
-
-
 def _cw_cnx(request):
     # XXX We should not need to use the session. A temporary one should be
     # enough. (by using repoapi.connect())
@@ -250,15 +214,4 @@
     config.add_route('hello', '/hello')
     config.add_view(hello_world, route_name='hello')
 
-    # Set up a defaut route to handle non-catched urls.
-    # This is to keep legacy compatibility for cubes that makes use of the
-    # cubicweb controllers.
-    cwappli = CubicWebPublisher(
-        cwconfig.repository(), cwconfig,
-        session_handler_fact=PyramidSessionHandler)
-    handler = CubicWebPyramidHandler(cwappli)
-
-    config.registry['cubicweb.appli'] = cwappli
-    config.registry['cubicweb.handler'] = handler
-
-    config.add_notfound_view(handler)
+    config.include('pyramid_cubicweb.handler')