Skip to content
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

Honor dta auth cookie when using the schema plugin in a main rails project route #233

Merged
merged 4 commits into from
Aug 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def set_resource_by_token(resource)

def build_redirect_headers(access_token, client, redirect_header_options = {})
{
DeviseTokenAuth.headers_names[:"access-token"] => access_token,
DeviseTokenAuth.headers_names[:'access-token'] => access_token,
DeviseTokenAuth.headers_names[:client] => client,
:config => params[:config],
:client_id => client,
Expand Down
15 changes: 13 additions & 2 deletions lib/graphql_devise/concerns/controller_methods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,20 @@ def client
end
end

def set_auth_headers(resource)
def generate_auth_headers(resource)
auth_headers = resource.create_new_auth_token
response.headers.merge!(auth_headers)
controller.resource = resource
access_token_name = DeviseTokenAuth.headers_names[:'access-token']
client_name = DeviseTokenAuth.headers_names[:'client']

# NOTE: Depending on the DTA version, the token will be an object or nil
if controller.token
controller.token.client = auth_headers[client_name]
controller.token.token = auth_headers[access_token_name]
else
controller.client_id = auth_headers[client_name]
controller.token = auth_headers[access_token_name]
end

auth_headers
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def resolve(confirmation_token:)

response_payload = { authenticatable: resource }

response_payload[:credentials] = set_auth_headers(resource) if resource.active_for_authentication?
response_payload[:credentials] = generate_auth_headers(resource) if resource.active_for_authentication?

response_payload
else
Expand Down
2 changes: 1 addition & 1 deletion lib/graphql_devise/mutations/login.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def resolve(email:, password:)
raise_user_error(I18n.t('graphql_devise.sessions.bad_credentials'))
end

new_headers = set_auth_headers(resource)
new_headers = generate_auth_headers(resource)
controller.sign_in(:user, resource, store: false, bypass: false)

yield resource if block_given?
Expand Down
2 changes: 1 addition & 1 deletion lib/graphql_devise/mutations/register.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def resolve(confirm_url: nil, **attrs)

response_payload = { authenticatable: resource }

response_payload[:credentials] = set_auth_headers(resource) if resource.active_for_authentication?
response_payload[:credentials] = generate_auth_headers(resource) if resource.active_for_authentication?

response_payload
else
Expand Down
2 changes: 1 addition & 1 deletion lib/graphql_devise/mutations/update_password_with_token.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def resolve(reset_password_token:, **attrs)
yield resource if block_given?

response_payload = { authenticatable: resource }
response_payload[:credentials] = set_auth_headers(resource) if controller.signed_in?(resource_name)
response_payload[:credentials] = generate_auth_headers(resource) if controller.signed_in?(resource_name)

response_payload
else
Expand Down
1 change: 1 addition & 0 deletions spec/dummy/app/controllers/api/v1/graphql_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Api
module V1
class GraphqlController < ApplicationController
include GraphqlDevise::SetUserByToken
include ActionController::Cookies

def graphql
result = DummySchema.execute(params[:query], **execute_params(params))
Expand Down
34 changes: 34 additions & 0 deletions spec/requests/mutations/login_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,38 @@
)
end
end


if DeviseTokenAuth.respond_to?(:cookie_enabled)
context 'when using cookies for auth' do
let!(:user) { create(:user, :confirmed, password: password, email: 'vvega@wallaceinc.com') }
let(:email) { user.email }
let(:query) do
<<-GRAPHQL
mutation {
userLogin(
email: "#{email}",
password: "#{password}"
) {
authenticatable { email }
credentials { accessToken uid tokenType client expiry }
}
}
GRAPHQL
end

around do |example|
DeviseTokenAuth.cookie_enabled = true
example.run
DeviseTokenAuth.cookie_enabled = false
end

before { post_request('/api/v1/graphql') }

it 'honors DTA configuration of setting auth info in cookies' do
cookie = cookies.get_cookie('auth_cookie')
expect(JSON.parse(cookie.value).keys).to include(*%w[uid access-token client])
end
end
end
end