-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddPostViewController.swift
237 lines (152 loc) · 7.66 KB
/
AddPostViewController.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
//
// AddPostViewController.swift
// GOT
//
// Created by Kenneth Okereke on 3/31/17.
// Copyright © 2017 Mexonis. All rights reserved.
//
import UIKit
import Firebase
import MobileCoreServices
import AVFoundation
class AddPostViewController: UIViewController , UIImagePickerControllerDelegate, UINavigationControllerDelegate {
@IBOutlet weak var postTextView: UITextView!
@IBOutlet weak var itsfreelabel: UILabel! {
didSet {
self.itsfreelabel.alpha = 0
}
}
@IBOutlet weak var postImageView: UIImageView! {
didSet{
self.postImageView.alpha = 0
}
}
@IBOutlet weak var postSwitch: UISwitch!
@IBOutlet weak var freeswitch: UISwitch!
var netService = NetworkingServices()
var videoURL: NSURL! = nil
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
@IBAction func postSwitchAction(_ sender: UISwitch) {
if postSwitch.isOn {
UIView.animate(withDuration: 0.5, animations: {
self.postImageView.alpha = 1.0
})
}else {
UIView.animate(withDuration: 0.5, animations: {
self.postImageView.alpha = 0
})
}
}
@IBAction func freeswitch(_sender: UISwitch) {
if freeswitch.isOn {
UIView.animate(withDuration: 0.5, animations: {
self.itsfreelabel.alpha = 1.0
})
}else {
UIView.animate(withDuration: 0.5, animations: {
self.itsfreelabel.alpha = 0
})
}
}
@IBAction func choosePostPicture(_ sender: UITapGestureRecognizer) {
let pickerController = UIImagePickerController()
pickerController.delegate = self
pickerController.allowsEditing = true
pickerController.mediaTypes = [kUTTypeMovie as String, kUTTypeImage as String]
let alertController = UIAlertController(title: "Add a Media", message: "Choose From", preferredStyle: .actionSheet)
let cameraAction = UIAlertAction(title: "Camera", style: .default) { (action) in
pickerController.sourceType = .camera
self.present(pickerController, animated: true, completion: nil)
}
let photosLibraryAction = UIAlertAction(title: "Media Library", style: .default) { (action) in
pickerController.sourceType = .photoLibrary
self.present(pickerController, animated: true, completion: nil)
}
let savedPhotosAction = UIAlertAction(title: "Saved Photos Album", style: .default) { (action) in
pickerController.sourceType = .savedPhotosAlbum
self.present(pickerController, animated: true, completion: nil)
}
let cancelAction = UIAlertAction(title: "Cancel", style: .destructive, handler: nil)
alertController.addAction(cameraAction)
alertController.addAction(photosLibraryAction)
alertController.addAction(savedPhotosAction)
alertController.addAction(cancelAction)
present(alertController, animated: true, completion: nil)
}
func getThumbnail(_ videoURL: URL) -> UIImage! {
do {
let asset = AVURLAsset(url: videoURL , options: nil)
let imgGenerator = AVAssetImageGenerator(asset: asset)
imgGenerator.appliesPreferredTrackTransform = true
let cgImage = try imgGenerator.copyCGImage(at: CMTimeMake(0, 1), actualTime: nil)
let thumbnail = UIImage(cgImage: cgImage)
return thumbnail
} catch let error {
print("*** Error generating thumbnail: \(error.localizedDescription)")
}
return nil
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {
self.dismiss(animated: true, completion: nil)
self.postImageView.image = nil
self.videoURL = nil
if let chosenvideo = info[UIImagePickerControllerMediaURL] as? NSURL {
print("Here's the file url", chosenvideo)
if let chosenImage = self.getThumbnail(chosenvideo as URL) {
self.postImageView.image = chosenImage
}
else {
self.postImageView.image = UIImage(named: "video-thumb")
}
self.videoURL = chosenvideo
}
if let chosenImage = info[UIImagePickerControllerOriginalImage] as? UIImage {
self.postImageView.image = chosenImage
}
}
func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
picker.dismiss(animated: true, completion: nil)
}
@IBAction func savePost(_ sender: CustomizableButton) {
SwiftLoader.show(animated: true)
self.view.endEditing(true)
let postText = postTextView.text ?? ""
let postId = NSUUID().uuidString
let postDate = NSDate().timeIntervalSince1970 as NSNumber
if postSwitch.isOn {
guard let image = self.postImageView.image else {
SwiftLoader.hide()
return
}
if let imageData = UIImageJPEGRepresentation(image, CGFloat(0.35)) {
self.netService.uploadImageToFirebase(postId: postId, imageData: imageData, completion: { (imgUrl) in
if let url = self.videoURL {
self.netService.uploadVideoToFirebase(postId: postId, videoURL: url, completion: { (vUrl) in
let post = Post(postId: postId, userId: FIRAuth.auth()!.currentUser!.uid, postText: postText, postVideoURL: String(describing:vUrl), postImageURL: String(describing:imgUrl), postDate: postDate, type:"VIDEO")
self.netService.savePostToDB(post: post, completed: {
SwiftLoader.hide()
self.dismiss(animated: true, completion: nil)
})
})
}
else {
let post = Post(postId: postId, userId: FIRAuth.auth()!.currentUser!.uid, postText: postText, postImageURL: String(describing:imgUrl), postDate: postDate, type:"IMAGE")
self.netService.savePostToDB(post: post, completed: {
SwiftLoader.hide()
self.dismiss(animated: true, completion: nil)
})
}
})
}
} else {
let post = Post(postId: postId, userId: FIRAuth.auth()!.currentUser!.uid, postText: postText, postImageURL: "", postDate: postDate, type: "TEXT")
self.netService.savePostToDB(post: post, completed: {
SwiftLoader.hide()
self.dismiss(animated: true, completion: nil)
})
}
}
}