Sha256: b715765665d22f382ca26dd67e974deb6eaba72f4aa31dee28d3f5f65d9345a4

Contents?: true

Size: 1.54 KB

Versions: 3

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module Osso
  module GraphQL
    module Mutations
      class CreateIdentityProvider < BaseMutation
        null false

        argument :enterprise_account_id, ID, required: true
        argument :service, Types::IdentityProviderService, required: false
        argument :oauth_client_id, String, required: true

        field :identity_provider, Types::IdentityProvider, null: false
        field :errors, [String], null: false

        def resolve(enterprise_account_id:, oauth_client_id:, service: nil)
          customer = enterprise_account(enterprise_account_id: enterprise_account_id)

          identity_provider = customer.identity_providers.build(
            service: service,
            domain: customer.domain,
            oauth_client_id: oauth_client_id,
          )

          if identity_provider.save
            Osso::Analytics.capture(email: context[:email], event: self.class.name.demodulize, properties: {
              service: service, enterprise_account_id: enterprise_account_id, oauth_client_id: oauth_client_id
            })
            return response_data(identity_provider: identity_provider)
          end

          response_error(identity_provider.errors)
        end

        def domain(enterprise_account_id:, **_args)
          enterprise_account(enterprise_account_id: enterprise_account_id)&.domain
        end

        def enterprise_account(enterprise_account_id:)
          @enterprise_account ||= Osso::Models::EnterpriseAccount.find(enterprise_account_id)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
osso-0.1.2 lib/osso/graphql/mutations/create_identity_provider.rb
osso-0.1.1 lib/osso/graphql/mutations/create_identity_provider.rb
osso-0.1.0 lib/osso/graphql/mutations/create_identity_provider.rb