Class: Deliver::Setup

Inherits:
Object
  • Object
show all
Defined in:
deliver/lib/deliver/setup.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#is_swiftObject

Returns the value of attribute is_swift.



10
11
12
# File 'deliver/lib/deliver/setup.rb', line 10

def is_swift
  @is_swift
end

Instance Method Details

#deliverfile_pathObject



51
52
53
54
55
56
57
# File 'deliver/lib/deliver/setup.rb', line 51

def deliverfile_path
  if self.is_swift
    return "#{Deliver::ROOT}/lib/assets/DeliverfileDefault.swift"
  else
    return "#{Deliver::ROOT}/lib/assets/DeliverfileDefault"
  end
end

#download_screenshots(path, options) ⇒ Object



130
131
132
133
# File 'deliver/lib/deliver/setup.rb', line 130

def download_screenshots(path, options)
  FileUtils.mkdir_p(path)
  Deliver::DownloadScreenshots.run(options, path)
end

#generate_deliver_file(deliver_path, options) ⇒ Object

This method takes care of creating a new ‘deliver’ folder, containing the app metadata and screenshots folders



42
43
44
45
46
47
48
49
# File 'deliver/lib/deliver/setup.rb', line 42

def generate_deliver_file(deliver_path, options)
  v = options[:app].latest_version
   = options[:metadata_path] || File.join(deliver_path, 'metadata')
  (v, )

  # Generate the final Deliverfile here
  return File.read(deliverfile_path)
end

#generate_metadata_files(v, path) ⇒ Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'deliver/lib/deliver/setup.rb', line 59

def (v, path)
  app_details = v.application.details

  # All the localised metadata
  (::LOCALISED_VERSION_VALUES + ::LOCALISED_APP_VALUES).each do |key|
    v.description.languages.each do |language|
      if ::LOCALISED_VERSION_VALUES.include?(key)
        content = v.send(key)[language].to_s
      else
        content = app_details.send(key)[language].to_s
      end
      content += "\n"
      resulting_path = File.join(path, language, "#{key}.txt")
      FileUtils.mkdir_p(File.expand_path('..', resulting_path))
      File.write(resulting_path, content)
      UI.message("Writing to '#{resulting_path}'")
    end
  end

  # All non-localised metadata
  (::NON_LOCALISED_VERSION_VALUES + ::NON_LOCALISED_APP_VALUES).each do |key|
    if ::NON_LOCALISED_VERSION_VALUES.include?(key)
      content = v.send(key).to_s
    else
      content = app_details.send(key).to_s
    end
    content += "\n"
    resulting_path = File.join(path, "#{key}.txt")
    File.write(resulting_path, content)
    UI.message("Writing to '#{resulting_path}'")
  end

  # Trade Representative Contact Information
  ::TRADE_REPRESENTATIVE_CONTACT_INFORMATION_VALUES.each do |key, option_name|
    content = v.send(key).to_s
    content += "\n"
    base_dir = File.join(path, ::TRADE_REPRESENTATIVE_CONTACT_INFORMATION_DIR)
    FileUtils.mkdir_p(base_dir)
    resulting_path = File.join(base_dir, "#{option_name}.txt")
    File.write(resulting_path, content)
    UI.message("Writing to '#{resulting_path}'")
  end

  # Review information
  ::REVIEW_INFORMATION_VALUES.each do |key, option_name|
    content = v.send(key).to_s
    content += "\n"
    base_dir = File.join(path, ::REVIEW_INFORMATION_DIR)
    FileUtils.mkdir_p(base_dir)
    resulting_path = File.join(base_dir, "#{option_name}.txt")
    File.write(resulting_path, content)
    UI.message("Writing to '#{resulting_path}'")
  end

  UI.success("Successfully created new configuration files.")

  # get App icon + watch icon
  if v.large_app_icon.asset_token
    app_icon_extension = File.extname(v.large_app_icon.url)
    app_icon_path = File.join(path, "app_icon#{app_icon_extension}")
    File.write(app_icon_path, open(v.large_app_icon.url).read)
    UI.success("Successfully downloaded large app icon")
  end
  if v.watch_app_icon.asset_token
    watch_app_icon_extension = File.extname(v.watch_app_icon.url)
    watch_icon_path = File.join(path, "watch_icon#{watch_app_icon_extension}")
    File.write(watch_icon_path, open(v.watch_app_icon.url).read)
    UI.success("Successfully downloaded watch icon")
  end
end

#run(options, is_swift: false) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
# File 'deliver/lib/deliver/setup.rb', line 12

def run(options, is_swift: false)
  containing = Helper.fastlane_enabled_folder_path
  self.is_swift = is_swift

  if is_swift
    file_path = File.join(containing, 'Deliverfile.swift')
  else
    file_path = File.join(containing, 'Deliverfile')
  end
  data = generate_deliver_file(containing, options)
  setup_deliver(file_path, data, containing, options)
end

#setup_deliver(file_path, data, deliver_path, options) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'deliver/lib/deliver/setup.rb', line 25

def setup_deliver(file_path, data, deliver_path, options)
  File.write(file_path, data)

  screenshots_path = options[:screenshots_path] || File.join(deliver_path, 'screenshots')
  unless options[:skip_screenshots]
    download_screenshots(screenshots_path, options)

    # Add a README to the screenshots folder
    FileUtils.mkdir_p(screenshots_path) # just in case the fetching didn't work
    File.write(File.join(screenshots_path, 'README.txt'), File.read("#{Deliver::ROOT}/lib/assets/ScreenshotsHelp"))
  end

  UI.success("Successfully created new Deliverfile at path '#{file_path}'")
end