summaryrefslogtreecommitdiff
path: root/app/controllers/google_api/authorizations_controller.rb
blob: 5551057ff55cb9dada5d5dc210f8c42078b81062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module GoogleApi
  class AuthorizationsController < ApplicationController
    def callback
      token, expires_at = GoogleApi::CloudPlatform::Client
        .new(nil, callback_google_api_auth_url)
        .get_token(params[:code])

      session[GoogleApi::CloudPlatform::Client.session_key_for_token] = token
      session[GoogleApi::CloudPlatform::Client.session_key_for_expires_at] =
        expires_at.to_s

      state_redirect_uri = redirect_uri_from_session_key(params[:state])

      if state_redirect_uri
        redirect_to state_redirect_uri
      else
        redirect_to root_path
      end
    end

    private

    def redirect_uri_from_session_key(state)
      key = GoogleApi::CloudPlatform::Client
        .session_key_for_redirect_uri(params[:state])
      session[key] if key
    end
  end
end