Class: Fastlane::Actions::GetProvisioningProfileAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/get_provisioning_profile.rb

Direct Known Subclasses

SighAction

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, deprecated_notes, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorObject



52
53
54
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 52

def self.author
  "KrauseFx"
end

.available_optionsObject



75
76
77
78
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 75

def self.available_options
  require 'sigh'
  Sigh::Options.available_options
end

.categoryObject



96
97
98
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 96

def self.category
  :code_signing
end

.descriptionObject



48
49
50
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 48

def self.description
  "Generates a provisioning profile, saving it in the current folder (via _sigh_)"
end

.detailsObject



71
72
73
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 71

def self.details
  "**Note**: It is recommended to use [match](https://docs.fastlane.tools/actions/match/) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your provisioning profiles. Use _sigh_ directly only if you want full control over what's going on and know more about codesigning."
end

.example_codeObject



84
85
86
87
88
89
90
91
92
93
94
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 84

def self.example_code
  [
    'get_provisioning_profile',
    'sigh # alias for "get_provisioning_profile"',
    'get_provisioning_profile(
      adhoc: true,
      force: true,
      filename: "myFile.mobileprovision"
    )'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



80
81
82
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 80

def self.is_supported?(platform)
  [:ios, :mac].include?(platform)
end

.outputObject

rubocop:disable Lint/MissingKeysOnSharedArea



57
58
59
60
61
62
63
64
65
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 57

def self.output
  [
    ['SIGH_PROFILE_PATH', 'A path in which certificates, key and profile are exported'],
    ['SIGH_PROFILE_PATHS', 'Paths in which certificates, key and profile are exported'],
    ['SIGH_UUID', 'UUID (Universally Unique IDentifier) of a provisioning profile'],
    ['SIGH_NAME', 'The name of the profile'],
    ['SIGH_PROFILE_TYPE', 'The profile type, can be appstore, adhoc, development, enterprise']
  ]
end

.return_valueObject



67
68
69
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 67

def self.return_value
  "The UUID of the profile sigh just fetched/generated"
end

.run(values) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 13

def self.run(values)
  require 'sigh'
  require 'credentials_manager/appfile_config'

  Sigh.config = values # we already have the finished config
  Sigh.config[:api_key] ||= Actions.lane_context[SharedValues::APP_STORE_CONNECT_API_KEY]

  path = Sigh::Manager.start

  Actions.lane_context[SharedValues::SIGH_PROFILE_PATH] = path # absolute path
  Actions.lane_context[SharedValues::SIGH_PROFILE_PATHS] ||= []
  Actions.lane_context[SharedValues::SIGH_PROFILE_PATHS] << path

  uuid = ENV["SIGH_UUID"] || ENV["SIGH_UDID"] # the UUID of the profile
  name = ENV["SIGH_NAME"] # the name of the profile
  Actions.lane_context[SharedValues::SIGH_UUID] = Actions.lane_context[SharedValues::SIGH_UDID] = uuid if uuid
  Actions.lane_context[SharedValues::SIGH_NAME] = Actions.lane_context[SharedValues::SIGH_NAME] = name if name

  set_profile_type(values, ENV["SIGH_PROFILE_ENTERPRISE"])

  return uuid # returs uuid of profile
end

.set_profile_type(values, enterprise) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 36

def self.set_profile_type(values, enterprise)
  profile_type = "app-store"
  profile_type = "ad-hoc" if values[:adhoc]
  profile_type = "development" if values[:development]
  profile_type = "developer-id" if values[:developer_id]
  profile_type = "enterprise" if enterprise

  UI.message("Setting Provisioning Profile type to '#{profile_type}'")

  Actions.lane_context[SharedValues::SIGH_PROFILE_TYPE] = profile_type
end