-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathJSONDictionaryWrapper.swift
40 lines (31 loc) · 1.05 KB
/
JSONDictionaryWrapper.swift
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
import Foundation
public typealias JSONDictionary = [String: Any]
public struct JSONDictionaryWrapper: Codable {
public let jsonDictionary: JSONDictionary
public enum CodingKeys: String, CodingKey {
case jsonDictionary
}
public init(jsonDictionary: JSONDictionary) {
self.jsonDictionary = jsonDictionary
}
public init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
let data = try container.decode(Data.self, forKey: CodingKeys.jsonDictionary)
let object = try JSONSerialization.jsonObject(
with: data,
options: []
)
guard let jsonDictionary = object as? JSONDictionary else {
throw StorageError.decodingFailed
}
self.jsonDictionary = jsonDictionary
}
public func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
let data = try JSONSerialization.data(
withJSONObject: jsonDictionary,
options: []
)
try container.encode(data, forKey: CodingKeys.jsonDictionary)
}
}