Class: Produce::Service

Inherits:
Object
  • Object
show all
Defined in:
produce/lib/produce/service.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.disable(options, args) ⇒ Object



10
11
12
# File 'produce/lib/produce/service.rb', line 10

def self.disable(options, args)
  self.new.disable(options, args)
end

.enable(options, args) ⇒ Object



6
7
8
# File 'produce/lib/produce/service.rb', line 6

def self.enable(options, args)
  self.new.enable(options, args)
end

Instance Method Details

#appObject



308
309
310
311
312
313
314
315
316
317
# File 'produce/lib/produce/service.rb', line 308

def app
  return @app if @app

  UI.message("Starting login with user '#{Produce.config[:username]}'")
  Spaceship.(Produce.config[:username], nil)
  Spaceship.select_team
  UI.message("Successfully logged in")

  @app ||= Spaceship.app.find(Produce.config[:app_identifier].to_s)
end

#disable(options, _args) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
# File 'produce/lib/produce/service.rb', line 26

def disable(options, _args)
  unless app
    UI.message("[DevCenter] App '#{Produce.config[:app_identifier]}' does not exist")
    return
  end

  UI.success("[DevCenter] App found '#{app.name}'")
  UI.message("Disabling services")
  disabled = update(false, app, options)
  UI.success("Done! Disabled #{disabled} services.")
end

#enable(options, _args) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
# File 'produce/lib/produce/service.rb', line 14

def enable(options, _args)
  unless app
    UI.message("[DevCenter] App '#{Produce.config[:app_identifier]}' does not exist")
    return
  end

  UI.success("[DevCenter] App found '#{app.name}'")
  UI.message("Enabling services")
  enabled = update(true, app, options)
  UI.success("Done! Enabled #{enabled} services.")
end

#update(on, app, options) ⇒ Object

rubocop:disable Metrics/PerceivedComplexity



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
72
73
74
75
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# File 'produce/lib/produce/service.rb', line 47

def update(on, app, options)
  updated = valid_services_for(options).count

  if options.access_wifi
    UI.message("\tAccess WiFi")
    if on
      app.update_service(Spaceship.app_service.access_wifi.on)
    else
      app.update_service(Spaceship.app_service.access_wifi.off)
    end
  end

  if options.app_group
    UI.message("\tApp Groups")

    if on
      app.update_service(Spaceship.app_service.app_group.on)
    else
      app.update_service(Spaceship.app_service.app_group.off)
    end
  end

  if options.apple_pay
    UI.message("\tApple Pay")

    if on
      app.update_service(Spaceship.app_service.apple_pay.on)
    else
      app.update_service(Spaceship.app_service.apple_pay.off)
    end
  end

  if options.associated_domains
    UI.message("\tAssociated Domains")

    if on
      app.update_service(Spaceship.app_service.associated_domains.on)
    else
      app.update_service(Spaceship.app_service.associated_domains.off)
    end
  end

  if options.auto_fill_credential
    UI.message("\tAutoFill Credential")

    if on
      app.update_service(Spaceship.app_service.auto_fill_credential.on)
    else
      app.update_service(Spaceship.app_service.auto_fill_credential.off)
    end
  end

  if options.data_protection
    UI.message("\tData Protection")

    if on
      case options.data_protection
      when "complete"
        app.update_service(Spaceship.app_service.data_protection.complete)
      when "unlessopen"
        app.update_service(Spaceship.app_service.data_protection.unless_open)
      when "untilfirstauth"
        app.update_service(Spaceship.app_service.data_protection.until_first_auth)
      else
        UI.user_error!("Unknown service '#{options.data_protection}'. Valid values: 'complete', 'unlessopen', 'untilfirstauth'")
      end
    else
      app.update_service(Spaceship.app_service.data_protection.off)
    end
  end

  if options.game_center
    UI.message("\tGame Center")

    if on
      app.update_service(Spaceship.app_service.game_center.on)
    else
      app.update_service(Spaceship.app_service.game_center.off)
    end
  end

  if options.healthkit
    UI.message("\tHealthKit")

    if on
      app.update_service(Spaceship.app_service.health_kit.on)
    else
      app.update_service(Spaceship.app_service.health_kit.off)
    end
  end

  if options.homekit
    UI.message("\tHomeKit")

    if on
      app.update_service(Spaceship.app_service.home_kit.on)
    else
      app.update_service(Spaceship.app_service.home_kit.off)
    end
  end

  if options.wallet
    UI.message("\tWallet")

    if on
      app.update_service(Spaceship.app_service.wallet.on)
    else
      app.update_service(Spaceship.app_service.wallet.off)
    end
  end

  if options.wireless_conf
    UI.message("\tWireless Accessory Configuration")

    if on
      app.update_service(Spaceship.app_service.wireless_accessory.on)
    else
      app.update_service(Spaceship.app_service.wireless_accessory.off)
    end
  end

  if options.icloud
    UI.message("\tiCloud")

    if on
      case options.icloud
      when "legacy"
        app.update_service(Spaceship.app_service.cloud.on)
        app.update_service(Spaceship.app_service.cloud_kit.xcode5_compatible)
      when "cloudkit"
        app.update_service(Spaceship.app_service.cloud.on)
        app.update_service(Spaceship.app_service.cloud_kit.cloud_kit)
      else
        UI.user_error!("Unknown service '#{options.icloud}'. Valid values: 'legacy', 'cloudkit'")
      end
    else
      app.update_service(Spaceship.app_service.cloud.off)
    end
  end

  if options.in_app_purchase
    UI.message("\tIn-App Purchase")

    if on
      app.update_service(Spaceship.app_service.in_app_purchase.on)
    else
      app.update_service(Spaceship.app_service.in_app_purchase.off)
    end
  end

  if options.inter_app_audio
    UI.message("\tInter-App Audio")

    if on
      app.update_service(Spaceship.app_service.inter_app_audio.on)
    else
      app.update_service(Spaceship.app_service.inter_app_audio.off)
    end
  end

  if options.personal_vpn
    UI.message("\tPersonal VPN")

    if on
      app.update_service(Spaceship.app_service.personal_vpn.on)
    else
      app.update_service(Spaceship.app_service.personal_vpn.off)
    end
  end

  # deprecated
  if options.passbook
    UI.message("\tPassbook")

    if on
      app.update_service(Spaceship.app_service.passbook.on)
    else
      app.update_service(Spaceship.app_service.passbook.off)
    end
  end

  if options.push_notification
    UI.message("\tPush Notifications")

    if on
      # Don't enable push notifications if already enabled
      # Enabling push notifications when already on revokes certs
      # https://github.com/fastlane/fastlane/issues/15315
      # https://github.com/fastlane/fastlane/issues/8883
      unless app.details.enable_services.include?("push")
        app.update_service(Spaceship.app_service.push_notification.on)
      end
    else
      app.update_service(Spaceship.app_service.push_notification.off)
    end
  end

  if options.sirikit
    UI.message("\tSiriKit")

    if on
      app.update_service(Spaceship.app_service.siri_kit.on)
    else
      app.update_service(Spaceship.app_service.siri_kit.off)
    end
  end

  # deprecated
  if options.vpn_conf
    UI.message("\tVPN Configuration")

    if on
      app.update_service(Spaceship.app_service.vpn_configuration.on)
    else
      app.update_service(Spaceship.app_service.vpn_configuration.off)
    end
  end

  if options.network_extension
    UI.message("\tNetwork Extension")

    if on
      app.update_service(Spaceship.app_service.network_extension.on)
    else
      app.update_service(Spaceship.app_service.network_extension.off)
    end
  end

  if options.hotspot
    UI.message("\tHotspot")

    if on
      app.update_service(Spaceship.app_service.hotspot.on)
    else
      app.update_service(Spaceship.app_service.hotspot.off)
    end
  end

  if options.multipath
    UI.message("\tMultipath")

    if on
      app.update_service(Spaceship.app_service.multipath.on)
    else
      app.update_service(Spaceship.app_service.multipath.off)
    end
  end

  if options.nfc_tag_reading
    UI.message("\tNFC Tag Reading")

    if on
      app.update_service(Spaceship.app_service.nfc_tag_reading.on)
    else
      app.update_service(Spaceship.app_service.nfc_tag_reading.off)
    end
  end

  updated
end

#valid_services_for(options) ⇒ Object



38
39
40
41
42
43
44
# File 'produce/lib/produce/service.rb', line 38

def valid_services_for(options)
  allowed_keys = [:access_wifi, :app_group, :apple_pay, :associated_domains, :auto_fill_credential, :data_protection, :game_center, :healthkit, :homekit,
                  :hotspot, :icloud, :in_app_purchase, :inter_app_audio, :multipath, :network_extension,
                  :nfc_tag_reading, :personal_vpn, :passbook, :push_notification, :sirikit, :vpn_conf,
                  :wallet, :wireless_conf]
  options.__hash__.select { |key, value| allowed_keys.include?(key) }
end