Sha256: 364e46d435d0c5e54ce016138b288d99bf0d67cef0d1760ffc60c20c33513362

Contents?: true

Size: 1.63 KB

Versions: 320

Compression:

Stored size: 1.63 KB

Contents

module Spaceship
  module Tunes
    # Defines the different states of an in-app purchase
    #
    # As specified by Apple: https://developer.apple.com/library/content/documentation/LanguagesUtilities/Conceptual/iTunesConnectInAppPurchase_Guide/Chapters/WorkingWithYourProductsStatus.html
    module IAPStatus
      # IAP created, but missing screenshot/metadata
      MISSING_METADATA = "Missing Metadata"

      # You can edit the metadata, change screenshot and more. Need to submit.
      READY_TO_SUBMIT = "Ready to Submit"

      # Waiting for Apple's Review
      WAITING_FOR_REVIEW = "Waiting For Review"

      # Currently in Review
      IN_REVIEW = "In Review"

      # Approved (and currently available)
      APPROVED = "Approved"

      # Developer deleted
      DELETED = "Deleted"

      # In-app purchase rejected for whatever reason
      REJECTED = "Rejected"

      # The developer took the app from the App Store
      DEVELOPER_REMOVED_FROM_SALE = "Developer Removed From Sale"

      # Get the iap status matching based on a string (given by iTunes Connect)
      def self.get_from_string(text)
        mapping = {
          'missingMetadata' => MISSING_METADATA,
          'readyToSubmit' => READY_TO_SUBMIT,
          'waitingForReview' => WAITING_FOR_REVIEW,
          'inReview' => IN_REVIEW,
          'readyForSale' => APPROVED,
          'deleted' => DELETED,
          'rejected' => REJECTED,
          'developerRemovedFromSale' => DEVELOPER_REMOVED_FROM_SALE
        }

        mapping.each do |itc_status, readable_status|
          return readable_status if itc_status == text
        end

        return nil
      end
    end
  end
end

Version data entries

320 entries across 320 versions & 1 rubygems

Version Path
fastlane-2.98.0 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.97.0 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.1 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180521050117 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180520050019 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180519050103 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180518050116 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180517050058 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180516050022 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180515050025 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180514050029 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180513050015 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180512050121 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180511050050 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.96.0.beta.20180510050112 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.95.0 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.95.0.beta.20180509050014 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.95.0.beta.20180508050130 spaceship/lib/spaceship/tunes/iap_status.rb
fastlane-2.95.0.beta.20180507050125 spaceship/lib/spaceship/tunes/iap_status.rb