Giter VIP home page Giter VIP logo

Comments (8)

gtarsia avatar gtarsia commented on June 4, 2024 4

Just to clarify to others, while the normal version is:

     def find_verified_user
       if verified_user = env['warden'].user
         verified_user
       else
         reject_unauthorized_connection
       end
     end

This new version will be:

     def find_verified_user
       env['rack.session'] = cookies.encrypted[:_my_app_session]
       if verified_user = Warden::SessionSerializer.new(env).fetch(:user)
         verified_user
       else
         reject_unauthorized_connection
       end
     end

Replace the my_app in _my_app_session with your apps name.

from anycable-rails.

Vasfed avatar Vasfed commented on June 4, 2024 2

App's session cookie name is in config, so more universal version would be:

    def find_verified_user
      env['rack.session'] = cookies.encrypted[Rails.application.config.session_options[:key] || raise("No cookies key in config")]
      if (verified_user = Warden::SessionSerializer.new(env).fetch(:user))
        verified_user
      else
        reject_unauthorized_connection
      end
    end

from anycable-rails.

dhirb avatar dhirb commented on June 4, 2024

Will appreciate if there is any documentation on warden emulation for anycable and rails 5.2.

from anycable-rails.

palkan avatar palkan commented on June 4, 2024

@yuenlye Check out this post by @alekseyl; there is an example snippet demonstrating how to get current_user (see "Minus Rack middleware" section).

from anycable-rails.

dhirb avatar dhirb commented on June 4, 2024

@palkan I checked that post but it looks like ActionDispatch::Cookies::EncryptedCookieJar is not available in rails 5.2. Do you know any alternative to that class?

from anycable-rails.

rus-max avatar rus-max commented on June 4, 2024

@yuenlye Maybe this post helps for you

from anycable-rails.

dhirb avatar dhirb commented on June 4, 2024

@palkan thank you that is exactly what I need :)

from anycable-rails.

palkan avatar palkan commented on June 4, 2024

See https://docs.anycable.io/#/using_with_rails?id=devise-authentication

from anycable-rails.

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.