Class: Fastlane::Actions::GetCiAppAction

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

Documentation collapse

Class Method Summary collapse

Class Method Details

.authorsObject



106
107
108
109
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 106

def self.authors
  # So no one will ever forget your contribution to fastlane :) You are awesome btw!
  ["Your GitHub/Twitter Name"]
end

.available_optionsObject



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 73

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :xcodeproj,
                                 env_name: "FL_GET_CI_APP_PROJECT",
                                 description: "Optional, you must specify the path to your main Xcode project if it is not in the project root directory or if you have multiple *.xcodeproj's in the root directory",
                                 optional: true,
                                 verify_block: proc do |value|
                                  UI.user_error!("Please pass the path to the project, not the workspace") if value.end_with? ".xcworkspace"
                                  UI.user_error!("Could not find Xcode project at path '#{File.expand_path(value)}'") if !File.exist?(value) and !Helper.is_test?
                                end),
    FastlaneCore::ConfigItem.new(key: :target,
                                env_name: "FL_GET_CI_APP_TARGET",
                                conflicting_options: [:scheme],
                                description: "Specify a specific target if you have multiple per project, optional"),
    FastlaneCore::ConfigItem.new(key: :app_id,
                                 env_name: "FL_GET_CI_APP_APP_ID",
                                 description: "You must specify the path to your main Xcode project if it is not in the project root directory or if you have multiple *.xcodeproj's in the root directory",
                                 optional: false)
  ]
end

.descriptionObject



63
64
65
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 63

def self.description
  "A short description with <= 80 characters of what this action does"
end

.detailsObject



67
68
69
70
71
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 67

def self.details
  # Optional:
  # this is your chance to provide a more detailed description of this action
  "You can use this action to do cool things..."
end

.find_info(params, is_absolute = false) ⇒ Object



41
42
43
44
45
46
47
48
49
50
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 41

def self.find_info(params, is_absolute=false)
  project = find_project(params)
  target = find_target(params)
  buildConfiguration = target.build_settings("Release")
  filePath = buildConfiguration["INFOPLIST_FILE"]
  if is_absolute then
    filePath = File.join(Pathname.new(project.path).parent.to_path, filePath)
  end
  filePath
end

.find_project(params) ⇒ Object



20
21
22
23
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 20

def self.find_project(params)
  project = Xcodeproj::Project.open(params[:xcodeproj])
  project
end

.find_target(params) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 25

def self.find_target(params)
  project = find_project(params)
  if params[:target]
    target = project.targets.detect { |t| t.name == params[:target] }
    target
  else
    # firstly we are trying to find modern application target
    target = project.targets.detect do |t|
      t.kind_of?(Xcodeproj::Project::Object::PBXNativeTarget) &&
        t.product_type == 'com.apple.product-type.application'
    end
    target = project.targets[0] if target.nil?
    target
  end
end

.get_ci_apps(params) ⇒ Object



52
53
54
55
56
57
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 52

def self.get_ci_apps(params)
  infoPlistPath = find_info(params)
  info = Xcodeproj::Plist.read_from_path(infoPlistPath)
  ciAPPs = info["CI_APPS"]
  ciAPPs
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 111

def self.is_supported?(platform)
  # you can do things like
  # 
  #  true
  # 
  #  platform == :ios
  # 
  #  [:ios, :mac].include?(platform)
  # 

  platform == :ios
end

.outputObject



94
95
96
97
98
99
100
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 94

def self.output
  # Define the shared values you are going to provide
  # Example
  [
    ['GET_CI_APP_CUSTOM_VALUE', 'A description of what this value contains']
  ]
end

.return_valueObject



102
103
104
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 102

def self.return_value
  # If your method provides a return value, you can describe here what it does
end

.run(params) ⇒ Object



11
12
13
14
15
16
17
18
# File 'lib/fastlane/plugin/ci_apps/actions/get_ci_app.rb', line 11

def self.run(params)
  ciApps = get_ci_apps(params)
  ciApps.each do |app|
    if app["APP_ID"] == params[:app_id] then
      return app
    end
  end
end