Skip to content

Commit 093c170

Browse files
feat: validate Data and Message models on construction (#1139)
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
1 parent 0f5b982 commit 093c170

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed

lib/bademagic_module/models/data.dart

+18
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,27 @@ class Data {
1111

1212
// Convert JSON to Data object
1313
factory Data.fromJson(Map<String, dynamic> json) {
14+
if (!json.containsKey('messages')) {
15+
throw Exception('Invalid JSON: Missing "messages" key');
16+
}
17+
18+
if (json['messages'] is! List) {
19+
throw Exception('Invalid JSON: "messages" must be a list');
20+
}
21+
22+
if (json['messages'].isEmpty) {
23+
throw Exception('Invalid JSON: "messages" list is empty');
24+
}
25+
1426
var messagesFromJson = json['messages'] as List;
27+
28+
if (messagesFromJson.any((message) => message == null)) {
29+
throw Exception('Invalid JSON: "messages" list contains null values');
30+
}
31+
1532
List<Message> messageList =
1633
messagesFromJson.map((message) => Message.fromJson(message)).toList();
34+
1735
return Data(messages: messageList);
1836
}
1937
}

lib/bademagic_module/models/messages.dart

+24-3
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,31 @@ class Message {
2727

2828
// Convert JSON to Message object
2929
factory Message.fromJson(Map<String, dynamic> json) {
30+
if (!json.containsKey('text')) {
31+
throw Exception('Invalid JSON: Message missing "text" key');
32+
}
33+
34+
if (!json.containsKey('speed')) {
35+
throw Exception('Invalid JSON: Message missing "speed" key');
36+
}
37+
38+
if (!json.containsKey('mode')) {
39+
throw Exception('Invalid JSON: Message missing "mode" key');
40+
}
41+
42+
if (json['text'] is! List) {
43+
throw Exception('Invalid JSON: "text" must be a list');
44+
}
45+
46+
final textList = json['text'] as List;
47+
if (textList.any((element) => element == null)) {
48+
throw Exception('Invalid JSON: "text" list cannot contain null elements');
49+
}
50+
3051
return Message(
31-
text: List<String>.from(json['text']),
32-
flash: json['flash'] as bool,
33-
marquee: json['marquee'] as bool,
52+
text: List<String>.from(textList),
53+
flash: (json['flash'] as bool?) ?? false,
54+
marquee: (json['marquee'] as bool?) ?? false,
3455
speed: Speed.fromHex(
3556
json['speed'] as String), // Using helper method for safety
3657
mode: Mode.fromHex(

0 commit comments

Comments
 (0)