-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathResource+Map.swift
54 lines (50 loc) · 2.38 KB
/
Resource+Map.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// Copyright (C) 2017 DB Systel GmbH.
// DB Systel GmbH; Jürgen-Ponto-Platz 1; D-60329 Frankfurt am Main; Germany; http://www.dbsystel.de/
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
extension Resource {
/// Maps a resource result to a different resource. This is useful when you have result of R which contains T and your API request a resource of T,
///
/// - Parameter transform: transforms the original result of the resource
/// - Returns: the transformed resource
public func map<T>(transform: @escaping (Model) throws -> T) -> Resource<T> {
return Resource<T>(request: request, parse: { data in
return try transform(try self.parse(data))
})
}
}
extension ResourceWithError {
/// Maps a resource result to a different resource. This is useful when you have result of R which contains T and your API request a resource of T,
///
/// Error parsing is not changed
///
/// - Parameter transform: transforms the original result of the resource
/// - Returns: the transformed resource
public func map<T>(transform: @escaping (Model) throws -> T) -> ResourceWithError<T, E> {
return ResourceWithError<T, E>(
request: request,
parse: { data in
return try transform(try self.parse(data))
},
mapError: mapError
)
}
}