hoc081098 / PhDownloader

Petrus Hoc's Downloader - Simple, reactive and functional downloader for iOS Swift with the power of RxSwift, RxAlamofire - RxSwift Downloader - RxDownloader

Home Page:https://cocoapods.org/pods/PhDownloader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PhDownloader (Petrus Hoc's Downloader)

Simple, reactive and functional downloader for iOS Swift with the power of RxSwift, RxAlamofire. RxSwift Downloader. RxDownloader.

iOS Build CI Version License Platform Hits

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

PhDownloader is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'PhDownloader'

Author

Petrus Nguyễn Thái Học, hoc081098@gmail.com

Usagement

Create downloader

let downloader: PhDownloader = PhDownloaderFactory.makeDownloader(
    with: .init(
        maxConcurrent: 2,
        throttleProgress: .milliseconds(500)
    )
)

Obseve download result (for showing snackbar, toast, alert, ...)

downloader
    .downloadResult$
    .subscribe(onNext: { result in
        switch result {
        case .success(let request):
          ...
        case .failure(let request, let error):
          ...
        case .cancelled(let request):
          ...
        }
    })
    .disposed(by: disposeBag)

Obseve download state (for updating UI)

downloader
    .observe(by: ["id1", "id2", "id3"])
    .subscribe(onNext: { tasks in
        ...
    })
    .disposed(by: disposeBag)

downloader
    .observe(by: "Request id")
    .subscribe(onNext: { task in 
        ...
    })
    .disposed(by: disposeBag)

Enqueue, cancel, cancelAll, remove:

let id = "Request id"

downloader
    .enqueue(
        .init(
            identifier: id,
            url: URL(string: "https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_1920_18MG.mp4")!,
            fileName: "test_file_\(id).mp4",
            savedDir: FileManager.default
                .urls(for: .documentDirectory, in: .userDomainMask)
                .first!
                .appendingPathComponent("downloads", isDirectory: true)
        )
    )
    .subscribe()
    .disposed(by: disposeBag)

downloader
    .cancel(by: id)
    .subscribe()
    .disposed(by: disposeBag)

downloader
    .cancelAll()
    .subscribe()
    .disposed(by: disposeBag)
    
downloader
    .remove(identifier: id)
    .subscribe()
    .disposed(by: disposeBag)

License

PhDownloader is available under the MIT license. See the LICENSE file for more info.

About

Petrus Hoc's Downloader - Simple, reactive and functional downloader for iOS Swift with the power of RxSwift, RxAlamofire - RxSwift Downloader - RxDownloader

https://cocoapods.org/pods/PhDownloader

License:MIT License


Languages

Language:Swift 91.4%Language:Ruby 7.5%Language:Objective-C 1.1%