-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitlab.swift
227 lines (201 loc) · 7.33 KB
/
Gitlab.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
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
/*
Copyright 2021 macoonshine
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import Foundation
import Combine
/**
provides and controls access to the Gitlab repository.
*/
open class Gitlab {
/**
defines possible errors when accessing the repository.
*/
public enum Error: Swift.Error {
/**
an URL cannot be created.
*/
case invalidURL
/**
server responded with a status code less than 200 or greater than 299. The enum value contains
the HTTP status code and message of the response.
*/
case badResponse(statusCode: Int, message: String)
/**
a required parameter could not be determined
*/
case parameterMissing(message: String)
}
/// describes parameters for API calls.
public typealias Parameters = [String:CustomStringConvertible]
open class Decoder: JSONDecoder {
/**
returns the given data object if the requested type is `Data`, and decodes the otherwise.
*/
open override func decode<T>(_ type: T.Type, from data: Data) throws -> T where T : Decodable {
if type == Data.self, let data = data as? T {
return data
}
else {
return try super.decode(type, from: data)
}
}
}
private let components: URLComponents
private let token: String
private(set) public var session: URLSession
private(set) public var retryCount: Int
public var url: URL {
return components.url!
}
public init(components: URLComponents, token: String) {
assert(components.url != nil)
self.components = components
self.token = token
self.session = .shared
self.retryCount = 0
}
public required init(from other: Gitlab) {
self.components = other.components
self.token = other.token
self.session = other.session
self.retryCount = other.retryCount
}
public convenience init?(url: URL, token: String) {
if let components = URLComponents(url: url, resolvingAgainstBaseURL: true),
components.url != nil {
self.init(components: components, token: token)
}
else {
return nil
}
}
public convenience init?(_ url: String, token: String) {
if let components = URLComponents(string: url), components.url != nil {
self.init(components: components, token: token)
}
else {
return nil
}
}
open func url(for path: String, parameters: Parameters) -> URL? {
var components = self.components
components.path += path
components.queryItems = parameters.map {
return URLQueryItem(name: $0, value: $1.description)
}
return components.url
}
open func request(for path: String,
parameters: Parameters,
method: String = "GET",
body: Data? = nil
) -> URLRequest? {
if let url = url(for: path, parameters: parameters) {
var request = URLRequest(url: url)
request.httpMethod = method
request.httpBody = body
request.setValue(token, forHTTPHeaderField: "PRIVATE-TOKEN")
return request
}
else {
return nil
}
}
open func get<T>(
path: String, parameters: Parameters = [:]
) -> AnyPublisher<T, Swift.Error> where T: Decodable {
return send(path: path, parameters: parameters, method: "GET")
}
open func send<T>(path: String,
parameters: Parameters = [:],
method: String = "GET",
body: Data? = nil
) -> AnyPublisher<T, Swift.Error> where T: Decodable {
if let request = self.request(for: path,
parameters: parameters,
method: method,
body: body) {
return send(request: request)
}
else {
return Fail(outputType: T.self, failure: Error.invalidURL)
.eraseToAnyPublisher()
}
}
open func send(path: String,
parameters: Parameters = [:],
method: String = "GET",
body: Data? = nil
) -> AnyPublisher<Void, Swift.Error> {
if let request = self.request(for: path,
parameters: parameters,
method: method,
body: body) {
return send(request: request)
}
else {
return Fail(outputType: Void.self, failure: Error.invalidURL)
.eraseToAnyPublisher()
}
}
func message(for data: Data) -> String? {
if let object = try? JSONSerialization.jsonObject(with: data, options: []) as? [String:Any]{
return object["message"] as? String
}
else {
return nil
}
}
func _send(request: URLRequest) -> Publishers.TryMap<Publishers.Retry<URLSession.DataTaskPublisher>, Data> {
return session.dataTaskPublisher(for: request)
.retry(retryCount)
.tryMap {output -> Data in
if let response = output.response as? HTTPURLResponse {
if response.statusCode >= 200 && response.statusCode < 300 {
return output.data
}
else if let message = self.message(for: output.data) {
throw Error.badResponse(statusCode: response.statusCode, message: message)
}
else {
throw Error.badResponse(statusCode: response.statusCode,
message: "Bad response")
}
}
else {
throw URLError(.badServerResponse)
}
}
}
open func send<T>(request: URLRequest) -> AnyPublisher<T, Swift.Error> where T: Decodable {
return _send(request: request)
.decode(type: T.self, decoder: Decoder())
.eraseToAnyPublisher()
}
open func send(request: URLRequest) -> AnyPublisher<Void, Swift.Error> {
return _send(request: request)
.map {data -> Void in
return ()
}
.eraseToAnyPublisher()
}
open func use(session: URLSession) -> Self {
let gitlab = Self(from: self)
gitlab.session = session
return gitlab
}
open func retries(count: Int) -> Self {
let gitlab = Self(from: self)
gitlab.retryCount = count
return gitlab
}
}