-
Notifications
You must be signed in to change notification settings - Fork 3
/
Permissions.swift
282 lines (261 loc) · 7.4 KB
/
Permissions.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
//
// Permissions.swift
// PermissionDirector
//
// Created by SoolyChristina on 2018/10/22.
// Copyright © 2018 SoolyChristina. All rights reserved.
//
import Foundation
import EventKit
import AVFoundation
import Contacts
import UserNotifications
import NotificationCenter
import Photos
struct MicrophonePermission: PermissionProtocol {
var status: PermissionStatus {
let status = AVAudioSession.sharedInstance().recordPermission
switch status {
case .denied:
return .denied
case .granted:
return .authorized
case .undetermined:
return .notDetermined
default:
return .denied
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .microphone)
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
AVAudioSession.sharedInstance().requestRecordPermission { (granted) in
completionHandler(granted ? .authorized : .denied)
}
}
}
}
struct PhotoPermission: PermissionProtocol {
var status: PermissionStatus {
let status = PHPhotoLibrary.authorizationStatus()
switch status {
case .authorized:
return .authorized
case .denied:
return .denied
case .notDetermined:
return .notDetermined
case .restricted:
return .restricted
default:
return .denied
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .photo)
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
PHPhotoLibrary.requestAuthorization { (status) in
completionHandler(status == .authorized ? .authorized : .denied)
}
}
}
}
struct CameraPermission: PermissionProtocol {
var status: PermissionStatus {
let status = AVCaptureDevice.authorizationStatus(for: .video)
switch status {
case .denied:
return .denied
case .restricted:
return .restricted
case .notDetermined:
return .notDetermined
case .authorized:
return .authorized
default:
return .denied
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .camera)
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
AVCaptureDevice.requestAccess(for: .video) { (granted) in
granted ? completionHandler(.authorized) : completionHandler(.denied)
}
}
}
}
struct LocationPermission: PermissionProtocol {
init(type: PermissionType.LocationType) {
self.type = type
}
var status: PermissionStatus {
let status = CLLocationManager.authorizationStatus()
switch status {
case .denied:
return .denied
case .notDetermined:
return .notDetermined
case .authorizedAlways:
return (type == .always || type == .both) ? .authorized : .denied
case .authorizedWhenInUse:
return (type == .whenInUse || type == .both) ? .authorized : .denied
case .restricted:
return .restricted
default:
return .denied
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .location(type))
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
type == .always ? locationManager.requestAlwaysAuthorization() : locationManager.requestWhenInUseAuthorization()
}
}
private let type: PermissionType.LocationType
}
private let locationManager = CLLocationManager()
struct NotificationPermission: PermissionProtocol {
var status: PermissionStatus {
if #available(iOS 10.0, *) {
var status = UNAuthorizationStatus.denied
let sm = DispatchSemaphore(value: 0)
UNUserNotificationCenter.current().getNotificationSettings { (settings) in
status = settings.authorizationStatus
sm.signal()
}
_ = sm.wait(timeout: .now() + 10)
switch status {
case .authorized:
return .authorized
case .denied, .provisional:
return .denied
case .notDetermined:
return .notDetermined
default:
return .denied
}
} else {
return .notDetermined
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .notification)
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().requestAuthorization(options: [.badge, .sound, .alert]) { (granted, _) in
granted ? completionHandler(.authorized) : completionHandler(.denied)
}
} else {
let settings = UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil)
UIApplication.shared.registerUserNotificationSettings(settings)
UIApplication.shared.registerForRemoteNotifications()
}
}
}
}
struct PhonebookPermission: PermissionProtocol {
var status: PermissionStatus {
let status = CNContactStore .authorizationStatus(for: .contacts)
switch status {
case .denied:
return .denied
case .authorized:
return .authorized
case .notDetermined:
return .notDetermined
case .restricted:
return .restricted
default:
return .denied
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .phonebook)
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
let store = CNContactStore()
store.requestAccess(for: .contacts) { (granted, _) in
granted ? completionHandler(.authorized) : completionHandler(.denied)
}
}
}
}
struct CalendarPermission: PermissionProtocol {
init(type: EKEntityType) {
self.type = type
}
var status: PermissionStatus {
let status = EKEventStore.authorizationStatus(for: type)
switch status {
case .denied:
return .denied
case .authorized:
return .authorized
case .restricted:
return .restricted
case .notDetermined:
return .notDetermined
default:
return .denied
}
}
func requestAuthorization(completionHandler: @escaping Handler) {
switch status {
case .authorized:
completionHandler(.authorized)
case .denied, .restricted:
let alert = PermissionDirector.alertType.init(type: .calendar)
alert.show()
completionHandler(.unknow)
break
case .notDetermined:
let store = EKEventStore()
store.requestAccess(to: type) { (granted, _) in
granted ? completionHandler(.authorized) : completionHandler(.denied)
}
}
}
private let type: EKEntityType
}