class Fastlane::Actions::RegisterDeviceAction

Public Class Methods

author() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 82
def self.author
  "pvinis"
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 35
def self.available_options
  user = CredentialsManager::AppfileConfig.try_fetch_value(:apple_dev_portal_id)
  user ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)

  [
    FastlaneCore::ConfigItem.new(key: :name,
                                 env_name: "FL_REGISTER_DEVICE_NAME",
                                 description: "Provide the name of the device to register as"),
    FastlaneCore::ConfigItem.new(key: :udid,
                                 env_name: "FL_REGISTER_DEVICE_UDID",
                                 description: "Provide the UDID of the device to register as"),
    FastlaneCore::ConfigItem.new(key: :team_id,
                               env_name: "REGISTER_DEVICE_TEAM_ID",
                               code_gen_sensitive: true,
                               default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
                                 default_value_dynamic: true,
                               description: "The ID of your Developer Portal team if you're in multiple teams",
                               optional: true,
                               verify_block: proc do |value|
                                 ENV["FASTLANE_TEAM_ID"] = value.to_s
                               end),
    FastlaneCore::ConfigItem.new(key: :team_name,
                                 env_name: "REGISTER_DEVICE_TEAM_NAME",
                                 description: "The name of your Developer Portal team if you're in multiple teams",
                                 optional: true,
                                 code_gen_sensitive: true,
                                 default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
                                 default_value_dynamic: true,
                                 verify_block: proc do |value|
                                   ENV["FASTLANE_TEAM_NAME"] = value.to_s
                                 end),
    FastlaneCore::ConfigItem.new(key: :username,
                                 env_name: "DELIVER_USER",
                                 description: "Optional: Your Apple ID",
                                 default_value: user,
                                 default_value_dynamic: true)
  ]
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 105
def self.category
  :code_signing
end
description() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 31
def self.description
  "Registers a new device to the Apple Dev Portal"
end
details() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 74
def self.details
  [
    "This will register an iOS device with the Developer Portal so that you can include it in your provisioning profiles.",
    "This is an optimistic action, in that it will only ever add a device to the member center. If the device has already been registered within the member center, it will be left alone in the member center.",
    "The action will connect to the Apple Developer Portal using the username you specified in your `Appfile` with `apple_id`, but you can override it using the `:username` option."
  ].join("\n")
end
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 86
def self.example_code
  [
    'register_device(
      name: "Luka iPhone 6",
      udid: "1234567890123456789012345678901234567890"
    ) # Simply provide the name and udid of the device',
    'register_device(
      name: "Luka iPhone 6",
      udid: "1234567890123456789012345678901234567890",
      team_id: "XXXXXXXXXX",         # Optional, if you"re a member of multiple teams, then you need to pass the team ID here.
      username: "luka@goonbee.com"   # Optional, lets you override the Apple Member Center username.
    )'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 6
def self.is_supported?(platform)
  platform == :ios
end
return_type() click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 101
def self.return_type
  :string
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/register_device.rb, line 10
def self.run(params)
  require 'spaceship'

  name = params[:name]
  udid = params[:udid]

  credentials = CredentialsManager::AccountManager.new(user: params[:username])
  Spaceship.login(credentials.user, credentials.password)
  Spaceship.select_team

  begin
    Spaceship::Device.create!(name: name, udid: udid)
  rescue => ex
    UI.error(ex.to_s)
    UI.crash!("Failed to register new device (name: #{name}, UDID: #{udid})")
  end

  UI.success("Successfully registered new device")
  return udid
end