Class: BranchIOCLI::Helper::ConfigurationHelper
- Inherits:
-
Object
- Object
- BranchIOCLI::Helper::ConfigurationHelper
- Defined in:
- lib/branch_io_cli/helper/configuration_helper.rb
Constant Summary collapse
- SDK_OPTIONS =
{ "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 }
Class Attribute Summary collapse
-
.all_domains ⇒ Object
Returns the value of attribute all_domains.
-
.cartfile_path ⇒ Object
Returns the value of attribute cartfile_path.
-
.keys ⇒ Object
Returns the value of attribute keys.
-
.podfile_path ⇒ Object
Returns the value of attribute podfile_path.
-
.xcodeproj ⇒ Object
Returns the value of attribute xcodeproj.
-
.xcodeproj_path ⇒ Object
Returns the value of attribute xcodeproj_path.
Class Method Summary collapse
- .add_carthage(options) ⇒ Object
- .add_cocoapods(options) ⇒ Object
- .add_direct(options) ⇒ Object
- .app_link_subdomains(options) ⇒ Object
- .ensure_directory(path) ⇒ Object
- .fetch(url) ⇒ Object
- .remove_directory(path) ⇒ Object
- .validate_all_domains(options) ⇒ Object
- .validate_buildfile_path(options, filename) ⇒ Object
- .validate_keys_from_setup_options(options) ⇒ Object
- .validate_sdk_addition(options) ⇒ Object
- .validate_setup_options(options) ⇒ Object
- .validate_validation_options(options) ⇒ Object
-
.validate_xcodeproj_path(options) ⇒ Object
1.
Class Attribute Details
.all_domains ⇒ Object
Returns the value of attribute all_domains.
14 15 16 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 14 def all_domains @all_domains end |
.cartfile_path ⇒ Object
Returns the value of attribute cartfile_path.
16 17 18 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 16 def cartfile_path @cartfile_path end |
.keys ⇒ Object
Returns the value of attribute keys.
13 14 15 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 13 def keys @keys end |
.podfile_path ⇒ Object
Returns the value of attribute podfile_path.
15 16 17 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 15 def podfile_path @podfile_path end |
.xcodeproj ⇒ Object
Returns the value of attribute xcodeproj.
12 13 14 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 12 def xcodeproj @xcodeproj end |
.xcodeproj_path ⇒ Object
Returns the value of attribute xcodeproj_path.
11 12 13 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 11 def xcodeproj_path @xcodeproj_path end |
Class Method Details
.add_carthage(options) ⇒ Object
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 221 def add_carthage() # TODO: Collapse this and Command::update_cartfile # 1. Generate Cartfile @cartfile_path = File. "../Cartfile", @xcodeproj_path File.open(@cartfile_path, "w") do |file| file.write "github \"BranchMetrics/ios-branch-deep-linking\"\n" end # 2. carthage update Dir.chdir(File.dirname(@cartfile_path)) do system "carthage update --platform ios" end # 3. Add Cartfile and Cartfile.resolved to commit (in case :commit param specified) BranchHelper.add_change cartfile_path BranchHelper.add_change "#{cartfile_path}.resolved" # 4. Add to target depependencies frameworks_group = @xcodeproj.frameworks_group branch_framework = frameworks_group.new_file "Carthage/Build/iOS/Branch.framework" target = BranchHelper.target_from_project @xcodeproj, .target target.frameworks_build_phase.add_file_reference branch_framework # 5. Create a copy-frameworks build phase carthage_build_phase = target.new_shell_script_build_phase "carthage copy-frameworks" carthage_build_phase.shell_script = "/usr/local/bin/carthage copy-frameworks" carthage_build_phase.input_paths << "$(SRCROOT)/Carthage/Build/iOS/Branch.framework" carthage_build_phase.output_paths << "$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Branch.framework" @xcodeproj.save # For now, add Carthage folder to SCM # 6. Add the Carthage folder to the commit (in case :commit param specified) current_pathname = Pathname.new File. "." carthage_folder_path = Pathname.new(File.("../Carthage", cartfile_path)).relative_path_from(current_pathname) cartfile_pathname = Pathname.new(@cartfile_path).relative_path_from current_pathname BranchHelper.add_change carthage_folder_path `git add #{cartfile_pathname} #{cartfile_pathname}.resolved #{carthage_folder_path}` if .commit end |
.add_cocoapods(options) ⇒ Object
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 188 def add_cocoapods() @podfile_path = File. "../Podfile", @xcodeproj_path target = BranchHelper.target_from_project @xcodeproj, .target File.open(@podfile_path, "w") do |file| file.write "platform :ios, \"\#{target.deployment_target}\"\n\npod \"Branch\"\n\n\#{@xcodeproj.targets.map { |t| \"target \\\"\#{t.name}\\\"\" }.join(\"\\n\")}\n" end command = "pod install" command += " --repo-update" unless .no_pod_repo_update Dir.chdir(File.dirname(@podfile_path)) do system command end BranchHelper.add_change @podfile_path BranchHelper.add_change "#{@podfile_path}.lock" # For now, add Pods folder to SCM. current_pathname = Pathname.new File. "." pods_folder_path = Pathname.new(File.("../Pods", podfile_path)).relative_path_from current_pathname workspace_path = Pathname.new(File.(@xcodeproj_path.sub(/.xcodeproj$/, ".xcworkspace"))).relative_path_from current_pathname podfile_pathname = Pathname.new(@podfile_path).relative_path_from current_pathname BranchHelper.add_change pods_folder_path BranchHelper.add_change workspace_path `git add #{podfile_pathname} #{podfile_pathname}.lock #{pods_folder_path} #{workspace_path}` if .commit end |
.add_direct(options) ⇒ Object
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 266 def add_direct() # TODO: Put these intermediates in a temp directory until Branch.framework is unzipped # (and validated?). For now dumped in the current directory. File.unlink "Branch.framework.zip" if File.exist? "Branch.framework.zip" remove_directory "Branch.framework" say "Finding current framework release..." # Find the latest release from GitHub. releases = JSON.parse fetch "https://api.github.com/repos/BranchMetrics/ios-branch-deep-linking/releases" current_release = releases.first # Get the download URL for the framework. framework_asset = current_release["assets"][0] framework_url = framework_asset["browser_download_url"] say "Downloading Branch.framework v. #{current_release['tag_name']} (#{framework_asset['size']} bytes zipped)..." # Download the framework zip File.open("Branch.framework.zip", "w") do |file| file.write fetch framework_url end say "Unzipping Branch.framework..." # Unzip Zip::File.open "Branch.framework.zip" do |zip_file| # Start with just the framework and add dSYM, etc., later zip_file.glob "Carthage/Build/iOS/Branch.framework/**/*" do |entry| filename = entry.name.sub %r{^Carthage/Build/iOS/}, "" ensure_directory File.dirname filename entry.extract filename end end # Remove intermediate zip file File.unlink "Branch.framework.zip" # Now the current framework is in ./Branch.framework say "Adding to #{@xcodeproj_path}..." # Add as a dependency in the Frameworks group frameworks_group = @xcodeproj.frameworks_group framework = frameworks_group.new_file "Branch.framework" target = BranchHelper.target_from_project @xcodeproj, .target target.frameworks_build_phase.add_file_reference framework, true @xcodeproj.save BranchHelper.add_change File. "Branch.framework" `git add Branch.framework` if .commit say "Done. ✅" end |
.app_link_subdomains(options) ⇒ Object
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 95 def app_link_subdomains() app_link_subdomain = .app_link_subdomain live_key = .live_key test_key = .test_key return [] if live_key.nil? and test_key.nil? return [] if app_link_subdomain.nil? 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 |
.ensure_directory(path) ⇒ Object
331 332 333 334 335 336 337 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 331 def ensure_directory(path) return if path == "/" || path == "." parent = File.dirname path ensure_directory parent return if Dir.exist? path Dir.mkdir path end |
.fetch(url) ⇒ Object
320 321 322 323 324 325 326 327 328 329 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 320 def fetch(url) response = Net::HTTP.get_response URI(url) case response when Net::HTTPRedirection fetch response['location'] else response.body end end |
.remove_directory(path) ⇒ Object
339 340 341 342 343 344 345 346 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 339 def remove_directory(path) return unless File.exist? path Dir["#{path}/*"].each do |file| remove_directory(file) and next if File.directory?(file) File.unlink file end end |
.validate_all_domains(options) ⇒ Object
50 51 52 53 54 55 56 57 58 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 50 def validate_all_domains() app_link_subdomains = app_link_subdomains custom_domains = .domains || [] @all_domains = (app_link_subdomains + custom_domains).uniq while @all_domains.empty? @all_domains = ask "Please enter domains as a comma-separated list: ", ->(str) { str.split "," } end end |
.validate_buildfile_path(options, filename) ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 118 def validate_buildfile_path(, filename) # Disable Podfile/Cartfile update if --no_add_sdk is present return if .no_add_sdk buildfile_path = filename == "Podfile" ? .podfile : .cartfile # Was --podfile/--cartfile used? if buildfile_path # Yes: Validate. Prompt if not valid. loop do valid = buildfile_path =~ %r{/?#{filename}$} say "#{filename} path must end in /#{filename}." unless valid if valid valid = File.exist? buildfile_path say "#{buildfile_path} not found." unless valid end if valid if filename == "Podfile" @podfile_path = buildfile_path else @cartfile_path = buildfile_path end return end buildfile_path = ask "Please enter the path to your #{filename}: " end end # No: Check for Podfile/Cartfile next to @xcodeproj_path buildfile_path = File. "../#{filename}", @xcodeproj_path return unless File.exist? buildfile_path # Exists: Use it (valid if found) if filename == "Podfile" @podfile_path = buildfile_path else @cartfile_path = buildfile_path end end |
.validate_keys_from_setup_options(options) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 33 def () live_key = .live_key test_key = .test_key @keys = {} @keys[:live] = live_key unless live_key.nil? @keys[:test] = test_key unless test_key.nil? while @keys.empty? say "A live key, a test key or both is required." live_key = ask "Please enter your live Branch key or use --live_key [enter for none]: " test_key = ask "Please enter your test Branch key or use --test_key [enter for none]: " @keys[:live] = live_key unless live_key == "" @keys[:test] = test_key unless test_key == "" end end |
.validate_sdk_addition(options) ⇒ Object
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 161 def validate_sdk_addition() return if .no_add_sdk || @podfile_path || @cartfile_path # If no CocoaPods or Carthage, check to see if the framework is linked. target = BranchHelper.target_from_project @xcodeproj, .target return if target.frameworks_build_phase.files.map(&:file_ref).map(&:path).any? { |p| p =~ %r{/Branch.framework$} } # --podfile, --cartfile not specified. No Podfile found. No Cartfile found. No Branch.framework in project. # Prompt the user: selected = choose do || .header = "No Podfile or Cartfile specified or found. Here are your options" SDK_OPTIONS.each_key { |k| .choice k } .prompt = "What would you like to do?" end option = SDK_OPTIONS[selected] case option when :skip return else send "add_#{option}", end end |
.validate_setup_options(options) ⇒ Object
18 19 20 21 22 23 24 25 26 27 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 18 def () say "--force is ignored when --no_validate is used." if .no_validate && .force validate_xcodeproj_path validate_all_domains validate_buildfile_path , "Podfile" validate_buildfile_path , "Cartfile" validate_sdk_addition end |
.validate_validation_options(options) ⇒ Object
29 30 31 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 29 def () validate_xcodeproj_path end |
.validate_xcodeproj_path(options) ⇒ Object
-
Look for options.xcodeproj.
-
If not specified, look for projects under . (excluding anything in Pods or Carthage folder).
-
If none or more than one found, prompt the user.
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 |
# File 'lib/branch_io_cli/helper/configuration_helper.rb', line 63 def validate_xcodeproj_path() if .xcodeproj path = .xcodeproj else all_xcodeproj_paths = Dir[File.(File.join(".", "**/*.xcodeproj"))] # find an xcodeproj (ignoring the Pods and Carthage folders) # TODO: Improve this filter xcodeproj_paths = all_xcodeproj_paths.select do |p| valid = true Pathname.new(p).each_filename do |f| valid = false && break if f == "Carthage" || f == "Pods" end valid end path = xcodeproj_paths.first if xcodeproj_paths.count == 1 end loop do path = ask "Please enter the path to your Xcode project or use --xcodeproj: " if path.nil? # TODO: Allow the user to choose if xcodeproj_paths.count > 0 begin @xcodeproj = Xcodeproj::Project.open path @xcodeproj_path = path return rescue StandardError => e say e. path = nil end end end |