45 lines
1.2 KiB
Dart
45 lines
1.2 KiB
Dart
import 'package:dartz/dartz.dart';
|
|
import 'package:enaklo_pos/core/constants/variables.dart';
|
|
import 'package:enaklo_pos/data/datasources/auth_local_datasource.dart';
|
|
import 'package:enaklo_pos/data/models/response/auth_response_model.dart';
|
|
import 'package:http/http.dart' as http;
|
|
|
|
class AuthRemoteDatasource {
|
|
Future<Either<String, AuthResponseModel>> login(
|
|
String email, String password) async {
|
|
final url = Uri.parse('${Variables.baseUrl}/api/login');
|
|
final response = await http.post(
|
|
url,
|
|
body: {
|
|
'email': email,
|
|
'password': password,
|
|
},
|
|
);
|
|
|
|
if (response.statusCode == 200) {
|
|
return Right(AuthResponseModel.fromJson(response.body));
|
|
} else {
|
|
return const Left('Failed to login');
|
|
}
|
|
}
|
|
|
|
//logout
|
|
Future<Either<String, bool>> logout() async {
|
|
final authData = await AuthLocalDataSource().getAuthData();
|
|
final url = Uri.parse('${Variables.baseUrl}/api/logout');
|
|
final response = await http.post(
|
|
url,
|
|
headers: {
|
|
'Authorization': 'Bearer ${authData.token}',
|
|
'Accept': 'application/json',
|
|
},
|
|
);
|
|
|
|
if (response.statusCode == 200) {
|
|
return const Right(true);
|
|
} else {
|
|
return const Left('Failed to logout');
|
|
}
|
|
}
|
|
}
|