Git Product home page Git Product logo

Comments (4)

jordaneremieff avatar jordaneremieff commented on July 4, 2024

Thinking about this a bit more, what may be most important, at least for my understanding, is determining a potential view pattern. From what I can gather looking at the CORS extensions for other projects (including both WSGI and asyncio) is that they generally assume some application-level configuration but also that a wrapped application will return a mutable response.

I can potentially see how to implement generic CORS behavior for Starlette in a similar way if I base it around something like the pattern proposed in #35, but I haven't thought of an alternative as of yet.

from starlette.

jordaneremieff avatar jordaneremieff commented on July 4, 2024

Following up on the last comment, I've realized that theasgi_application method may be all that is necessary for implementing this behavior. I'm going to close this in favor of using the views issue for any further discussion on this #27 since it seems mostly related to that rather than CORS support specifically.

from starlette.

tomchristie avatar tomchristie commented on July 4, 2024

but enabling CORS support would require altering the response class headers which cannot be accomplished simply by wrapping the ASGI app at this point.

Right - response middleware is more awkward that request middleware, because you need to wrap the send callable that gets passed to the application. If you do that then you can intercept the outgoing response, and modify the headers.

I'd far prefer that we implement CORS in middleware, than as part of a view pattern.

from starlette.

tomchristie avatar tomchristie commented on July 4, 2024

Here's one kinda pattern that I think would work...

class CORSMiddleware:
    def __init__(self, app):
        self.app = app

    def __call__(self, scope):
        return functools.partial(self.handler, scope=scope)

    async def handler(self, receive, send, scope=None):
        sender = functools.partial(self.sender, send=send)
        inner = self.app(scope)
        await inner(receive, sender)

    async def sender(message, send=None):
        if message['type'] == 'http.response':
            headers = Headers(message['headers'])
            headers['...'] = '...'
        await send(message)

from starlette.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.