-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathViewController.swift
256 lines (199 loc) · 9.8 KB
/
ViewController.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
//
// ViewController.swift
// NamesToFaces
//
// Created by Julian Moorhouse on 06/08/2019.
// Copyright © 2019 Mindwarp Consultancy Ltd. All rights reserved.
//
import LocalAuthentication
import UIKit
class ViewController: UICollectionViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
let KEY_PASSWORD = "Password"
var people = [Person]()
override func viewDidLoad() {
super.viewDidLoad()
let setPasswordButton = UIBarButtonItem(barButtonSystemItem: .organize, target: self, action: #selector(setPassword))
let addPerson = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(addNewPerson))
var arr = [addPerson]
checkBiometry({
// print("found")
}) {
let text = KeychainWrapper.standard.string(forKey: KEY_PASSWORD) ?? ""
if text == "" {
arr.append(setPasswordButton)
}
}
navigationItem.leftBarButtonItems = arr
navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .play, target: self, action: #selector(authenticate))
}
override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return people.count
}
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Person", for: indexPath) as? PersonCell else {
fatalError("Unable to dequeue PersonCell")
}
let person = people[indexPath.item]
cell.Name.text = person.name
let path = getDocumentsDirectory().appendingPathComponent(person.image)
cell.ImageView.image = UIImage(contentsOfFile: path.path)
cell.ImageView.layer.borderColor = UIColor(white: 0, alpha: 0.3).cgColor
cell.ImageView.layer.borderWidth = 2
cell.ImageView.layer.cornerRadius = 3
cell.layer.cornerRadius = 7
return cell
}
override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
let person = people[indexPath.item]
let ac = UIAlertController(title: "Person", message: "Would you like to rename or delete this person?", preferredStyle: .alert)
ac.addTextField()
ac.addAction(UIAlertAction(title: "Rename", style: .default) {
[weak self, weak ac] _ in
guard let newName = ac?.textFields?[0].text else { return }
person.name = newName
self?.save()
self?.collectionView.reloadData()
})
ac.addAction(UIAlertAction(title: "Delete", style: .default) {
[weak self] _ in
self?.people.remove(at: indexPath.item)
self?.save()
self?.collectionView.reloadData()
})
ac.addAction(UIAlertAction(title: "Cancel", style: .cancel))
present(ac, animated: true)
}
@objc func addNewPerson() {
let picker = UIImagePickerController()
picker.allowsEditing = true
picker.delegate = self
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerController.SourceType.camera) {
picker.sourceType = UIImagePickerController.SourceType.camera
}
present(picker, animated: true)
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey: Any]) {
guard let image = info[.editedImage] as? UIImage else { return }
let imageName = UUID().uuidString
let imagePath = getDocumentsDirectory().appendingPathComponent(imageName)
if let jpegData = image.jpegData(compressionQuality: 0.8) {
try? jpegData.write(to: imagePath)
}
let person = Person(name: "Unknown", image: imageName)
people.append(person)
save()
collectionView.reloadData()
dismiss(animated: true)
}
func getDocumentsDirectory() -> URL {
let paths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
return paths[0]
}
func save() {
let jsonEncoder = JSONEncoder()
if let savedDate = try? jsonEncoder.encode(people) {
let defaults = UserDefaults.standard
defaults.set(savedDate, forKey: "people")
} else {
print("Failed to save people")
}
}
func loadPeople() {
let defaults = UserDefaults.standard
if let savedpeople = defaults.object(forKey: "people") as? Data {
let jsonDecoder = JSONDecoder()
do {
people = try jsonDecoder.decode([Person].self, from: savedpeople)
collectionView.reloadData()
} catch {
print("Failed to load people.")
}
}
}
@objc func authenticate() {
checkBiometry({
// found
let context = LAContext()
let reason = "Identifiy yourself!" // for touch id
context.evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: reason) { [weak self] success, _ in
DispatchQueue.main.async {
if success {
self?.loadPeople()
} else {
let ac = UIAlertController(title: "Authentication failed", message: "You could not be verified. Please try again.", preferredStyle: .alert)
ac.addAction(UIAlertAction(title: "OK", style: .default))
self?.present(ac, animated: true)
}
}
}
}) {
// not found
let ac = UIAlertController(title: "App Pasword", message: "Please provide your password!", preferredStyle: .alert)
let okAction = UIAlertAction(title: "OK", style: .default) {
[weak self, weak ac] _ in
guard let previousPassword = ac?.textFields?[0].text else { return }
if let text = KeychainWrapper.standard.string(forKey: self!.KEY_PASSWORD) {
if previousPassword == text {
self?.loadPeople()
} else {
let ac2 = UIAlertController(title: "App Pasword", message: "Password incorrect!", preferredStyle: .alert)
ac2.addAction(UIAlertAction(title: "OK", style: .default))
self?.present(ac2, animated: true)
}
}
}
ac.addAction(okAction)
ac.addTextField(configurationHandler: { textField in
textField.placeholder = "Password"
textField.isSecureTextEntry = true
})
ac.addAction(UIAlertAction(title: "Cancel", style: .cancel))
present(ac, animated: true)
}
}
func checkBiometry(_ foundCompletion: () -> (), _ notFoundCompletion: () -> ()) {
// https://stackoverflow.com/questions/29824488/when-to-use-closures-in-swift
let context = LAContext()
var error: NSError?
if context.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
foundCompletion()
} else {
notFoundCompletion()
}
}
@objc func setPassword() {
let ac = UIAlertController(title: "App Pasword", message: "Please provide a password!", preferredStyle: .alert)
let saveAction = UIAlertAction(title: "Save", style: .default) {
[weak ac] _ in
guard let text = ac?.textFields?[0].text else { return }
let saveSuccessful: Bool = KeychainWrapper.standard.set(text, forKey: self.KEY_PASSWORD)
print("SaveSuccessful=\(saveSuccessful)")
}
saveAction.isEnabled = false
ac.addAction(saveAction)
ac.addTextField(configurationHandler: { textField in
textField.placeholder = "Password"
textField.isSecureTextEntry = true
NotificationCenter.default.addObserver(forName: UITextField.textDidChangeNotification, object: textField, queue: OperationQueue.main, using: { _ in
let textCount = textField.text?.trimmingCharacters(in: .whitespacesAndNewlines).count ?? 0
let textIsNotEmpty = textCount > 0
guard let repeatPassword = ac.textFields?[1].text else { return }
let same = textField.text == repeatPassword
saveAction.isEnabled = textIsNotEmpty && same
})
})
ac.addTextField(configurationHandler: { textField in
textField.placeholder = "Repeat password"
textField.isSecureTextEntry = true
NotificationCenter.default.addObserver(forName: UITextField.textDidChangeNotification, object: textField, queue: OperationQueue.main, using: { _ in
let textCount = textField.text?.trimmingCharacters(in: .whitespacesAndNewlines).count ?? 0
let textIsNotEmpty = textCount > 0
guard let password = ac.textFields?[0].text else { return }
let same = password == textField.text
saveAction.isEnabled = textIsNotEmpty && same
})
})
ac.addAction(UIAlertAction(title: "Cancel", style: .cancel))
present(ac, animated: true)
}
}