|
@@ -6,17 +6,18 @@ class AuthService {
|
|
|
|
|
|
// Convert a Firebase User to a custom User
|
|
|
User? _userFromFirebase(firebase_auth.User? user) {
|
|
|
- return user != null ?
|
|
|
- User(
|
|
|
- uid: user.uid,
|
|
|
- email: '',
|
|
|
- phoneNumber: '',
|
|
|
- icNumber: '',
|
|
|
- password: '',
|
|
|
- // carID: '',
|
|
|
- // carBrand: '',
|
|
|
- // carColor: ''
|
|
|
- ) : null;
|
|
|
+ return user != null
|
|
|
+ ? User(
|
|
|
+ uid: user.uid,
|
|
|
+ email: '',
|
|
|
+ phoneNumber: '',
|
|
|
+ icNumber: '',
|
|
|
+ password: '',
|
|
|
+ // carID: '',
|
|
|
+ // carBrand: '',
|
|
|
+ // carColor: ''
|
|
|
+ )
|
|
|
+ : null;
|
|
|
}
|
|
|
|
|
|
// Auth change user stream
|
|
@@ -27,8 +28,7 @@ class AuthService {
|
|
|
// Sign in anonymously
|
|
|
Future<User?> signInAnonymously() async {
|
|
|
try {
|
|
|
- firebase_auth.UserCredential authResult = await
|
|
|
- _auth.signInAnonymously();
|
|
|
+ firebase_auth.UserCredential authResult = await _auth.signInAnonymously();
|
|
|
User? user = _userFromFirebase(authResult.user);
|
|
|
if (user != null) {
|
|
|
print('User signed in anonymously with UID: ${user.uid}');
|
|
@@ -41,11 +41,11 @@ class AuthService {
|
|
|
}
|
|
|
|
|
|
// Sign in with email and password
|
|
|
- Future<User?> signInWithEmailAndPassword(String email, String password) async
|
|
|
- {
|
|
|
+ Future<User?> signInWithEmailAndPassword(
|
|
|
+ String email, String password) async {
|
|
|
try {
|
|
|
- firebase_auth.UserCredential authResult = await
|
|
|
- _auth.signInWithEmailAndPassword(
|
|
|
+ firebase_auth.UserCredential authResult =
|
|
|
+ await _auth.signInWithEmailAndPassword(
|
|
|
email: email,
|
|
|
password: password,
|
|
|
);
|
|
@@ -57,13 +57,13 @@ class AuthService {
|
|
|
}
|
|
|
|
|
|
// Register with email and password
|
|
|
- Future<User?> registerWithEmailAndPassword(String email, String password)
|
|
|
- async {
|
|
|
+ Future<User?> registerWithEmailAndPassword(
|
|
|
+ String email, String password) async {
|
|
|
try {
|
|
|
- firebase_auth.UserCredential authResult = await
|
|
|
- _auth.createUserWithEmailAndPassword(
|
|
|
- email: email,
|
|
|
- password: password,
|
|
|
+ firebase_auth.UserCredential authResult =
|
|
|
+ await _auth.createUserWithEmailAndPassword(
|
|
|
+ email: email,
|
|
|
+ password: password,
|
|
|
);
|
|
|
return _userFromFirebase(authResult.user);
|
|
|
} catch (e) {
|
|
@@ -80,4 +80,4 @@ class AuthService {
|
|
|
print('Error signing out: $e');
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
+}
|