-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPreparationBloc.dart
245 lines (240 loc) · 10.8 KB
/
PreparationBloc.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import 'dart:io';
import 'dart:isolate';
import 'package:decentproof/features/hashing/bloc/PreparationBloc/PerparationEvents.dart';
import 'package:decentproof/features/hashing/bloc/PreparationBloc/PerparationStates.dart';
import 'package:decentproof/features/hashing/interfaces/IFileSavingService.dart';
import 'package:decentproof/features/hashing/logic/foregroundService/PerperationTaskHandler.dart';
import 'package:decentproof/shared/foregroundService/IForegroundService.dart';
import 'package:decentproof/features/hashing/interfaces/IHashingService.dart';
import 'package:decentproof/features/metadata/interfaces/ILocationService.dart';
import 'package:decentproof/features/metadata/interfaces/IMetaDataPermissionService.dart';
import 'package:decentproof/features/metadata/interfaces/IMetaDataService.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:get_it/get_it.dart';
import 'package:photo_manager/photo_manager.dart';
import 'package:sentry_flutter/sentry_flutter.dart';
import '../../interfaces/IWaterMarkService.dart';
/// Deals with Hashing, Watermarking and adding MetaData to the file
/// Because this BLOC is used to prepare different types of files it's named PreparationBloc
/// TODO: Refactor the code to make it more readable,there is a lot of duplication going on
class PreparationBloc extends Bloc<MetaDataEvents, PreparationState> {
late final GetIt getIt;
late final IFileSavingService videoSavingService;
late final IFileSavingService imageSavingService;
late final IHashingService videoHashingService;
late final IHashingService imageHashingService;
late final IWaterMarkService videoWaterMarkSerivce;
late final IWaterMarkService imageWaterMarkService;
late final IMetaDataService audioMetaDataService;
late final IMetaDataService videoMetaDataService;
late final IMetaDataService imageMetaDataService;
late final IMetaDataPermissionService metaDataPermissionService;
late final ILocationService locationService;
late final IHashingService audioHashingService;
late final IForegroundService foregroundService;
PreparationBloc() : super(InitalPrepareBlocState()) {
getIt = GetIt.I;
videoSavingService =
getIt.get<IFileSavingService>(instanceName: "VideoSaving");
imageSavingService =
getIt.get<IFileSavingService>(instanceName: "ImageSaving");
imageHashingService =
getIt.get<IHashingService>(instanceName: "ImageHashing");
videoHashingService =
getIt.get<IHashingService>(instanceName: "VideoHashing");
videoWaterMarkSerivce =
getIt.get<IWaterMarkService>(instanceName: "VideoWaterMark");
imageWaterMarkService =
getIt.get<IWaterMarkService>(instanceName: "ImageWaterMark");
audioMetaDataService =
getIt.get<IMetaDataService>(instanceName: "AudioMetaData");
videoMetaDataService =
getIt.get<IMetaDataService>(instanceName: "VideoMetaData");
imageMetaDataService =
getIt.get<IMetaDataService>(instanceName: "ImageMetaData");
metaDataPermissionService = getIt.get<IMetaDataPermissionService>();
audioHashingService =
getIt.get<IHashingService>(instanceName: "AudioHashing");
locationService = getIt.get<ILocationService>();
foregroundService = getIt<IForegroundService>();
on<PrepareAudio>((event, emit) async {
final transaction = Sentry.startTransaction("PreparationBloc",
"PrepareAudio"); // Consider moving it into Foreground Service
try {
await foregroundService.stop();
await foregroundService.setData(
"instructions", "audio::${event.filePath}");
await foregroundService.start(
startPreperationForegroundService,
tr("perperationNotification.title"),
tr("perperationNotification.initalDescription"));
ReceivePort port = await foregroundService.getReceivePort();
final stream = port.asBroadcastStream();
await emit.forEach(stream, onData: (message) {
message as Map<String, dynamic>;
final status = message["status"];
if (status == "AddingWaterMark") {
return PrepareationIsAplyingWaterMark();
} else if (status == "AddingMetaData") {
return PrepareationIsAddingMetaData();
} else if (status == "Error") {
port.close();
return PreparationHasError(message["description"]);
} else if (status == "Hashing") {
emit(PrepareationIsHashing());
} else if (status == "Done") {
port.close();
return PreparationIsSuccessfull(
message["filePath"], message["content"]);
} else if (status == "Fail") {
final e = message["description"];
//final stack = message["stack"];
transaction.throwable = e;
transaction.status = const SpanStatus.internalError();
port.close();
return PreparationHasError(e.toString());
}
return state; // IDK if that could drive me in a corner at some point
});
if (state is PreparationIsSuccessfull) {
await foregroundService.stop();
}
} catch (e, stackTrace) {
transaction.throwable = e;
transaction.status = const SpanStatus.internalError();
addError(e, stackTrace);
await foregroundService.stop();
emit(PreparationHasError(e.toString()));
} finally {
await transaction.finish();
}
});
on<PrepareImage>((event, emit) async {
final transaction =
Sentry.startTransaction("PreparationBloc", "PrepareImage");
try {
final path = await imageSavingService.saveFile();
await foregroundService.setData("instructions", "image::$path");
final notificationTitle = tr("perperationNotification.title");
final notificationBody =
tr("perperationNotification.initalDescription");
await foregroundService.start(startPreperationForegroundService,
notificationTitle, notificationBody);
ReceivePort port = await foregroundService.getReceivePort();
final stream = port.asBroadcastStream();
await emit.forEach(stream, onData: (message) {
message as Map<String, dynamic>;
final status = message["status"];
if (status == "AddingWaterMark") {
return PrepareationIsAplyingWaterMark();
} else if (status == "AddingMetaData") {
return PrepareationIsAddingMetaData();
} else if (status == "Error") {
port.close();
return PreparationHasError(message["description"]);
} else if (status == "Hashing") {
emit(PrepareationIsHashing());
} else if (status == "Done") {
port.close();
return PreparationIsSuccessfull(
message["filePath"], message["content"]);
} else if (status == "Fail") {
final e = message["description"];
//final stack = message["stack"];
transaction.throwable = e;
transaction.status = const SpanStatus.internalError();
port.close();
return PreparationHasError(e.toString());
}
return state; // IDK if that could drive me in a corner at some point
});
if (state is PreparationIsSuccessfull) {
await addToGalleryACleanUp(
path, (state as PreparationIsSuccessfull).path, false);
await foregroundService.stop();
}
} catch (e, stackTrace) {
transaction.throwable = e;
transaction.status = const SpanStatus.internalError();
addError(e, stackTrace);
emit(PreparationHasError(e.toString()));
await foregroundService.stop();
} finally {
await transaction.finish();
}
});
on<PrepareVideo>((event, emit) async {
final transaction =
Sentry.startTransaction("PreparationBloc", "PrepareVideo");
try {
String path = await videoSavingService.saveFile();
await foregroundService.setData("instructions", "video::$path");
await foregroundService.start(
startPreperationForegroundService,
tr("perperationNotification.title"),
tr("perperationNotification.initalDescription"));
ReceivePort port = await foregroundService.getReceivePort();
final stream = port.asBroadcastStream();
await emit.forEach(stream, onData: (message) {
message as Map<String, dynamic>;
final status = message["status"];
if (status == "AddingWaterMark") {
return PrepareationIsAplyingWaterMark();
} else if (status == "AddingMetaData") {
return PrepareationIsAddingMetaData();
} else if (status == "Error") {
port.close();
return PreparationHasError(message["description"]);
} else if (status == "Hashing") {
emit(PrepareationIsHashing());
} else if (status == "Done") {
port.close();
return PreparationIsSuccessfull(
message["filePath"], message["content"]);
} else if (status == "Fail") {
final e = message["description"];
//final stack = message["stack"];
transaction.throwable = e;
transaction.status = const SpanStatus.internalError();
port.close();
return PreparationHasError(e.toString());
}
return state; // IDK if that could drive me in a corner at some point
});
if (state is PreparationIsSuccessfull) {
await addToGalleryACleanUp(
path, (state as PreparationIsSuccessfull).path, true);
await foregroundService.stop();
}
} catch (e, stackTrace) {
transaction.throwable = e;
transaction.status = const SpanStatus.internalError();
addError(e, stackTrace);
emit(PreparationHasError(e.toString()));
await foregroundService.stop();
} finally {
await transaction.finish();
}
});
}
Future<void> addToGalleryACleanUp(
String initalPath, String finalPath, bool video) async {
final outPutFile = File(finalPath);
final initalFile = File(initalPath);
final title = outPutFile.path.split("/").last.split(".").first;
if (Platform.isAndroid || Platform.isIOS) {
//This is to prevent file deletion while running flutter test (since all file paths are fake)
if (video) {
await PhotoManager.editor.saveVideo(outPutFile, title: "$title.mkv");
} else {
Uint8List data = await outPutFile.readAsBytes();
await PhotoManager.editor.saveImage(data, title: "$title.png");
}
if (initalPath != finalPath) {
await initalFile.delete();
}
}
}
}