Class: CredentialsManager::AppfileConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/credentials_manager/appfile_config.rb

Overview

Access the content of the app file (e.g. app identifier and Apple ID)

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = nil) ⇒ AppfileConfig



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/credentials_manager/appfile_config.rb', line 22

def initialize(path = nil)
  if path
    raise "Could not find Appfile at path '#{path}'".red unless File.exist?(path)
  end

  path ||= self.class.default_path

  if path and File.exist?(path) # it might not exist, we still want to use the default values
    full_path = File.expand_path(path)
    Dir.chdir(File.expand_path('..', path)) do
      # rubocop:disable Lint/Eval
      eval(File.read(full_path))
      # rubocop:enable Lint/Eval
    end
  end

  fallback_to_default_values
end

Class Method Details

.default_pathObject



15
16
17
18
19
20
# File 'lib/credentials_manager/appfile_config.rb', line 15

def self.default_path
  ["./fastlane/Appfile", "./Appfile"].each do |current|
    return current if File.exist? current
  end
  nil
end

.try_fetch_value(key) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/credentials_manager/appfile_config.rb', line 5

def self.try_fetch_value(key)
  begin
    return self.new.data[key]
  rescue => ex
    puts ex.to_s
    return nil
  end
  nil
end

Instance Method Details

#app_identifier(*args, &block) ⇒ Object

Setters



51
52
53
# File 'lib/credentials_manager/appfile_config.rb', line 51

def app_identifier(*args, &block)
  setter(:app_identifier, *args, &block)
end

#apple_id(*args, &block) ⇒ Object



55
56
57
# File 'lib/credentials_manager/appfile_config.rb', line 55

def apple_id(*args, &block)
  setter(:apple_id, *args, &block)
end

#dataObject



45
46
47
# File 'lib/credentials_manager/appfile_config.rb', line 45

def data
  @data ||= {}
end

#fallback_to_default_valuesObject



41
42
43
# File 'lib/credentials_manager/appfile_config.rb', line 41

def fallback_to_default_values
  data[:apple_id] ||= ENV["FASTLANE_USER"] || ENV["DELIVER_USER"]
end

#for_lane(lane_name, &block) ⇒ Object

Override Appfile configuration for a specific lane.

lane_name - Symbol representing a lane name. (Can be either :name, ‘name’ or ‘platform name’) block - Block to execute to override configuration values.

Discussion If received lane name does not match the lane name available as environment variable, no changes will

be applied.


74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/credentials_manager/appfile_config.rb', line 74

def for_lane(lane_name, &block)
  if lane_name.to_s.split(" ").count > 1
    # That's the legacy syntax 'platform name'
    puts "You use deprecated syntax '#{lane_name}' in your Appfile.".yellow
    puts "Please follow the Appfile guide: https://github.com/KrauseFx/fastlane/blob/master/docs/Appfile.md".yellow
    platform, lane_name = lane_name.split(" ")

    return unless platform == ENV["FASTLANE_PLATFORM_NAME"]
    # the lane name will be verified below
  end

  if ENV["FASTLANE_LANE_NAME"] == lane_name.to_s
    block.call
  end
end

#for_platform(platform_name, &block) ⇒ Object

Override Appfile configuration for a specific platform.

platform_name - Symbol representing a platform name. block - Block to execute to override configuration values.

Discussion If received paltform name does not match the platform name available as environment variable, no changes will

be applied.


97
98
99
100
101
# File 'lib/credentials_manager/appfile_config.rb', line 97

def for_platform(platform_name, &block)
  if ENV["FASTLANE_PLATFORM_NAME"] == platform_name.to_s
    block.call
  end
end

#team_id(*args, &block) ⇒ Object



59
60
61
# File 'lib/credentials_manager/appfile_config.rb', line 59

def team_id(*args, &block)
  setter(:team_id, *args, &block)
end

#team_name(*args, &block) ⇒ Object



63
64
65
# File 'lib/credentials_manager/appfile_config.rb', line 63

def team_name(*args, &block)
  setter(:team_name, *args, &block)
end