Files
superport/lib/data/datasources/remote/company_remote_datasource.dart
JiWoong Sul 553f605e8b feat: 사용자 관리 API 연동 구현
- UserRemoteDataSource: 사용자 CRUD, 상태 변경, 비밀번호 변경, 중복 확인 API 구현
- UserService: DTO-Model 변환 로직 및 역할/전화번호 매핑 처리
- UserListController: ChangeNotifier 패턴 적용, 페이지네이션, 검색, 필터링 기능 추가
- UserFormController: API 연동, username 중복 확인 기능 추가
- user_form.dart: username/password 필드 추가 및 실시간 검증
- user_list_redesign.dart: Provider 패턴 적용, 무한 스크롤 구현
- equipment_out_form_controller.dart: 구문 오류 수정
- API 통합 진행률: 85% (사용자 관리 100% 완료)
2025-07-24 19:37:58 +09:00

386 lines
11 KiB
Dart

import 'package:dio/dio.dart';
import 'package:get_it/get_it.dart';
import 'package:injectable/injectable.dart';
import 'package:superport/core/constants/api_endpoints.dart';
import 'package:superport/core/errors/exceptions.dart';
import 'package:superport/data/datasources/remote/api_client.dart';
import 'package:superport/data/models/common/api_response.dart';
import 'package:superport/data/models/common/paginated_response.dart';
import 'package:superport/data/models/company/company_dto.dart';
import 'package:superport/data/models/company/company_list_dto.dart';
import 'package:superport/data/models/company/branch_dto.dart';
abstract class CompanyRemoteDataSource {
Future<PaginatedResponse<CompanyListDto>> getCompanies({
int page = 1,
int perPage = 20,
String? search,
bool? isActive,
});
Future<CompanyResponse> createCompany(CreateCompanyRequest request);
Future<CompanyResponse> getCompanyDetail(int id);
Future<CompanyWithBranches> getCompanyWithBranches(int id);
Future<CompanyResponse> updateCompany(int id, UpdateCompanyRequest request);
Future<void> deleteCompany(int id);
Future<List<CompanyNameDto>> getCompanyNames();
Future<List<CompanyWithBranches>> getCompaniesWithBranches();
Future<bool> checkDuplicateCompany(String name);
Future<List<CompanyListDto>> searchCompanies(String query);
Future<void> updateCompanyStatus(int id, bool isActive);
// Branch related methods
Future<BranchResponse> createBranch(int companyId, CreateBranchRequest request);
Future<BranchResponse> getBranchDetail(int companyId, int branchId);
Future<BranchResponse> updateBranch(int companyId, int branchId, UpdateBranchRequest request);
Future<void> deleteBranch(int companyId, int branchId);
Future<List<BranchListDto>> getCompanyBranches(int companyId);
}
@LazySingleton(as: CompanyRemoteDataSource)
class CompanyRemoteDataSourceImpl implements CompanyRemoteDataSource {
final ApiClient _apiClient;
CompanyRemoteDataSourceImpl(this._apiClient);
@override
Future<PaginatedResponse<CompanyListDto>> getCompanies({
int page = 1,
int perPage = 20,
String? search,
bool? isActive,
}) async {
try {
final queryParams = {
'page': page,
'per_page': perPage,
if (search != null) 'search': search,
if (isActive != null) 'is_active': isActive,
};
final response = await _apiClient.get(
ApiEndpoints.companies,
queryParameters: queryParams,
);
if (response.statusCode == 200) {
final apiResponse = ApiResponse<PaginatedResponse<CompanyListDto>>.fromJson(
response.data,
(json) => PaginatedResponse<CompanyListDto>.fromJson(
json,
(item) => CompanyListDto.fromJson(item),
),
);
return apiResponse.data;
} else {
throw ApiException(
message: 'Failed to load companies',
statusCode: response.statusCode,
);
}
} catch (e) {
if (e is ApiException) rethrow;
throw ApiException(message: e.toString());
}
}
@override
Future<CompanyResponse> createCompany(CreateCompanyRequest request) async {
try {
final response = await _apiClient.post(
ApiEndpoints.companies,
data: request.toJson(),
);
if (response.statusCode == 201) {
final apiResponse = ApiResponse<CompanyResponse>.fromJson(
response.data,
(json) => CompanyResponse.fromJson(json),
);
return apiResponse.data;
} else {
throw ApiException(
message: 'Failed to create company',
statusCode: response.statusCode,
);
}
} catch (e) {
if (e is ApiException) rethrow;
throw ApiException(message: e.toString());
}
}
@override
Future<CompanyResponse> getCompanyDetail(int id) async {
try {
final response = await _apiClient.dio.get(
'${ApiEndpoints.companies}/$id',
);
return CompanyResponse.fromJson(response.data['data']);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to fetch company detail',
code: e.response?.statusCode,
);
}
}
@override
Future<CompanyWithBranches> getCompanyWithBranches(int id) async {
try {
final response = await _apiClient.dio.get(
'${ApiEndpoints.companies}/$id/with-branches',
);
return CompanyWithBranches.fromJson(response.data['data']);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to fetch company with branches',
code: e.response?.statusCode,
);
}
}
@override
Future<CompanyResponse> updateCompany(int id, UpdateCompanyRequest request) async {
try {
final response = await _apiClient.dio.put(
'${ApiEndpoints.companies}/$id',
data: request.toJson(),
);
return CompanyResponse.fromJson(response.data['data']);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to update company',
code: e.response?.statusCode,
);
}
}
@override
Future<void> deleteCompany(int id) async {
try {
await _apiClient.dio.delete(
'${ApiEndpoints.companies}/$id',
);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to delete company',
code: e.response?.statusCode,
);
}
}
@override
Future<List<CompanyNameDto>> getCompanyNames() async {
try {
final response = await _apiClient.dio.get(
'${ApiEndpoints.companies}/names',
);
final List<dynamic> data = response.data['data'];
return data.map((json) => CompanyNameDto.fromJson(json)).toList();
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to fetch company names',
code: e.response?.statusCode,
);
}
}
// Branch methods
@override
Future<BranchResponse> createBranch(int companyId, CreateBranchRequest request) async {
try {
final response = await _apiClient.dio.post(
'${ApiEndpoints.companies}/$companyId/branches',
data: request.toJson(),
);
return BranchResponse.fromJson(response.data['data']);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to create branch',
code: e.response?.statusCode,
);
}
}
@override
Future<BranchResponse> getBranchDetail(int companyId, int branchId) async {
try {
final response = await _apiClient.dio.get(
'${ApiEndpoints.companies}/$companyId/branches/$branchId',
);
return BranchResponse.fromJson(response.data['data']);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to fetch branch detail',
code: e.response?.statusCode,
);
}
}
@override
Future<BranchResponse> updateBranch(int companyId, int branchId, UpdateBranchRequest request) async {
try {
final response = await _apiClient.dio.put(
'${ApiEndpoints.companies}/$companyId/branches/$branchId',
data: request.toJson(),
);
return BranchResponse.fromJson(response.data['data']);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to update branch',
code: e.response?.statusCode,
);
}
}
@override
Future<void> deleteBranch(int companyId, int branchId) async {
try {
await _apiClient.dio.delete(
'${ApiEndpoints.companies}/$companyId/branches/$branchId',
);
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to delete branch',
code: e.response?.statusCode,
);
}
}
@override
Future<List<BranchListDto>> getCompanyBranches(int companyId) async {
try {
final response = await _apiClient.dio.get(
'${ApiEndpoints.companies}/$companyId/branches',
);
final List<dynamic> data = response.data['data'];
return data.map((json) => BranchListDto.fromJson(json)).toList();
} on DioException catch (e) {
throw ServerException(
message: e.response?.data['message'] ?? 'Failed to fetch company branches',
code: e.response?.statusCode,
);
}
}
@override
Future<List<CompanyWithBranches>> getCompaniesWithBranches() async {
try {
final response = await _apiClient.get('${ApiEndpoints.companies}/branches');
if (response.statusCode == 200) {
final apiResponse = ApiResponse<List<CompanyWithBranches>>.fromJson(
response.data,
(json) => (json as List)
.map((item) => CompanyWithBranches.fromJson(item))
.toList(),
);
return apiResponse.data;
} else {
throw ApiException(
message: 'Failed to load companies with branches',
statusCode: response.statusCode,
);
}
} catch (e) {
if (e is ApiException) rethrow;
throw ApiException(message: e.toString());
}
}
@override
Future<bool> checkDuplicateCompany(String name) async {
try {
final response = await _apiClient.get(
'${ApiEndpoints.companies}/check-duplicate',
queryParameters: {'name': name},
);
if (response.statusCode == 200) {
final apiResponse = ApiResponse<Map<String, dynamic>>.fromJson(
response.data,
(json) => json,
);
return apiResponse.data['exists'] ?? false;
} else {
throw ApiException(
message: 'Failed to check duplicate',
statusCode: response.statusCode,
);
}
} catch (e) {
if (e is ApiException) rethrow;
throw ApiException(message: e.toString());
}
}
@override
Future<List<CompanyListDto>> searchCompanies(String query) async {
try {
final response = await _apiClient.get(
'${ApiEndpoints.companies}/search',
queryParameters: {'q': query},
);
if (response.statusCode == 200) {
final apiResponse = ApiResponse<List<CompanyListDto>>.fromJson(
response.data,
(json) => (json as List)
.map((item) => CompanyListDto.fromJson(item))
.toList(),
);
return apiResponse.data;
} else {
throw ApiException(
message: 'Failed to search companies',
statusCode: response.statusCode,
);
}
} catch (e) {
if (e is ApiException) rethrow;
throw ApiException(message: e.toString());
}
}
@override
Future<void> updateCompanyStatus(int id, bool isActive) async {
try {
final response = await _apiClient.patch(
'${ApiEndpoints.companies}/$id/status',
data: {'is_active': isActive},
);
if (response.statusCode != 200) {
throw ApiException(
message: 'Failed to update company status',
statusCode: response.statusCode,
);
}
} catch (e) {
if (e is ApiException) rethrow;
throw ApiException(message: e.toString());
}
}
}