MBNetwork
MBNetwork is a network request framework based on Alamofire and ObjectMapper, aiming at making network request easier for business development.
Protocols
MBNetwork has made advantages of protocol-oriented programming and abstracted everything that relevant to network request into protocol. Here is the protocol list:
MBRequestable: Network request protocol, object conforms to this protocol can make network request.MBFormable: Form protocol. Object conforms to this protocol can be used by therequest,download,uploadmethod inMBRequestableprotocol.
MBUploadFormable: Upload Form protocol, Base protocol for upload request form.
MBUploadStreamFormable: Conforming to this protocol to create an upload form that contains a stream object.MBUploadDataFormable: Conforming to this protocol to create an upload form that contains a data object.MBUploadFileFormable: Conforming to this protocol to create an upload form that contains a file.MBUploadMultiFormDataFormable: Conforming to this protocol to create an upload form that contains multiformdata.
MBDownloadFormable: Download Form protocol, Base protocol for download request form.
MBDownloadResumeFormable: Conforming to this protocol to create a download form that can resume a download task.
MBRequestFormable: Conforming to this protocol to create a request form.
MBLoadable: Protocol used for showing mask on specified container when requesting (such as addUIActivityIndicatorViewonUIViewcontroller’s view when request begins, and remove it when request ends). Object conforms to this protocol can be used byloadmethod ofDataRequest.
MBMaskable: Mask protocol forMBLoadable, View that conforms to this protocol will be treated as mask.MBContainable: Container protocol forMBLoadable, Objects conforms to this protocol can be used as container for the mask.MBProgressable: Progress protocol for request, Objects conforms to this protocol can get the progress of the request. Object conforms to this protocol can be used byprogressmethod ofDataRequest.
MBMessageable: Message protocol.
MBWarnable: Warn protocol. Conforming to this protocol to customize the way of warning messages displayed when error occured.MBInformable: Inform protocol. Conforming to this protocol to customize the way of inform messages displayed when request done successfully
MBErrorable: Error protocol. Conforming to this protocol to customize the error configuration.
MBJSONErrorable: 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:
MBLoadType: Enum that conforms toMBLoadableprotocol, usingcase default(container:MBContainable)case to showMBMaskViewon the container when requesting.MBMessageType: Enum that conforms toMBMessageableprotocol, usingalertController(title: String, message: String? , actions: [UIAlertAction], container: MBContainable)case to show alertController.UIButton+MBLoadable: With this extension, you can pass a button directly into theloadmethod ofDataRequest.UITableViewCell+MBLoadable: With this extension, you can pass a cell directly into theloadmethod ofDataRequest.UIRefreshControl+MBLoadable: With this extension, you can pass a UIRefreshControl directly into theloadmethod ofDataRequest.UIProgressView+MBProgressable: With this extension, you can pass a UIProgressView directly into theprogressmethod ofDataRequest.UIScrollView+MBContainable: Extending UIScrollView to conform toMBContainableprotocol.UITableViewCell+MBContainable: Extending UITableViewCell to conform toMBContainableprotocol.UIViewController+MBContainable: Extending UIViewController to conform toMBContainableprotocol.MBActivityIndicator: Default mask for UITableViewCell and UIButtonMBMaskView: Default mask for others.
Features
- 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 MBNetwork itself.
- We have Default extension for most of the protocol, so you can easily startup.
- And if you have special needs, extend or conform to it.
- The API was designed with the principles of Alamofire, So you can also extend it as MBNetwork already have done for you.
- Mainly focus on things between business development and Alamofire, not network request itself.
Requirements
- Alamofire: Elegant HTTP Networking in Swift
- ObjectMapper: Simple JSON Object mapping written in Swift
- AlamofireObjectMapper: An Alamofire extension which converts JSON response data into swift objects using ObjectMapper
Usage
Create a form
For business development, most of the requests’ headers are the same, so you can extend it only for once.
extension MBFormable {
public func headers() -> [String: String] {
return ["accessToken":"xxx"];
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 1
- 2
- 3
- 4
- 5
- 6
And you can also have extension for specified protocol
extension MBFormable where Self: MBUploadFormable {
public func headers() -> [String: String] {
return ["accessToken":"xxx", "file":"xxx"];
}
}- 1
- 2
- 3
- 4
- 5
- 6
- 1
- 2
- 3
- 4
- 5
- 6
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
struct WeatherForm: MBRequestFormable {
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
}- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Make a request
All you have to do is conforming to MBRequestable protocol, in this protocol, we’ve already implement some methods for you:
func request(_ form: MBRequestFormable) -> DataRequestfunc download(_ form: MBDownloadFormable) -> DownloadRequestfunc download(_ form: MBDownloadResumeFormable) -> DownloadRequestfunc upload(_ form: MBUploadDataFormable) -> UploadRequestfunc upload(_ form: MBUploadFileFormable) -> UploadRequestfunc upload(_ form: MBUploadStreamFormable) -> UploadRequestfunc upload(_ form: MBUploadMultiFormDataFormable, completion: ((UploadRequest) -> Void)?)
Here is the usage of request method:
class LoadableViewController: UIViewController, MBRequestable {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
request(WeatherForm())
}
}- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
Show mask when requesting
We have extended DataRequest class of Alamofire and added a load method to it.
func load(load: MBLoadable = MBLoadType.none) -> Self- 1
- 1
Show mask on UIViewController
request(WeatherForm()).load(load: MBLoadType.default(container: self))- 1
- 1
Show mask on UIButton
request(WeatherForm()).load(load: button)- 1
- 1
Notice: The color of
UIActivityIndicatorViewis thetintColorofUIButton
Show customized mask
Firstly, we create a LoadConfig class conforms to MBLoadable protocol.
class LoadConfig: MBLoadable {
init(container: MBContainable? = nil, mask: MBMaskable? = MBMaskView(), inset: UIEdgeInsets = UIEdgeInsets.zero) {
insetMine = inset
maskMine = mask
containerMine = container
}
func mask() -> MBMaskable? {
return maskMine
}
func inset() -> UIEdgeInsets {
return insetMine
}
func maskContainer() -> MBContainable? {
return containerMine
}
func begin() {
show()
}
func end() {
hide()
}
var insetMine: UIEdgeInsets
var maskMine: MBMaskable?
var containerMine: MBContainable?
}- 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
- 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
Then we can use it as followed:
let load = LoadConfig(container: view, mask:MBEyeLoading(), inset: UIEdgeInsetsMake(30+64, 15, UIScreen.main.bounds.height-64-(44*4+30+15*3), 15))
request(WeatherForm()).load(load: load)- 1
- 2
- 1
- 2
This is the most powerful usage of the MBLoadable protocol. In this way you can customized everything the MBLoadable protocol has.
Show mask on UITableView & UIScrollView
let load = LoadConfig(container:self.tableView, mask: MBActivityIndicator(), 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)
- 1
- 2
- 3
- 4
- 1
- 2
- 3
- 4
Show mask on UITableViewCell (PS: Still in development)
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)
}- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
Loadable UIRefreshControl
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!)
}- 1
- 2
- 3
- 4
- 5
- 1
- 2
- 3
- 4
- 5
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.
func progress(progress: MBProgressable) -> Self- 1
- 1
And then we can use it as followed:
download(ImageDownloadForm()).progress(progress: progress)- 1
- 1
Show warning message if fail
We have extended DataRequest class of Alamofire and added a warn method to it.
func warn<T: MBJSONErrorable>(error: T, warn: MBWarnable = MBMessageType.none, completionHandler: ((MBJSONErrorable) -> Void)? = nil) -> Self- 1
- 1
And then we can use it as followed:
request(WeatherForm()).warn(error: WeatherError(), warn: MBMessageType.alertController(title: "Warning", message: "Network unavailable", actions: [UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil)], container: self))- 1
- 1
Notice: We only have
warnfor JSON format response now.
Show inform message if success
We have extended DataRequest class of Alamofire and added a inform method to it.
func inform<T: MBJSONErrorable>(error: T, inform: MBInformable = MBMessageType.none) -> Self- 1
- 1
And then we can use it as followed:
request(WeatherForm()).inform(error: WeatherInformError(), inform: MBMessageType.alertController(title: "Notice", message: "Load successfully", actions: [UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil)], container: self))- 1
- 1
Notice: We only have
informfor JSON format response now.
JSON to Object
request(WeatherForm()).responseObject(keyPath: "data") { (response: DataResponse<WeatherResponse>) in
if let value = response.result.value {
self.weatherResponse = value
self.tableView.reloadData()
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
For more information, see AlamofireObjectMapper.
Chained calls
All the method mentioned above can be called in a chained manner, such as followed:
let load = LoadConfig(container: view, mask:MBEyeLoading(), inset: UIEdgeInsetsMake(30+64, 15, UIScreen.main.bounds.height-64-(44*4+30+15*3), 15))
let warn = MBMessageType.alertController(title: "Warning", message: "Network unavailable", actions: [UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil)], container: self)
let inform = MBMessageType.alertController(title: "Notice", message: "Load successfully", actions: [UIAlertAction(title: "Ok", style: UIAlertActionStyle.cancel, handler: nil)], container: self)
request(WeatherForm()).load(load:load).progress(progress: progress).warn(error: WeatherError(), warn: warn).inform(error: WeatherInformError(), inform: inform)- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
Bonus
MBEyeloading
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 MBEyeloading in example project.
Example
To run the example project, clone the repo, and run pod install from the Example directory first.
Installation
MBNetwork is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod "MBNetwork"- 1
- 1
Author
mmoaay, mmoaay@sina.com
License
MBNetwork is available under the MIT license. See the LICENSE file for more info.