mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
4376104e3a
* rename api tags to follow plural nomenclature of endpoints * chore: open api * fix mobile
81 lines
2.2 KiB
Dart
81 lines
2.2 KiB
Dart
import 'package:immich_mobile/constants/errors.dart';
|
|
import 'package:immich_mobile/mixins/error_logger.mixin.dart';
|
|
import 'package:immich_mobile/models/activities/activity.model.dart';
|
|
import 'package:immich_mobile/services/api.service.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
class ActivityService with ErrorLoggerMixin {
|
|
final ApiService _apiService;
|
|
|
|
@override
|
|
final Logger logger = Logger("ActivityService");
|
|
|
|
ActivityService(this._apiService);
|
|
|
|
Future<List<Activity>> getAllActivities(
|
|
String albumId, {
|
|
String? assetId,
|
|
}) async {
|
|
return logError(
|
|
() async {
|
|
final list = await _apiService.activitiesApi
|
|
.getActivities(albumId, assetId: assetId);
|
|
return list != null ? list.map(Activity.fromDto).toList() : [];
|
|
},
|
|
defaultValue: [],
|
|
errorMessage: "Failed to get all activities for album $albumId",
|
|
);
|
|
}
|
|
|
|
Future<int> getStatistics(String albumId, {String? assetId}) async {
|
|
return logError(
|
|
() async {
|
|
final dto = await _apiService.activitiesApi
|
|
.getActivityStatistics(albumId, assetId: assetId);
|
|
return dto?.comments ?? 0;
|
|
},
|
|
defaultValue: 0,
|
|
errorMessage: "Failed to statistics for album $albumId",
|
|
);
|
|
}
|
|
|
|
Future<bool> removeActivity(String id) async {
|
|
return logError(
|
|
() async {
|
|
await _apiService.activitiesApi.deleteActivity(id);
|
|
return true;
|
|
},
|
|
defaultValue: false,
|
|
errorMessage: "Failed to delete activity",
|
|
);
|
|
}
|
|
|
|
AsyncFuture<Activity> addActivity(
|
|
String albumId,
|
|
ActivityType type, {
|
|
String? assetId,
|
|
String? comment,
|
|
}) async {
|
|
return guardError(
|
|
() async {
|
|
final dto = await _apiService.activitiesApi.createActivity(
|
|
ActivityCreateDto(
|
|
albumId: albumId,
|
|
type: type == ActivityType.comment
|
|
? ReactionType.comment
|
|
: ReactionType.like,
|
|
assetId: assetId,
|
|
comment: comment,
|
|
),
|
|
);
|
|
if (dto != null) {
|
|
return Activity.fromDto(dto);
|
|
}
|
|
throw NoResponseDtoError();
|
|
},
|
|
errorMessage: "Failed to create $type for album $albumId",
|
|
);
|
|
}
|
|
}
|