Class: Spaceship::Portal::Device

Inherits:
Spaceship::PortalBase show all
Defined in:
lib/spaceship/portal/device.rb

Overview

Represents a device from the Apple Developer Portal

Instance Attribute Summary collapse

Attributes inherited from Base

#client, #raw_data

Class Method Summary collapse

Methods inherited from Spaceship::PortalBase

client

Methods inherited from Base

attr_accessor, attr_mapping, #attributes, attributes, #initialize, #inspect, mapping_module, method_missing, set_client, #setup, #to_s

Constructor Details

This class inherits a constructor from Spaceship::Base

Instance Attribute Details

#device_typeString

Returns Device type.

Examples:

'watch'  - Apple Watch
'ipad'   - iPad
'iphone' - iPhone
'ipod'   - iPod
'tvOS'   - Apple TV

Returns:



42
43
44
# File 'lib/spaceship/portal/device.rb', line 42

def device_type
  @device_type
end

#idString

Returns The ID given from the developer portal. You’ll probably not need it.

Examples:

"XJXGVS46MW"

Returns:

  • (String)

    The ID given from the developer portal. You’ll probably not need it.



8
9
10
# File 'lib/spaceship/portal/device.rb', line 8

def id
  @id
end

#modelString

Returns Model (can be nil).

Examples:

'iPhone 6', 'iPhone 4 GSM'

Returns:

  • (String)

    Model (can be nil)



33
34
35
# File 'lib/spaceship/portal/device.rb', line 33

def model
  @model
end

#nameString

Returns The name of the device.

Examples:

"Felix Krause's iPhone 6"

Returns:

  • (String)

    The name of the device



13
14
15
# File 'lib/spaceship/portal/device.rb', line 13

def name
  @name
end

#platformString

Returns The platform of the device. This is probably always “ios”.

Examples:

"ios"

Returns:

  • (String)

    The platform of the device. This is probably always “ios”



23
24
25
# File 'lib/spaceship/portal/device.rb', line 23

def platform
  @platform
end

#statusString

Returns Status of the device. Probably always “c”.

Examples:

"c"

Returns:

  • (String)

    Status of the device. Probably always “c”



28
29
30
# File 'lib/spaceship/portal/device.rb', line 28

def status
  @status
end

#udidString

Returns The UDID of the device.

Examples:

"4c24a7ee5caaa4847f49aaab2d87483053f53b65"

Returns:

  • (String)

    The UDID of the device



18
19
20
# File 'lib/spaceship/portal/device.rb', line 18

def udid
  @udid
end

Class Method Details

.all(mac: false) ⇒ Array

Returns all devices registered for this account

Parameters:

  • mac (Bool) (defaults to: false)

    Fetches Mac devices if true

Returns:

  • (Array)

    Returns all devices registered for this account



63
64
65
# File 'lib/spaceship/portal/device.rb', line 63

def all(mac: false)
  client.devices(mac: mac).map { |device| self.factory(device) }
end

.all_apple_tvsArray

Returns all Apple TVs registered for this account

Returns:

  • (Array)

    Returns all Apple TVs registered for this account



68
69
70
# File 'lib/spaceship/portal/device.rb', line 68

def all_apple_tvs
  client.devices_by_class('tvOS').map { |device| self.factory(device) }
end

.all_for_profile_type(profile_type) ⇒ Array

Returns all devices that can be used for iOS profiles (all devices except TVs)

Returns:

  • (Array)

    Returns all devices that can be used for iOS profiles (all devices except TVs)



103
104
105
106
107
108
109
# File 'lib/spaceship/portal/device.rb', line 103

def all_for_profile_type(profile_type)
  if profile_type.include? "tvOS"
    Spaceship::Device.all_apple_tvs
  else
    Spaceship::Device.all_ios_profile_devices
  end
end

.all_ios_profile_devicesArray

Returns all devices that can be used for iOS profiles (all devices except TVs)

Returns:

  • (Array)

    Returns all devices that can be used for iOS profiles (all devices except TVs)



98
99
100
# File 'lib/spaceship/portal/device.rb', line 98

def all_ios_profile_devices
  all.select { |device| device.device_type != "tvOS" }
end

.all_ipadsArray

Returns all iPads registered for this account

Returns:

  • (Array)

    Returns all iPads registered for this account



78
79
80
# File 'lib/spaceship/portal/device.rb', line 78

def all_ipads
  client.devices_by_class('ipad').map { |device| self.factory(device) }
end

.all_iphonesArray

Returns all iPhones registered for this account

Returns:

  • (Array)

    Returns all iPhones registered for this account



83
84
85
# File 'lib/spaceship/portal/device.rb', line 83

def all_iphones
  client.devices_by_class('iphone').map { |device| self.factory(device) }
end

.all_ipod_touchesArray

Returns all iPods registered for this account

Returns:

  • (Array)

    Returns all iPods registered for this account



88
89
90
# File 'lib/spaceship/portal/device.rb', line 88

def all_ipod_touches
  client.devices_by_class('ipod').map { |device| self.factory(device) }
end

.all_macsArray

Returns all Macs registered for this account

Returns:

  • (Array)

    Returns all Macs registered for this account



93
94
95
# File 'lib/spaceship/portal/device.rb', line 93

def all_macs
  all(mac: true)
end

.all_watchesArray

Returns all Watches registered for this account

Returns:

  • (Array)

    Returns all Watches registered for this account



73
74
75
# File 'lib/spaceship/portal/device.rb', line 73

def all_watches
  client.devices_by_class('watch').map { |device| self.factory(device) }
end

.create!(name: nil, udid: nil, mac: false) ⇒ Device

Register a new device to this account

Examples:

Spaceship.device.create!(name: "Felix Krause's iPhone 6", udid: "4c24a7ee5caaa4847f49aaab2d87483053f53b65")

Parameters:

  • name (String) (defaults to: nil)

    (required): The name of the new device

  • udid (String) (defaults to: nil)

    (required): The UDID of the new device

  • mac (Bool) (defaults to: false)

    (optional): Pass Mac if device is a Mac

Returns:

  • (Device)

    : The newly created device



143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/spaceship/portal/device.rb', line 143

def create!(name: nil, udid: nil, mac: false)
  # Check whether the user has passed in a UDID and a name
  unless udid && name
    raise "You cannot create a device without a device_id (UDID) and name"
  end

  # Find the device by UDID, raise an exception if it already exists
  existing = self.find_by_udid(udid, mac: mac)
  return existing if existing

  # It is valid to have the same name for multiple devices

  device = client.create_device!(name, udid, mac: mac)

  # Update self with the new device
  self.new(device)
end

.factory(attrs) ⇒ Object

Create a new object based on a hash. This is used to create a new object based on the server response.



57
58
59
# File 'lib/spaceship/portal/device.rb', line 57

def factory(attrs)
  self.new(attrs)
end

.find(device_id, mac: false) ⇒ Device

Returns Find a device based on the ID of the device. Attention: This is not the UDID. nil if no device was found.

Parameters:

  • mac (Bool) (defaults to: false)

    Searches for Macs if true

Returns:

  • (Device)

    Find a device based on the ID of the device. Attention: This is not the UDID. nil if no device was found.



114
115
116
117
118
# File 'lib/spaceship/portal/device.rb', line 114

def find(device_id, mac: false)
  all(mac: mac).find do |device|
    device.id == device_id
  end
end

.find_by_name(device_name, mac: false) ⇒ Device

Returns Find a device based on its name. nil if no device was found.

Parameters:

  • mac (Bool) (defaults to: false)

    Searches for Macs if true

Returns:

  • (Device)

    Find a device based on its name. nil if no device was found.



130
131
132
133
134
# File 'lib/spaceship/portal/device.rb', line 130

def find_by_name(device_name, mac: false)
  all(mac: mac).find do |device|
    device.name == device_name
  end
end

.find_by_udid(device_udid, mac: false) ⇒ Device

Returns Find a device based on the UDID of the device. nil if no device was found.

Parameters:

  • mac (Bool) (defaults to: false)

    Searches for Macs if true

Returns:

  • (Device)

    Find a device based on the UDID of the device. nil if no device was found.



122
123
124
125
126
# File 'lib/spaceship/portal/device.rb', line 122

def find_by_udid(device_udid, mac: false)
  all(mac: mac).find do |device|
    device.udid.casecmp(device_udid) == 0
  end
end