Class: Fastlane::Actions::GetValueFromBuildAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/android_versioning_kts/actions/get_value_from_build.rb

Documentation collapse

Class Method Summary collapse

Class Method Details

.authorsObject



109
110
111
# File 'lib/fastlane/plugin/android_versioning_kts/actions/get_value_from_build.rb', line 109

def self.authors
  ['zmunm']
end

.available_optionsObject



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
# File 'lib/fastlane/plugin/android_versioning_kts/actions/get_value_from_build.rb', line 76

def self.available_options
  [
    FastlaneCore::ConfigItem.new(
      key: :app_project_dir,
      env_name: 'ANDROID_VERSIONING_APP_PROJECT_DIR',
      description: 'The path to the application source folder
        in the Android project (default: android/app)',
      optional: true,
      type: String,
      default_value: 'android/app'
    ),
    FastlaneCore::ConfigItem.new(
      key: :flavor,
      env_name: 'ANDROID_VERSIONING_FLAVOR',
      description: 'The product flavor name (optional)',
      optional: true,
      type: String
    ),
    FastlaneCore::ConfigItem.new(
      key: :key,
      description: 'The property key',
      type: String
    ),
    FastlaneCore::ConfigItem.new(
      key: :type,
      description: 'The property Type ["function", "param"])',
      type: String,
      default_value: 'param'
    )

  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


113
114
115
# File 'lib/fastlane/plugin/android_versioning_kts/actions/get_value_from_build.rb', line 113

def self.is_supported?(platform)
  platform == :android
end

.run(params) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
# File 'lib/fastlane/plugin/android_versioning_kts/actions/get_value_from_build.rb', line 8

def self.run(params)
  app_project_dir ||= params[:app_project_dir]

  type ||= params[:type]

  case type
  when 'param'
    regex = /
      \s*
      (?<key>#{params[:key]}\s*=\s*)
      (?<left>['"]?)
      (?<value>[a-zA-Z0-9._]*)
      (?<right>['"]?)
      (?<comment>.*)
    /x
  when 'function'
    regex = /
      \s*
      (?<key>#{params[:key]}\s*\(\s*)
      (?<left>['"]?)
      (?<value>[a-zA-Z0-9._]*)
      (?<right>['"]?)
      (?<comment>.*\).*)
    /x
  else
    throw "#{type} is not valid type"
  end

  flavor = params[:flavor]
  flavor_specified = !(flavor.nil? || flavor.empty?)
  regex_flavor = Regexp.new(/[ \t]create\("#{flavor}"\)[ \t]/)
  value = ''
  found = false
  flavor_found = false
  product_flavors_section = false

  Dir.glob("#{app_project_dir}/build.gradle.kts") do |path|
    UI.verbose("path: #{path}")
    UI.verbose("absolute_path: #{File.expand_path(path)}")

    File.open(path, 'r') do |file|
      file.each_line do |line|
        if flavor_specified && !product_flavors_section
          next unless line.include? 'productFlavors'

          product_flavors_section = true
        end

        if flavor_specified && !flavor_found
          next unless line.match(regex_flavor)

          flavor_found = true
        end

        next unless line.match(regex) && !found

        key, left, value, right, comment = line.match(regex).captures
        break
      end
      file.close
    end
  end
  value
end