Class: BranchIOCLI::Configuration::SetupConfiguration

Inherits:
Configuration
  • Object
show all
Defined in:
lib/branch_io_cli/configuration/setup_configuration.rb

Constant Summary collapse

/\.app\.link$|\.test-app\.link$/
SDK_OPTIONS =
{
  "Specify the location of a Podfile or Cartfile" => :specify,
  "Set this project up to use CocoaPods and add the Branch SDK." => :cocoapods,
  "Set this project up to use Carthage and add the Branch SDK." => :carthage,
  "Add Branch.framework directly to the project's dependencies." => :direct,
  "Skip adding the framework to the project." => :skip
}

Instance Attribute Summary collapse

Attributes inherited from Configuration

#cartfile_path, #options, #pod_repo_update, #podfile, #podfile_path, #sdk, #sdk_integration_mode, #target, #workspace, #workspace_path, #xcodeproj, #xcodeproj_path

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Configuration

absolute_path, #absolute_path, #all_xcodeproj_paths, #app_delegate_objc_path, #app_delegate_swift_path, available_options, #branch_imports, #branch_imports_from_file, #bridging_header_path, #bridging_header_required?, #confirm_with_user, defaults, #find_project, #helper, #messages_view_controller_path, #method_missing, #modules_enabled?, open_podfile, #open_podfile, open_xcodeproj, #open_xcodeproj, #pod_install_required?, #print_identification, #prompt_for_option, #relative_path, relative_path, #root, root, #swift_version, #target_name, #uses_frameworks?, #validate_buildfile_at_path, #validate_buildfile_path, #validate_target, #validate_xcodeproj_path, wrapper

Constructor Details

#initialize(options) ⇒ SetupConfiguration

Returns a new instance of SetupConfiguration.



33
34
35
36
37
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 33

def initialize(options)
  super
  # Configuration has been validated and logged to the screen.
  confirm_with_user if options.confirm
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class BranchIOCLI::Configuration::Configuration

Instance Attribute Details

#all_domainsObject (readonly)

Returns the value of attribute all_domains.



31
32
33
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 31

def all_domains
  @all_domains
end

#keysObject (readonly)

Returns the value of attribute keys.



30
31
32
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 30

def keys
  @keys
end

Class Method Details

.examplesObject



9
10
11
12
13
14
15
16
17
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 9

def examples
  {
    "Test without validation (can use dummy keys and domains)" => "br setup -L key_live_xxxx -D myapp.app.link --no-validate",
    "Use both live and test keys" => "br setup -L key_live_xxxx -T key_test_yyyy -D myapp.app.link",
    "Use custom or non-Branch domains" => "br setup -D myapp.app.link,example.com,www.example.com",
    "Avoid pod repo update" => "br setup --no-pod-repo-update",
    "Install using carthage bootstrap" => "br setup --carthage-command \"bootstrap --no-use-binaries\""
  }
end

.summaryObject



5
6
7
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 5

def summary
  "Integrates the Branch SDK into a native app project"
end

Instance Method Details

#all_domains_from_domains(domains) ⇒ Object



221
222
223
224
225
226
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 221

def all_domains_from_domains(domains)
  app_link_roots = app_link_roots_from_domains domains
  app_link_subdomains = app_link_subdomains_from_roots app_link_roots
  custom_domains = custom_domains_from_domains domains
  custom_domains + app_link_subdomains
end


181
182
183
184
185
186
187
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 181

def app_link_roots_from_domains(domains)
  return [] if domains.nil?

  domains.select { |d| d =~ APP_LINK_REGEXP }
         .map { |d| d.sub(APP_LINK_REGEXP, '').sub(/-alternate$/, '') }
         .uniq
end


194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 194

def app_link_subdomains(root)
  app_link_subdomain = root
  return [] if app_link_subdomain.nil?

  live_key = keys[:live]
  test_key = keys[:test]

  domains = []
  unless live_key.nil?
    domains += [
      "#{app_link_subdomain}.app.link",
      "#{app_link_subdomain}-alternate.app.link"
    ]
  end
  unless test_key.nil?
    domains += [
      "#{app_link_subdomain}.test-app.link",
      "#{app_link_subdomain}-alternate.test-app.link"
    ]
  end
  domains
end


217
218
219
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 217

def app_link_subdomains_from_roots(roots)
  roots.inject([]) { |domains, root| domains + app_link_subdomains(root) }
end

#custom_domains_from_domains(domains) ⇒ Object



189
190
191
192
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 189

def custom_domains_from_domains(domains)
  return [] if domains.nil?
  domains.reject { |d| d =~ APP_LINK_REGEXP }.uniq
end

#key_valid?(key, type) ⇒ Boolean

Returns:

  • (Boolean)


138
139
140
141
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 138

def key_valid?(key, type)
  return false if key.nil?
  key.empty? || key =~ /^key_#{type}_/
end

#logObject



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
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 74

def log
  super
  message = "<%= color('Xcode project:', BOLD) %> \#{xcodeproj_path}\n<%= color('Target:', BOLD) %> \#{target.name}\n<%= color('Live key:', BOLD) %> \#{keys[:live] || '(none)'}\n<%= color('Test key:', BOLD) %> \#{keys[:test] || '(none)'}\n<%= color('Domains:', BOLD) %> \#{all_domains}\n<%= color('URI scheme:', BOLD) %> \#{uri_scheme || '(none)'}\n  EOF\n\n  if setting\n    message += <<-EOF\n<%= color('Branch key setting:', BOLD) %> \#{setting}\n    EOF\n    if test_configurations\n      message += <<-EOF\n<%= color('Test configurations:', BOLD) %> \#{test_configurations}\n      EOF\n    end\n  end\n\n  message += <<-EOF\n<%= color('Podfile:', BOLD) %> \#{relative_path(podfile_path) || '(none)'}\n<%= color('Cartfile:', BOLD) %> \#{relative_path(cartfile_path) || '(none)'}\n<%= color('Carthage command:', BOLD) %> \#{carthage_command || '(none)'}\n<%= color('Pod repo update:', BOLD) %> \#{pod_repo_update.inspect}\n<%= color('Validate:', BOLD) %> \#{validate.inspect}\n<%= color('Force:', BOLD) %> \#{force.inspect}\n<%= color('Add SDK:', BOLD) %> \#{add_sdk.inspect}\n<%= color('Patch source:', BOLD) %> \#{patch_source.inspect}\n<%= color('Commit:', BOLD) %> \#{commit.inspect}\n<%= color('SDK integration mode:', BOLD) %> \#{sdk_integration_mode || '(none)'}\n  EOF\n\n  if swift_version\n    message += <<-EOF\n<%= color('Swift version:', BOLD) %> \#{swift_version}\n    EOF\n  end\n\n  message += \"\\n\"\n\n  say message\nend\n"

#prompt_for_podfile_or_cartfileObject



234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 234

def prompt_for_podfile_or_cartfile
  loop do
    path = ask("Please enter the location of your Podfile or Cartfile: ").trim
    case path
    when %r{/?Podfile$}
      return if validate_buildfile_at_path path, "Podfile"
    when %r{/?Cartfile$}
      return if validate_buildfile_at_path path, "Cartfile"
    else
      say "Path must end in Podfile or Cartfile."
    end
  end
end

#uri_scheme_without_suffix(scheme) ⇒ Object

Removes any trailing :// from the argument and returns a copy



229
230
231
232
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 229

def uri_scheme_without_suffix(scheme)
  return nil if scheme.nil?
  scheme.sub %r{://$}, ""
end

#validate_all_domains(options, required = true) ⇒ Object



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 153

def validate_all_domains(options, required = true)
  app_link_roots = app_link_roots_from_domains options.domains

  unless options.app_link_subdomain.nil? || app_link_roots.include?(options.app_link_subdomain)
    app_link_roots << options.app_link_subdomain
  end

  # app_link_roots now contains options.app_link_subdomain, if supplied, and the roots of any
  # .app.link or .test-app.link domains provided via options.domains.

  app_link_subdomains = app_link_subdomains_from_roots app_link_roots

  custom_domains = custom_domains_from_domains options.domains

  @all_domains = (app_link_subdomains + custom_domains).uniq

  while required && @all_domains.empty?
    domains = ask "Please enter domains as a comma-separated list: ", ->(str) { str.split "," }

    @all_domains = all_domains_from_domains domains
  end
end

#validate_key(key, type, options = {}) ⇒ Object



143
144
145
146
147
148
149
150
151
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 143

def validate_key(key, type, options = {})
  return if options[:accept_nil] && key.nil?
  until key_valid? key, type
    say "#{key.inspect} is not a valid #{type} Branch key. It must begin with key_#{type}_." if key
    key = ask "Please enter your #{type} Branch key or use --#{type}-key [enter for none]: "
  end
  @keys[type] = key unless key.empty?
  instance_variable_set "@#{type}_key", key
end

#validate_keys_from_setup_options(options) ⇒ Object



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 120

def validate_keys_from_setup_options(options)
  @keys = {}

  # 1. Check the options passed in. If nothing (nil) passed, continue.
  validate_key options.live_key, :live, accept_nil: true
  validate_key options.test_key, :test, accept_nil: true

  # 2. Did we find a valid key above?
  while @keys.empty?
    # 3. If not, prompt.
    say "A live key, a test key or both is required."
    validate_key nil, :live
    validate_key nil, :test
  end

  # 4. We have at least one valid key now.
end

#validate_optionsObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 39

def validate_options
  @validate = options.validate
  @patch_source = options.patch_source
  @add_sdk = options.add_sdk
  @force = options.force
  @commit = options.commit

  say "--force is ignored when --no-validate is used." if !options.validate && options.force
  if options.cartfile && options.podfile
    say "--cartfile and --podfile are mutually exclusive. Please specify the file to patch."
    exit 1
  end

  validate_xcodeproj_path
  validate_target
  validate_keys_from_setup_options options
  validate_all_domains options, !target.extension_target_type?
  validate_uri_scheme options
  validate_setting options
  validate_test_configurations options

  # If neither --podfile nor --cartfile is present, arbitrarily look for a Podfile
  # first.

  # If --cartfile is present, don't look for a Podfile. Just validate that
  # Cartfile.
  validate_buildfile_path options.podfile, "Podfile" if options.cartfile.nil? && options.add_sdk

  # If --podfile is present or a Podfile was found, don't look for a Cartfile.
  validate_buildfile_path options.cartfile, "Cartfile" if sdk_integration_mode.nil? && options.add_sdk
  @carthage_command = options.carthage_command if sdk_integration_mode == :carthage

  validate_sdk_addition options
end

#validate_sdk_addition(options) ⇒ Object



248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 248

def validate_sdk_addition(options)
  return if !options.add_sdk || sdk_integration_mode

  # If no CocoaPods or Carthage, check to see if the framework is linked.
  return if target.frameworks_build_phase.files.map(&:file_ref).map(&:path).any? { |p| p =~ /Branch.framework$/ }

  # --podfile, --cartfile not specified. No Podfile found. No Cartfile found. No Branch.framework in project.
  # Prompt the user:
  selected = choose do |menu|
    menu.header = "No Podfile or Cartfile specified or found. Here are your options"
    menu.readline = true

    SDK_OPTIONS.each_key { |k| menu.choice k }

    menu.prompt = "What would you like to do?"
  end

  @sdk_integration_mode = SDK_OPTIONS[selected]

  case sdk_integration_mode
  when :specify
    prompt_for_podfile_or_cartfile
  when :cocoapods
    @podfile_path = File.expand_path "../Podfile", xcodeproj_path
  when :carthage
    @cartfile_path = File.expand_path "../Cartfile", xcodeproj_path
    @carthage_command = options.carthage_command
  end
end

#validate_setting(options) ⇒ Object



278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 278

def validate_setting(options)
  setting = options.setting
  return if setting.nil?

  @setting = "BRANCH_KEY" and return if setting == true

  loop do
    if setting =~ /^[A-Z0-9_]+$/
      @setting = setting
      return
    end
    setting = ask "Invalid build setting. Please enter an all-caps identifier (may include digits and underscores): "
  end
end

#validate_test_configurations(options) ⇒ Object



293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 293

def validate_test_configurations(options)
  return if options.test_configurations.nil?
  unless options.setting
    say "--test-configurations ignored without --setting"
    return
  end

  all_configurations = target.build_configurations.map(&:name)
  test_configs = options.test_configurations == false ? [] : options.test_configurations
  loop do
    invalid_configurations = test_configs.reject { |c| all_configurations.include? c }
    @test_configurations = test_configs and return if invalid_configurations.empty?

    say "The following test configurations are invalid: #{invalid_configurations}."
    say "Available configurations: #{all_configurations}"
    test_configs = ask "Please enter a comma-separated list of configurations to use the Branch test key: ", Array
  end
end

#validate_uri_scheme(options) ⇒ Object



176
177
178
179
# File 'lib/branch_io_cli/configuration/setup_configuration.rb', line 176

def validate_uri_scheme(options)
  # No validation at the moment. Just strips off any trailing ://
  @uri_scheme = uri_scheme_without_suffix options.uri_scheme
end