Swiftpack.co - loay-ashraf/RxNetworkKit as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by loay-ashraf.
loay-ashraf/RxNetworkKit 0.0.2
a lightweight FRP networking framework.
⭐️ 2
🕓 4 weeks ago
iOS macOS
.package(url: "https://github.com/loay-ashraf/RxNetworkKit.git", from: "0.0.2")

RxNetworkKit

Swift Platforms iOS macOS Cocoapods SPM Twitter LinkedIn

RxNetworkKit is a lightweight FRP networking framework.

Built on top of Apple's URLSession and uses the well-known RxSwift FRP library.

Why RxNetworkKit?

RxNetworkKit fits nicely on your project if you use RxSwift and RxCocoa mainly in your project.

It makes use of RxSwift's traits at request level to acheive a high level of specialization for observed request sequence and expected output from it.

Full of Goodies:

  • includes download and upload capabillity with progress tracking all within the same observable sequence. cool, right?
  • includes a request interceptor protocol that can be implemented for request adaptation and retry on failure.
  • comes with a reachability class that you can observe from anywhere for reachability status.

Practical Examples

Simple API Call:

// Create 'Network Manager' instance.
let manager = NetworkManager(configuration: .default, requestInterceptor: self, eventMonitor: self)
// Create request router object.
let router = Router.default
// Make request observable sequence using request router.
let single: Single<Model> = manager.request(router)
// Subscrible to sequence and observe events.
single
    .observe(on: MainScheduler.instance)
    .subscribe(onSuccess: {
        print("Task Response: \($0)")
        print("Task Completed!")
    }, onFailure: {
        print("Task Failure: \($0.localizedDescription)")
    }, onDisposed: {
        print("Subscription is disposed!")
    })
    // Dispose subscription by dispose bag.
    .disposed(by: disposeBag)

Download Request:

// Create 'Network Manager' instance.
let manager = NetworkManager(configuration: .default, requestInterceptor: self, eventMonitor: self)
// Create download request router object.
let router = DownloadRouter.default
// Make download request observable sequence using request router.
let downloadObservable: Observable<DownloadEvent> = manager.download(router)
// Subscrible to sequence and observe events.
downloadObservable
    .observe(on: MainScheduler.instance)
    .subscribe(onNext: {
        switch $0 {
            case .progress(let progress):
                print("Download Task Progress: \(progress.fractionCompleted*100)%")
            case .completedWithData(let data):
                print("Download Task Completed with data: \(data).")
            default: break
         }
    }, onError: {
        print("Download Task Failure: \($0.localizedDescription)")
    }, onCompleted: {
        print("Download Task Completed!")
    })
    // Dispose subscription by dispose bag.
    .disposed(by: disposeBag)

Upload Request:

// Create 'Network Manager' instance.
let manager = NetworkManager(configuration: .default, requestInterceptor: self, eventMonitor: self)
// Create upload request router object.
let router = UploadRouter.default
// Make 'UploadFile' object.
let fileData = Data()
guard let file = UploadFile(forKey: UUID().uuidString, withName: "testFile.txt", withData: fileData) else { return }
// Make upload request observable sequence using request router and uploa file object.
let uploadObservable: Observable<UploadEvent<UploadModel>> = manager.upload(router, file)
// Subscrible to sequence and observe events.
uploadObservable
    .observe(on: MainScheduler.instance)
    .subscribe(onNext: {
        switch $0 {
            case .progress(let progress):
                print("Upload Task Progress: \(progress.fractionCompleted*100)%")
            case .completed(let model):
                print("Upload Task Completed with Response: \(model)")
        }
    }, onError: {
        print("Upload Task Failure: \($0.localizedDescription)")
    }, onCompleted: {
        print("Upload Task Completed!")
    })
    // Dispose subscription by dispose bag.
    .disposed(by: disposeBag)

Requirements

Platform Minimum Swift Version Installation Status
iOS 14.0+ / macOS 11.0+ 5.3 CocoaPods, Swift Package Manager, Manual Fully Tested

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate RxNetworkKit into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'RxNetworkKitX'

P.S: We had to postfix with 'X' as there's a pod on trunk with same name but different case 🤦‍♂️

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.

Once you have your Swift package set up, adding RxNetworkKit as a dependency is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/loay-ashraf/RxNetworkKit.git", .upToNextMajor(from: "0.0.1"))
]

Carthage

Support for Carthage is coming soon.

Manually

If you prefer not to use any of the aforementioned dependency managers, you can integrate RxNetworkKit into your project manually.

Embedded Framework

  • Open up Terminal, cd into your top-level project directory, and run the following command "if" your project is not initialized as a git repository:

    $ git init
    
  • Add RxNetworkKit as a git submodule by running the following command:

    $ git submodule add https://github.com/loay-ashraf/RxNetworkKit.git
    
  • Open the new RxNetworkKit folder, and drag the RxNetworkKit.xcodeproj into the Project Navigator of your application's Xcode project.

    It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.

  • Select the RxNetworkKit.xcodeproj in the Project Navigator and verify the deployment target matches that of your application target.

  • Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.

  • In the tab bar at the top of that window, open the "General" panel.

  • Click on the + button under the "Embedded Binaries" section.

  • You will see one RxNetworkKit.xcodeproj folder with one RxNetworkKit.framework nested inside it.

  • Select the RxNetworkKit.framework.

  • And that's it!

    The RxNetworkKit.framework is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.

Credits

This project uses the Smart Retry operator from this blog Smart Retry written by Alex Grebenyuk

GitHub

link
Stars: 2
Last commit: 3 weeks ago
jonrohan Something's broken? Yell at me @ptrpavlik. Praise and feedback (and money) is also welcome.

Dependencies

Release Notes

v0.0.2
4 weeks ago

🔥 New features:

  • Added the ability to decode response body incase of invalid status code.
  • Added macOS example to workspace

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics