require_relative 'errors' require_relative 'language_item' require_relative 'tunes_base' module Spaceship module Tunes class AppDetails < TunesBase attr_accessor :application #### # Localized values #### # @return (Array) Raw access the all available languages. You shouldn't use it probably attr_accessor :languages # @return (Hash) A hash representing the app name in all languages attr_reader :name # @return (Hash) A hash representing the subtitle in all languages attr_reader :subtitle # @return (Hash) A hash representing the privacy URL in all languages attr_reader :privacy_url # @return (Hash) A hash representing the privacy URL in all languages for Apple TV attr_reader :apple_tv_privacy_policy # Categories (e.g. MZGenre.Business) attr_accessor :primary_category attr_accessor :primary_first_sub_category attr_accessor :primary_second_sub_category attr_accessor :secondary_category attr_accessor :secondary_first_sub_category attr_accessor :secondary_second_sub_category attr_accessor :primary_locale_code attr_accessor :available_primary_locale_codes attr_mapping( 'localizedMetadata.value' => :languages, 'primaryCategory.value' => :primary_category, 'primaryFirstSubCategory.value' => :primary_first_sub_category, 'primarySecondSubCategory.value' => :primary_second_sub_category, 'secondaryCategory.value' => :secondary_category, 'secondaryFirstSubCategory.value' => :secondary_first_sub_category, 'secondarySecondSubCategory.value' => :secondary_second_sub_category, 'primaryLocaleCode.value' => :primary_locale_code, 'availablePrimaryLocaleCodes' => :available_primary_locale_codes ) class << self # Create a new object based on a hash. # This is used to create a new object based on the server response. def factory(attrs) obj = self.new(attrs) obj.unfold_languages return obj end end # Prefill name, privacy url def unfold_languages { name: :name, subtitle: :subtitle, privacyPolicyUrl: :privacy_url, privacyPolicy: :apple_tv_privacy_policy }.each do |json, attribute| instance_variable_set("@#{attribute}".to_sym, LanguageItem.new(json, languages)) end end # Push all changes that were made back to App Store Connect def save! client.update_app_details!(application.apple_id, raw_data) rescue Spaceship::Tunes::Error => ex if ex.to_s == "operation_failed" # That's alright, we get this error message if nothing has changed else raise ex end end # Custom Setters # def primary_category=(value) value = prefix_apps(value) value = prefix_mzgenre(value) super(value) end def primary_first_sub_category=(value) value = prefix_apps(value) value = prefix_mzgenre(value) super(value) end def primary_second_sub_category=(value) value = prefix_apps(value) value = prefix_mzgenre(value) super(value) end def secondary_category=(value) value = prefix_apps(value) value = prefix_mzgenre(value) super(value) end def secondary_first_sub_category=(value) value = prefix_apps(value) value = prefix_mzgenre(value) super(value) end def secondary_second_sub_category=(value) value = prefix_apps(value) value = prefix_mzgenre(value) super(value) end ##################################################### # @!group General ##################################################### def setup; end private def prefix_mzgenre(value) value.include?("MZGenre") ? value : "MZGenre.#{value}" end def prefix_apps(value) return value unless value.include?("Stickers") value.include?("Apps") ? value : "Apps.#{value}" end end end end