PhDownloader 0.7.0

PhDownloader 0.7.0

Maintained by Petrus Nguyễn Thái Học.



 
Depends on:
Alamofire~> 5.6
RxAlamofire~> 6.1
RxSwift~> 6.5
RxRelay~> 6.5
Realm~> 10.32
RealmSwift~> 10.32
RxRealm~> 5.0
 

PhDownloader (Petrus Hoc's Downloader)

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

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, [email protected]

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.