presscorp / NetworkS

Classic networking package for iOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NetworkS

Classic networking package for iOS (version >= 13.0)


List of features

  • NetworkS utilizes fundamental URLSession under the hood
  • NetworkS uses callback based approach for request making
  • All interactions with NetworkS are based on protocols, so you can make your own implementations of NetworkSessionInterface, NetworkService
  • NetworkS provides logger that prints beautifully crafted request/response events into Xcode console
  • NetworkS provides the opportunity to renew session by updating authorization
  • NetworkS supports SSL certificate pinning along with default challenge
  • NetworkS supports easily implemented response mocking
  • NetworkS supports response caching feature

Example of use

Creating URL list

import NetworkS

struct HttpbinOrgURL: RequestURLExtensible {

    let path: String
    var host: String { "httpbin.org" }
}

extension HttpbinOrgURL {

    static let uuid = Self("/uuid")
}

Describing request

import NetworkS

class UUIDRequest: NetworkRequest {

    var url: RequestURL { HttpbinOrgURL.uuid }
    var method: RequestMethod { .GET }
    var encoding: RequestContentEncoding { .url }
}

Making the request

import NetworkS

// Create session interface and use it across the app
let sessionAdapter = NetworkSessionAdapter()
sessionAdapter.defaultSSLChallengeEnabled = true

// Work with a new instance of network service
let worker = NetworkWorker(sessionInterface: sessionAdapter)

let request = UUIDRequest()
let task = worker.buildTask(from: request) { response in
    if response.success,
       let body = response.jsonBody,
       let uuidString = body["uuid"] as? String {
        print("UUID: " + uuidString)
    }
}

task?.run()

License

NetworkS is released under the MIT license

About

Classic networking package for iOS

License:MIT License


Languages

Language:Swift 100.0%