Hyperspace provides a simple abstraction around URLSession and HTTP. There are a few main goals:
- Keep things simple.
- Keep the overall library size to a minimum. Of course, there will be some boilerplate involved (such as the
HTTP
definitions), but our main goal is to keep the library highly functional and maintainable without over-engineering. - Tailor the library to the networking use cases that we encounter the most often. We will continue to add features based on the common needs across all of the apps that we build.
- HTTP - Contains standard HTTP definitions and types. If you feel something is missing from here, please submit a pull request.
- Request - A struct that defines the details of a network request, including the desired result and error types. This is basically a thin wrapper around
URLRequest
, utilizing the definitions inHTTP
. - TransportService - Uses a
TransportSession
(URLSession
by default) to executeURLRequests
. Deals with rawHTTP
andData
. - BackendService - Uses a
TransportService
to executeRequests
. Transforms the rawData
returned from theTransportService
into the response model type defined by theRequest
. This is the main worker object your app will deal with directly.
You have multiple options when creating requests. These include creating static functions to reduce the boilerplate when creating a Request
object or simply creating them locally. In addition, you can still create your own custom struct that wraps and vends a Request
object if your network requests are complex.
The example below illustrates how to create an extension on Request
which can drastically reduce the boilerplate when creating a request to create a new post in something like a social network feed. It takes advantage of the many defaults into Request
(all of which are customizable) to keep the definition brief:
extension Request where Response == Post {
static func createPost(_ post: NewPost) -> Request<Post> {
return Request(method: .post, url: URL(string: "https://jsonplaceholder.typicode.com/posts")!, headers: [.contentType: .applicationJSON], body: try? HTTP.Body.json(post))
}
}
let createPostRequest: Request<Post> = Request(method: .post, url: URL(string: "https://jsonplaceholder.typicode.com/posts")!, headers: [.contentType: .applicationJSON], body: try? HTTP.Body.json(post))
struct CreatePostRequest {
let newPost: NewPost
var request: Request<Post> {
return Request(method: .post, url: URL(string: "https://jsonplaceholder.typicode.com/posts")!, headers: [.contentType: .applicationJSON], body: try? HTTP.Body.json(post))
}
}
For the above examples, the Post
response type and NewPost
body are defined as follows:
struct Post: Decodable {
let id: Int
let userId: Int
let title: String
let body: String
}
struct NewPost: Encodable {
let userId: Int
let title: String
let body: String
}
To avoid having to define default Request
property values for every request in your app, it can be useful to rely on the RequestDefaults
provided by Hyperspace. These can even be customized:
RequestDefaults.defaultCachePolicy = .reloadIgnoringLocalCacheData // Default cache policy is '.useProtocolCachePolicy'
RequestDefaults.defaultDecoder = MyCustomDecoder() // Default decoder is JSONDecoder()
We recommend adhering to the Interface Segregation principle by creating separate "controller" objects for each section of the API you're communicating with. Each controller should expose a set of related functions and use a BackendService
to execute requests. However, for this simple example, we'll just use BackendService
directly as a private
property on the view controller:
class ViewController: UIViewController {
private let backendService = BackendService()
// Rest of your view controller code...
}
Let's say a view controller is supposed to create the post whenever the user taps the "send" button. Here's what that might look like:
@IBAction private func sendButtonTapped(_ sender: UIButton) {
let title = ... // Get the title from a text view in the UI...
let message = ... // Get the message from a text view/field in the UI...
let post = NewPost(userId: 1, title: title, body: message)
let createPostRequest = CreatePostRequest(newPost: post)
// Execute the network request...
}
For the above example, here's how you would execute the request and parse the response. While all data transformation happens on the background queue that the underlying URLSession is using, all BackendService
completion callbacks happen on the main queue so there's no need to worry about threading before you update UI. Notice that the type of the success response's associated value below is a Post
struct as defined in the CreatePostRequest
above:
do {
let post = NewPost(userId: 1, title: title, body: "")
let createPostRequest = Request<Post>.createPost(post)
let createdPost = try await backendService.execute(request: createPostRequest)
// Insert the new post into the UI...
} catch {
// Alert the user to the error...
}
Clone the repo:
git clone https://github.com/BottleRocketStudios/iOS-Hyperspace.git
From here, you can open up Hyperspace.xcworkspace
and run the examples:
Models.swift
,Requests.swift
- Sample models and network requests shared by the various examples.
- Hyperspace-iOSExample
ViewController.swift
- View a simplified example of how you might use this in your iOS app.
- Hyperspace-tvOSExample
ViewController.swift
- View a simplified example of how you might use this in your tvOS app (this is essentially the same as the iOS example).
- Hyperspace-watchOSExample Extension
InterfaceController.swift
- View a simplified example of how you might use this in your watchOS app.
- Playground/Hyperspace.playground
- View and run a single file that defines models, network requests, and executes the requests similar to the example targets above.
- Playground/Hyperspace_DELETE.playground
- An example of how to deal with requests that don't return a result. This is usually common for DELETE requests.
- iOS 13.0+
- tvOS 13.0+
- watchOS 6.0+
- macOS 11+
- Swift 5.6
Hyperspace is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'Hyperspace'
Add the following to your Cartfile:
github "BottleRocketStudios/iOS-Hyperspace"
Run carthage update
and follow the steps as described in Carthage's README.
dependencies: [
.package(url: "https://github.com/BottleRocketStudios/iOS-Hyperspace.git", from: "5.0.0")
]
Hyperspace is available under the Apache 2.0 license. See the LICENSE.txt file for more info.
See the CONTRIBUTING document. Thank you, contributors!