Giter VIP home page Giter VIP logo

Comments (5)

asvetlov avatar asvetlov commented on May 12, 2024

But how it works with aiohttp_session.get_session(request)?

from aiohttp-session.

machakux avatar machakux commented on May 12, 2024

It won't work with the current aiohttp_session.get_session right now because aiohttp_session.get_session requires aiohttp.web.Request object for retriving session key and storage instance .

I think some of possible solutions to this are

  • Modifying aiohttp_session.get_session to accept either a request or session key and storage instance
  • Creating an independent helper function for getting session instance from session key and storage instance. In this case the new function may also be reused by aiohttp_session.get_session
  • Using storage.load_session('<YOUR_SESSION_KEY>') directly from storage instance to get a session instance

from aiohttp-session.

asvetlov avatar asvetlov commented on May 12, 2024

The key idea for the project is setting up the session storage by setup() and getting session by unified get_session() call regardless to exact storage implementation.

You can implement own RedisCookielessStorage with overriding load_session(request) and save_session(request, response, session). Just don't touch cookies.

But using the library without request/response is out of the project mission and looks like leaked abstraction. I see no reason for supporting the feature by the library. But you could make a custom storage on your own, isn't it?

from aiohttp-session.

machakux avatar machakux commented on May 12, 2024

Ok ... Creating a custom session storage by deriving from AbstractStorage or even by using a plain python client for redis is not very difficult.

If cookieless sessions or using aiohttp_session with other frameworks aside from aiohttp.web is out of project scope I think this issue can be closed.

from aiohttp-session.

asvetlov avatar asvetlov commented on May 12, 2024

The project is called atiohttp-session at least, it is intended to work with aiohttp.web ;)

from aiohttp-session.

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.