Files
superport/lib/services/user_service.dart
JiWoong Sul 71b7b7f40b feat: API 연동 개선 및 라이선스 모델 확장
- 라이선스 모델 전면 개편 (상세 필드 추가, 계산 필드 구현)
- API 응답 처리 개선 (HTTP 상태 코드 기반)
- 장비 출고 폼 컨트롤러 추가
- 회사 지점 정보 모델 추가
- 공통 데이터 모델 구조 추가
- 전체 서비스 레이어 API 호출 방식 통일
- UI 컴포넌트 마이너 개선
2025-07-25 01:22:15 +09:00

230 lines
5.9 KiB
Dart

import 'package:injectable/injectable.dart';
import 'package:superport/data/datasources/remote/user_remote_datasource.dart';
import 'package:superport/data/models/user/user_dto.dart';
import 'package:superport/models/user_model.dart';
@lazySingleton
class UserService {
final UserRemoteDataSource _userRemoteDataSource;
UserService() : _userRemoteDataSource = UserRemoteDataSource();
/// 사용자 목록 조회
Future<List<User>> getUsers({
int page = 1,
int perPage = 20,
bool? isActive,
int? companyId,
String? role,
}) async {
try {
final response = await _userRemoteDataSource.getUsers(
page: page,
perPage: perPage,
isActive: isActive,
companyId: companyId,
role: role != null ? _mapRoleToApi(role) : null,
);
return response.users.map((dto) => _userDtoToModel(dto)).toList();
} catch (e) {
throw Exception('사용자 목록 조회 실패: ${e.toString()}');
}
}
/// 특정 사용자 조회
Future<User> getUser(int id) async {
try {
final dto = await _userRemoteDataSource.getUser(id);
return _userDtoToModel(dto);
} catch (e) {
throw Exception('사용자 조회 실패: ${e.toString()}');
}
}
/// 사용자 생성
Future<User> createUser({
required String username,
required String email,
required String password,
required String name,
required String role,
required int companyId,
int? branchId,
String? phone,
String? position,
}) async {
try {
final request = CreateUserRequest(
username: username,
email: email,
password: password,
name: name,
role: _mapRoleToApi(role),
companyId: companyId,
branchId: branchId,
phone: phone,
);
final dto = await _userRemoteDataSource.createUser(request);
return _userDtoToModel(dto);
} catch (e) {
throw Exception('사용자 생성 실패: ${e.toString()}');
}
}
/// 사용자 정보 수정
Future<User> updateUser(
int id, {
String? name,
String? email,
String? password,
String? phone,
int? companyId,
int? branchId,
String? role,
String? position,
}) async {
try {
final request = UpdateUserRequest(
name: name,
email: email,
password: password,
phone: phone,
companyId: companyId,
branchId: branchId,
role: role != null ? _mapRoleToApi(role) : null,
);
final dto = await _userRemoteDataSource.updateUser(id, request);
return _userDtoToModel(dto);
} catch (e) {
throw Exception('사용자 수정 실패: ${e.toString()}');
}
}
/// 사용자 삭제
Future<void> deleteUser(int id) async {
try {
await _userRemoteDataSource.deleteUser(id);
} catch (e) {
throw Exception('사용자 삭제 실패: ${e.toString()}');
}
}
/// 사용자 상태 변경
Future<User> changeUserStatus(int id, bool isActive) async {
try {
final request = ChangeStatusRequest(isActive: isActive);
final dto = await _userRemoteDataSource.changeUserStatus(id, request);
return _userDtoToModel(dto);
} catch (e) {
throw Exception('사용자 상태 변경 실패: ${e.toString()}');
}
}
/// 비밀번호 변경
Future<void> changePassword(
int id,
String currentPassword,
String newPassword,
) async {
try {
final request = ChangePasswordRequest(
currentPassword: currentPassword,
newPassword: newPassword,
);
await _userRemoteDataSource.changePassword(id, request);
} catch (e) {
throw Exception('비밀번호 변경 실패: ${e.toString()}');
}
}
/// 사용자명 중복 확인
Future<bool> checkDuplicateUsername(String username) async {
try {
return await _userRemoteDataSource.checkDuplicateUsername(username);
} catch (e) {
throw Exception('중복 확인 실패: ${e.toString()}');
}
}
/// 사용자 검색
Future<List<User>> searchUsers({
required String query,
int? companyId,
String? status,
String? permissionLevel,
int page = 1,
int perPage = 20,
}) async {
try {
final response = await _userRemoteDataSource.searchUsers(
query: query,
companyId: companyId,
status: status,
permissionLevel: permissionLevel != null
? _mapRoleToApi(permissionLevel)
: null,
page: page,
perPage: perPage,
);
return response.users.map((dto) => _userDtoToModel(dto)).toList();
} catch (e) {
throw Exception('사용자 검색 실패: ${e.toString()}');
}
}
/// DTO를 Model로 변환
User _userDtoToModel(UserDto dto) {
return User(
id: dto.id,
companyId: dto.companyId ?? 0,
branchId: dto.branchId,
name: dto.name,
role: _mapRoleFromApi(dto.role),
position: null, // API에서 position 정보가 없음
email: dto.email,
phoneNumbers: dto.phone != null
? [{'type': '기본', 'number': dto.phone!}]
: [],
username: dto.username,
isActive: dto.isActive,
createdAt: dto.createdAt,
updatedAt: dto.updatedAt,
);
}
/// 권한을 API 형식으로 변환
String _mapRoleToApi(String role) {
switch (role) {
case 'S':
return 'admin';
case 'M':
return 'staff';
default:
return 'staff';
}
}
/// API 권한을 앱 형식으로 변환
String _mapRoleFromApi(String role) {
switch (role) {
case 'admin':
return 'S';
case 'manager':
return 'M';
case 'staff':
return 'M';
default:
return 'M';
}
}
/// 전화번호 목록에서 첫 번째 전화번호 추출
String? getPhoneForApi(List<Map<String, String>> phoneNumbers) {
if (phoneNumbers.isEmpty) return null;
return phoneNumbers.first['number'];
}
}