-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFireBase.swift
123 lines (105 loc) · 3.32 KB
/
FireBase.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
//
// FireBase.swift
// Union_Forums
//
// Created by Adam Long on 5/1/22.
//
import SwiftUI
import Firebase
import FirebaseStorage
public class AppAuthModel: ObservableObject
{
var errorStr: String = ""
let auth = Auth.auth()
//UID refers to the UID inputed & Error is an optional return refering to any errors returned.
func login(email: String, pass: String)
{
auth.signIn(withEmail: email, password: pass)
{
uid, error in
guard error == nil else
{
self.errorStr = error!.localizedDescription
if self.errorStr.elementsEqual("There is no user record corresponding to this identifier. The user may have been deleted.")
{
self.errorStr = "Email does not exist."
}
if self.errorStr.elementsEqual("The password is invalid or the user does not have a password.")
{
self.errorStr = "Password is incorrect."
}
return//both of these repeat themselves.
}
}
}
func signup(email: String, pass: String)
{
auth.createUser(withEmail: email, password: pass)
{
uid, error in
guard error == nil else
{
self.errorStr = error!.localizedDescription
return
}
}
}
func logout(stat: Bool) -> Bool
{
try! auth.signOut()
return !stat
}
func uploadImage(imageData: Data, path: String, completion: @escaping (String) -> ())
{
let storage = Storage.storage().reference()
let email = auth.currentUser!.email as! String//might need it to be UID but idk yet.
storage.child(path).child(email).putData(imageData, metadata: nil)
{
(_, err) in
if err != nil
{
completion("")
return
}
//21:00 ep1 for moah
storage.child(path).child(email).downloadURL
{
(url, err) in
if err != nil
{
completion("")
return
}
completion("\(url!)")
}
}
}
func createProfile(email: String, user: String, first: String, last: String, ava: String, bio: String)
{
let collectionRef = Firestore.firestore().collection("users")
collectionRef.document(email).setData(
[
// "UID": userUID,
"username": user,
"firstname": first,
"lastname": last,
"ava": ava,
"bio": bio
])
}
// func updateInformation(type: String, value: String)
// {
// let collectionRef = Firestore.firestore().collection("users")
// guard let userEmail: String = auth.currentUser?.email else {return}
//
// collectionRef.document(userEmail).updateData([
// type: value,
// ]) {err in
// if err != nil {return}
// }
// }
func errorShowAlert(error: String) -> Alert
{
return Alert(title: Text(error), dismissButton: .default(Text("Okay")))
}
}