Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
/ ReactiveOAuth Public archive

OAuthSwift + ReactiveSwift = ๐Ÿฆ„๐Ÿ’–

License

Notifications You must be signed in to change notification settings

Swifteroid/ReactiveOAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

60 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

ReactiveOAuth

Build Status GitHub Release Carthage Compatible Platform

ReactiveOAuth is a wrapper for OAuthSwift with ReactiveSwift support and some pre-configured services, mostly useful in macOS projects.

  • Elegant api with reactive extensions support.
  • OAuth and re-OAuth (refresh token) commands with or without account details.
  • Customisable account detalisators: full response / json with custom field filtering.
import AppKit
import Foundation
import ReactiveOAuth
import ReactiveSwift

internal class MainViewController: NSViewController
{
    @IBAction private func handleOAuthButtonAction(_ button: NSButton) {
        let storyboard: NSStoryboard = NSStoryboard(name: "main", bundle: Bundle.main)
        let controller: OAuthViewController = storyboard.instantiateController(withIdentifier: "OAuthViewController") as! OAuthViewController
        let configuration: OAuth.Configuration = Dropbox.configure(access: Access(key: "foo", secret: "bar"), url: "https://baz.com/quz")
        let detalisator: Detalisator<String> = DropboxDetalisator()
        let oauth: DetailedOAuth<String> = DetailedOAuth(oauth: OAuth(configuration: configuration), detalisator: detalisator)

        oauth.reactive.authorised.observe(Observer(
            value: { (credential: Credential, string: String) in
                Swift.print(credential, string)
            },
            failed: { (error: ReactiveOAuth.Error) in
                Swift.print(error.description)
            }
        ))

        self.authorise(oauthViewController: controller, oauth: oauth)
    }
}

Install

Add ReactiveOAuth as a dependency of your package in Package.swift:

.package(url: "https://github.com/Swifteroid/ReactiveOAuth.git", from: "1.0.0")

Testing

ReactiveOAuth uses real accounts for testing provided in test/oauth.json, they are kept blank for security reasons and injected by Travis CI during testing. So, if you want to test your own integrations, simply configure required services, unconfigured ones will be skipped. Travis expects REACTIVEOAUTH_CREDENTIALS environment variable, the following command copies current configuration in acceptable format escaped for shell.

jq --join-output "tojson | @sh" test/oauth.json | pbcopy