Sha256: ee923a9d17fa4b4cb76cf4952a4a4610b4afedf5fab76c4517590c4df23a9b59

Contents?: true

Size: 1.01 KB

Versions: 13

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

module Shimmer
  module Auth
    class AppleProvider < Provider
      self.token_column = :apple_id

      private

      def request_details(params)
        name = params[:user] ? JSON.parse(params[:user])["name"] : {}
        headers = {
          "Content-Type": "application/x-www-form-urlencoded"
        }
        form = {
          grant_type: "authorization_code",
          code: params[:code],
          client_id: Config.instance.apple_bundle_id!,
          client_secret: Config.instance.apple_client_secret,
          scope: "name email"
        }
        response = HTTParty.post("https://appleid.apple.com/auth/token", body: URI.encode_www_form(form), headers: headers)
        raise InvalidTokenError, "Login check failed: #{response.body}" unless response.ok?

        token = JWT.decode(response["id_token"], nil, false).first
        UserDetails.new token: token["sub"], email: token["email"], first_name: name["firstName"], last_name: name["lastName"]
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
shimmer-0.0.41 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.40 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.39 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.38 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.37 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.36 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.35 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.34 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.33 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.32 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.31 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.30 lib/shimmer/auth/apple_provider.rb
shimmer-0.0.29 lib/shimmer/auth/apple_provider.rb