-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathService+DecodeHelpers.swift
39 lines (33 loc) · 1.19 KB
/
Service+DecodeHelpers.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
import Foundation
import Prelude
import ReactiveExtensions
import ReactiveSwift
extension Service {
// MARK: - Swift.Codable
func decodeModelToSignal<T: Decodable>(_ jsonData: Data) -> SignalProducer<T, ErrorEnvelope> {
return SignalProducer(value: jsonData)
.flatMap { data -> SignalProducer<T, ErrorEnvelope> in
do {
let decodedObject = try JSONDecoder().decode(T.self, from: data)
print("🔵 [KsApi] Successfully Decoded Data")
return .init(value: decodedObject)
} catch {
print("🔴 [KsApi] Failure - Decoding error: \(error), \(T.self)")
return .init(error: .couldNotDecodeJSON(error))
}
}
}
func decodeModelToSignal<T: Decodable>(data json: Data) ->
SignalProducer<T?, ErrorEnvelope> {
return SignalProducer(value: json)
.map { json in try? JSONDecoder().decode(T.self, from: json) }
}
func decodeModelToResult<T: Decodable>(data json: Data, ofType type: T.Type) -> Result<T?, ErrorEnvelope> {
do {
let decodedObject = try JSONDecoder().decode(type, from: json)
return .success(decodedObject)
} catch {
return .failure(.couldNotDecodeJSON(error))
}
}
}