-
Notifications
You must be signed in to change notification settings - Fork 39
/
README.md
395 lines (280 loc) · 15.3 KB
/
README.md
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
![Bamboots: Extension 4 Alamofire](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_banner.png)
[![CI Status](http://img.shields.io/travis/mmoaay/Bamboots.svg?style=flat)](https://travis-ci.org/mmoaay/Bamboots)
[![Version](https://img.shields.io/cocoapods/v/Bamboots.svg?style=flat)](http://cocoapods.org/pods/Bamboots)
[![Platform](https://img.shields.io/cocoapods/p/Bamboots.svg?style=flat)](http://cocoapods.org/pods/Bamboots)
[![Language](https://img.shields.io/badge/language-swift-orange.svg)](https://github.com/apple/swift)
[![Codebeat](https://codebeat.co/badges/571ff02f-8f09-4960-b0e4-d4c6210251cf)](https://codebeat.co/projects/github-com-mmoaay-bamboots-master)
[![License](https://img.shields.io/cocoapods/l/Bamboots.svg?style=flat)](http://cocoapods.org/pods/Bamboots)
[![Gitter](https://img.shields.io/gitter/room/Bamboots/Bamboots.svg)](https://gitter.im/Bamboots-Gitter/Lobby)
[![Weibo](https://img.shields.io/badge/[email protected]?style=flat)](https://weibo.com/smmoaay)
![\<3](https://img.shields.io/badge/made%20with-%3C3-orange.svg)
**Bamboots** is a network request framework based on [Alamofire](https://github.com/Alamofire/Alamofire) , aiming at making network request easier for business development.
- [Protocols](#protocols)
- [Features](#features)
- [Requirements](#requirements)
- [Usage](#usage)
- [Chained calls](#chained-calls)
- [Bonus](#bonus)
- [Example](#example)
- [Installation](#installation)
- [Usage](#usage)
- [Author](#author)
- [License](#license)
## Protocols
**Bamboots** has made advantages of protocol-oriented programming and abstracted everything that relevant to network request into protocol. Here is the protocol list:
- `Requestable`: Network request protocol, object conforms to this protocol can make network request.
- `Formable`: Form protocol. Object conforms to this protocol can be used by the `request`, `download`, `upload` method in `Requestable` protocol.
- `UploadFormable`: Upload Form protocol, Base protocol for upload request form.
- `UploadStreamFormable`: Conforming to this protocol to create an upload form that contains a stream object.
- `UploadDataFormable`: Conforming to this protocol to create an upload form that contains a data object.
- `UploadFileFormable`: Conforming to this protocol to create an upload form that contains a file.
- `UploadMultiFormDataFormable`: Conforming to this protocol to create an upload form that contains multiformdata.
- `DownloadFormable`: Download Form protocol, Base protocol for download request form.
- `DownloadResumeFormable`: Conforming to this protocol to create a download form that can resume a download task.
- `RequestFormable`: Conforming to this protocol to create a request form.
- `Loadable`: Protocol used for showing mask on specified container when requesting (such as add `UIActivityIndicatorView` on `UIViewcontroller`'s view when request begins, and remove it when request ends). Object conforms to this protocol can be used by `load` method of `DataRequest`.
- `Maskable`: Mask protocol for `Loadable`, View that conforms to this protocol will be treated as mask.
- `Containable`: Container protocol for `Loadable`, Objects conforms to this protocol can be used as container for the mask.
- `Progressable`: Progress protocol for request, Objects conforms to this protocol can get the progress of the request. Object conforms to this protocol can be used by `progress` method of `DataRequest`.
- `Messageable`: Message protocol.
- `Warnable`: Warn protocol. Conforming to this protocol to customize the way of warning messages displayed when error occured.
- `Informable`: Inform protocol. Conforming to this protocol to customize the way of inform messages displayed when request done successfully
- `Errorable`: Error protocol. Conforming to this protocol to customize the error configuration.
- `JSONErrorable`: Error protocol for JSON data. Conforming to this protocol to customize the error configuration for JSON data.
Mostly you don't need to care much about these protocols, because we already have many **DEFAULT** implementations for them. However if you want to customize something, you just need to conform to these protocols and do what you want. Here is some default implementations for these protcols:
- `LoadType`: Enum that conforms to `Loadable` protocol, using `case default(container:Containable)` case to show `MaskView` on the container when requesting.
- `UIAlertController+Messageable`: With this extension, you can pass a UIAlertController directly into the `warn` and `inform` method of `DataRequest`.
- `UIButton+Loadable`: With this extension, you can pass a button directly into the `load` method of `DataRequest`.
- `UITableViewCell+Loadable`: With this extension, you can pass a cell directly into the `load` method of `DataRequest`.
- `UIRefreshControl+Loadable`: With this extension, you can pass a UIRefreshControl directly into the `load` method of `DataRequest`.
- `UIProgressView+Progressable`: With this extension, you can pass a UIProgressView directly into the `progress` method of `DataRequest`.
- `UIScrollView+Containable`: Extending UIScrollView to conform to `Containable` protocol.
- `UITableViewCell+Containable`: Extending UITableViewCell to conform to `Containable` protocol.
- `UIViewController+Containable`: Extending UIViewController to conform to `Containable` protocol.
- `ActivityIndicator`: Default mask for UITableViewCell and UIButton
- `MaskView`: Default mask for others.
## Features
1. There is no need to inherit any object to get the features it has, and you can extend any features you want without changing the code of **Bamboots** itself.
2. We have **Default** extension for most of the protocol, so you can easily startup.
3. And if you have special needs, extend or conform to it.
4. The API was designed with the principles of Alamofire, So you can also extend it as **Bamboots** already have done for you.
5. Mainly focus on things between business development and Alamofire, not network request itself.
## Requirements
- [Alamofire](https://github.com/Alamofire/Alamofire): Elegant HTTP Networking in Swift
- [AlamofireCodable](https://github.com/CNKCQ/AlamofireCodable): An Alamofire extension which converts JSON response data into swift objects using Codable
## Usage
### Create a form
For business development, most of the requests' headers are the same, so you can extend it only for once.
``` swift
extension Formable {
public func headers() -> [String: String] {
return ["accessToken":"xxx"];
}
}
```
And you can also have extension for specified protocol
``` swift
extension Formable where Self: UploadFormable {
public func headers() -> [String: String] {
return ["accessToken":"xxx", "file":"xxx"];
}
}
```
And for other parameters such as `url`, `method`, `parameters` etc.
Each request will has it's own value, So we create an object and make it conforms to the protocol
``` swift
struct WeatherForm: RequestFormable {
var city = "shanghai"
public func parameters() -> [String: Any] {
return ["city": city]
}
var url = "https://raw.githubusercontent.com/tristanhimmelman/AlamofireObjectMapper/2ee8f34d21e8febfdefb2b3a403f18a43818d70a/sample_keypath_json"
var method = Alamofire.HTTPMethod.get
}
```
### Make a request
All you have to do is conforming to `Requestable` protocol, in this protocol, we've already implement some methods for you:
- `func request(_ form: RequestFormable) -> DataRequest`
- `func download(_ form: DownloadFormable) -> DownloadRequest`
- `func download(_ form: DownloadResumeFormable) -> DownloadRequest`
- `func upload(_ form: UploadDataFormable) -> UploadRequest`
- `func upload(_ form: UploadFileFormable) -> UploadRequest`
- `func upload(_ form: UploadStreamFormable) -> UploadRequest`
- `func upload(_ form: UploadMultiFormDataFormable, completion: ((UploadRequest) -> Void)?)`
Here is the usage of request method:
``` swift
class LoadableViewController: UIViewController, Requestable {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
request(WeatherForm())
}
}
```
### Show mask when requesting
We have extended `DataRequest` class of Alamofire and added a `load` method to it.
``` swift
func load(load: Loadable = LoadType.none) -> Self
```
#### Show mask on `UIViewController`
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_loadable_uiviewcontroller.gif)
``` swift
request(WeatherForm()).load(load: LoadType.default(container: self))
```
#### Show mask on `UIButton`
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_loadable_button.gif)
``` swift
request(WeatherForm()).load(load: button)
```
> **Notice**: The color of `UIActivityIndicatorView` is the `tintColor` of `UIButton `
#### Show customized mask
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_loadable_customized.gif)
Firstly, we create a `LoadConfig` class conforms to `Loadable` protocol.
``` swift
class LoadConfig: Loadable {
init(container: Containable? = nil, mask: Maskable? = MaskView(), inset: UIEdgeInsets = UIEdgeInsets.zero) {
insetMine = inset
maskMine = mask
containerMine = container
}
func mask() -> Maskable? {
return maskMine
}
func inset() -> UIEdgeInsets {
return insetMine
}
func maskContainer() -> Containable? {
return containerMine
}
func begin() {
show()
}
func end() {
hide()
}
var insetMine: UIEdgeInsets
var maskMine: Maskable?
var containerMine: Containable?
}
```
Then we can use it as followed:
``` swift
let load = LoadConfig(container: view, mask:EyeLoading(), inset: UIEdgeInsetsMake(30+64, 15, UIScreen.main.bounds.height-64-(44*4+30+15*3), 15))
request(WeatherForm()).load(load: load)
```
This is the most powerful usage of the `Loadable` protocol. In this way you can customized everything the `Loadable` protocol has.
#### Show mask on `UITableView` & `UIScrollView`
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_loadable_uiscrollview.gif)
``` swift
let load = LoadConfig(container:self.tableView, mask: ActivityIndicator(), inset: UIEdgeInsetsMake(UIScreen.main.bounds.width - self.tableView.contentOffset.y > 0 ? UIScreen.main.bounds.width - self.tableView.contentOffset.y : 0, 0, 0, 0))
request(WeatherForm()).load(load: load)
```
#### Show mask on `UITableViewCell` (PS: Still in development)
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_loadable_cell.gif)
``` swift
refresh.attributedTitle = NSAttributedString(string: "Loadable UIRefreshControl")
refresh.addTarget(self, action: #selector(LoadableTableViewController.refresh(refresh:)), for: .valueChanged)
tableView.addSubview(refresh)
func refresh(refresh: UIRefreshControl) {
request(WeatherForm()).load(load: refresh)
}
```
### Loadable `UIRefreshControl`
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_loadable_refresh.gif)
``` swift
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView .deselectRow(at: indexPath, animated: false)
let cell = tableView.cellForRow(at: indexPath)
request(WeatherForm()).load(load: cell!)
}
```
We can also support other refresh control such as `MJRefresh`.
### Show progress when requesting
We have extended `DownloadRequest` and `UploadRequest` class of Alamofire and added a `progress` method to it.
``` swift
func progress(progress: Progressable) -> Self
```
And then we can use it as followed:
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_progressable.gif)
``` swift
download(ImageDownloadForm()).progress(progress: progress)
```
### Show warning message if fail
We have extended `DataRequest` class of Alamofire and added a `warn` method to it.
``` swift
func warn<T: JSONErrorable>(error: T, warn: Warnable, completionHandler: ((JSONErrorable) -> Void)? = nil) -> Self
```
And then we can use it as followed:
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_warnable.gif)
``` swift
let alert = UIAlertController(title: "Warning", message: "Network unavailable", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil))
request(WeatherForm()).warn(
error: WeatherError(),
warn: alert
)
```
> **Notice**: We only have `warn` for JSON format response now.
### Show inform message if success
We have extended `DataRequest` class of Alamofire and added a `inform` method to it.
``` swift
func inform<T: JSONErrorable>(error: T, inform: Informable) -> Self
```
And then we can use it as followed:
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/bamboots_informable.gif)
``` swift
let alert = UIAlertController(title: "Notice", message: "Load successfully", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil))
request(WeatherForm()).inform(
error: WeatherInformError(),
inform: alert
)
```
> **Notice**: We only have `inform ` for JSON format response now.
### JSON to Object
```swift
request(WeatherForm()).responseObject(keyPath: "data") { (response: DataResponse<WeatherResponse>) in
if let value = response.result.value {
self.weatherResponse = value
self.tableView.reloadData()
}
}
```
For more information, see [AlamofireCodable](https://github.com/CNKCQ/AlamofireCodable).
## Chained calls
All the method mentioned above can be called in a chained manner, such as followed:
```swift
let load = LoadConfig(container: view, mask:EyeLoading(), inset: UIEdgeInsetsMake(30+64, 15, UIScreen.main.bounds.height-64-(44*4+30+15*3), 15))
let warn = UIAlertController(title: "Warning", message: "Network unavailable", preferredStyle: .alert)
warn.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil))
let inform = UIAlertController(title: "Notice", message: "Load successfully", preferredStyle: .alert)
inform.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil))
request(WeatherForm()).load(load:load).progress(progress: progress).warn(error: WeatherError(), warn: warn).inform(error: WeatherInformError(), inform: inform)
```
## Bonus
### `Eyeloading`
![](https://github.com/mmoaay/Bamboots/blob/master/Demo/EyeLoading.gif)
We've written this motion effect when implementing the customized loading, and it's all implemented with `CAAnimationGroup`.
If interested, you can check the file `Eyeloading` in example project.
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Installation
Bamboots is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod 'Bamboots'
```
## Protobuf Support
```ruby
pod 'Bamboots/BambootsProtobuf'
```
* Use [apple/swift-protobuf](https://github.com/apple/swift-protobuf) as protobuf data deserialization
* run protobuf test
* fist run `Example/Protobuf/pbdemo`
* open `Example/Bamboots.xcworkspace`
* run `command + u`
## Author
mmoaay, [email protected]
## License
![](https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/License_icon-mit-88x31-2.svg/128px-License_icon-mit-88x31-2.svg.png)
Bamboots is available under the MIT license. See the LICENSE file for more info.