cofounderella/lib/services/auth/auth_service.dart

65 lines
1.5 KiB
Dart

import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import '../../constants.dart';
class AuthService {
// instance of auth and firestore
final FirebaseAuth _auth = FirebaseAuth.instance;
final FirebaseFirestore _firestore = FirebaseFirestore.instance;
// get current user
User? getCurrentUser() {
return _auth.currentUser;
}
/// sign in (login)
///
/// @throws FirebaseAuthException
Future<UserCredential> signInWithEmailPassword(String email, password) async {
try {
UserCredential userCredential = await _auth.signInWithEmailAndPassword(
email: email,
password: password,
);
return userCredential;
} on FirebaseAuthException {
rethrow;
}
}
/// sign up (register)
///
/// @throws FirebaseAuthException
Future<UserCredential> signUpWithEmailPassword(String email, password) async {
try {
// create user
UserCredential userCredential =
await _auth.createUserWithEmailAndPassword(
email: email,
password: password,
);
// save user info in a document
_firestore
.collection(Constants.dbCollectionUsers)
.doc(userCredential.user!.uid)
.set(
{
'uid': userCredential.user!.uid,
'email': email,
},
);
return userCredential;
} on FirebaseAuthException {
rethrow;
}
}
// sign out
Future<void> signOut() async {
return await _auth.signOut();
}
}