-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use with devise_token_auth and change_headers_on_each_request config #36
Comments
my solution for now is to add a decorator on the # app/decorators/controllers/graphiql/rails/editors_controller_decorator.rb
module GraphiQLRailsEditorsControllerDecorator
def self.prepended(base)
base.prepend_before_action :authenticate, if: -> { !Rails.env.development? }
base.prepend_before_action :set_auth_headers, only: :show
end
protected
def authenticate
http_basic_authenticate_with name: ENV["HBA_LOGIN"], password: ENV["HBA_PASSWORD"]
end
def set_auth_headers
user = User.find_by_email(params[:email])
if user.present?
user_auth_token = user.create_new_auth_token
GraphiQL::Rails.config.headers['access-token'] = -> (context) { user_auth_token['access-token'] }
GraphiQL::Rails.config.headers['token-type'] = -> (context) { user_auth_token['token-type'] }
GraphiQL::Rails.config.headers['client'] = -> (context) { user_auth_token['client'] }
GraphiQL::Rails.config.headers['expiry'] = -> (context) { user_auth_token['expiry'] }
GraphiQL::Rails.config.headers['uid'] = -> (context) { user_auth_token['uid'] }
end
end
end
GraphiQL::Rails::EditorsController.send :prepend, GraphiQLRailsEditorsControllerDecorator |
Hi there! Could you give me more details about your implementation? I'm trying to do the same thing so I can always get my user automatically authenticated while testing graphiql. Thank you! |
Could you give more info like an example or something? |
Hi @codingwaysarg and @abdul-shajin, I use |
Is this ever going to be merged in or do we fork? |
Hi @bricesanchez, It is an old post but I think this will be a solution for me as well. I am not sure how to use this module with Rails 6 and graphiql-rails 1.7 though... I tried to put in Then added it under Any help is welcome 😄 Thank you! |
Hi @rmosolgo !
Thanks for your awesome job on GraphQL!
I'm trying to use GraphiQL rails with
devise_token_auth
gem and with have thechange_headers_on_each_request
option set to true. So i can't define theheaders
in the initializer like this :GraphiQL::Rails.config.headers.merge! User.first.create_new_auth_token
Where could i define this config to be refreshed on every request?
The text was updated successfully, but these errors were encountered: