baseproject
This commit is contained in:
82
base_project/lib/repository/profile/profile_repo.dart
Normal file
82
base_project/lib/repository/profile/profile_repo.dart
Normal file
@@ -0,0 +1,82 @@
|
||||
import 'package:base_project/data/network/base_network_service.dart';
|
||||
import 'package:base_project/data/network/network_api_service.dart';
|
||||
import 'package:base_project/resources/api_constants.dart';
|
||||
|
||||
class ProfileRepo {
|
||||
final BaseNetworkService _networkService = NetworkApiService();
|
||||
|
||||
Future<dynamic> getProfileImgApi() async {
|
||||
try {
|
||||
final response = _networkService
|
||||
.getGetApiResponse(ApiConstants.getUserProfileImgEndpoint);
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
Future<dynamic> getProfileApi() async {
|
||||
try {
|
||||
final response = _networkService
|
||||
.getGetApiResponse(ApiConstants.getUserProfileEndpoint);
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
Future<dynamic> updateProfileApi(dynamic data, dynamic uId) async {
|
||||
final uri = Uri.parse("${ApiConstants.updateUserProfileEndpoint}/$uId");
|
||||
|
||||
try {
|
||||
final response =
|
||||
await _networkService.getPutApiResponse(uri.toString(), data);
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
Future<dynamic> updateProfileImg(dynamic data) async {
|
||||
try {
|
||||
final response = await _networkService.getPostApiResponse(
|
||||
ApiConstants.updateUserProfileImgEndpoint, data);
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
Future<dynamic> changPassApi(dynamic data) async {
|
||||
try {
|
||||
final response = await _networkService.getPostApiResponse(
|
||||
ApiConstants.changePasswordEndpoint, data);
|
||||
print('chan res $response');
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
Future<dynamic> forgotPassApi(dynamic data) async {
|
||||
try {
|
||||
final response = await _networkService.getPostApiResponse(
|
||||
ApiConstants.forgotPasswordEndpoint, data);
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
// Update System Account
|
||||
Future<dynamic> updateAccountApi(dynamic accId, dynamic data) async {
|
||||
final uri = Uri.parse("${ApiConstants.updateAcEndpoint}/$accId");
|
||||
try {
|
||||
final response =
|
||||
await _networkService.getPutApiResponse(uri.toString(), data);
|
||||
return response;
|
||||
} catch (e) {
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user