8000 GitHub - thoughtbot/SuperbGitHub: GitHub authentication provider for Superb.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Sep 24, 2024. It is now read-only.
/ SuperbGitHub Public archive

GitHub authentication provider for Superb.

License

Notifications You must be signed in to change notification settings

thoughtbot/SuperbGitHub

Repository files navigation

SuperbGitHub

GitHub authentication providers for Superb.

Usage

SuperbGitHub implements two different authentication flows. Choose the flow that best suits your application's needs.

Web Application Flow using Safari View Controller

GitHubOAuthProvider implements the GitHub OAuth web application flow using Safari View Controller.

  1. Register your provider:

    // GitHub+Providers.swift
    
    import Superb
    import SuperbGitHub
    
    extension GitHubOAuthProvider {
      static var shared: GitHubOAuthProvider {
        return Superb.register(
          GitHubOAuthProvider(
            clientId: "<your client id>",
            clientSecret: "<your client secret>",
            redirectURI: URL(string: "<your chosen redirect URI>")!
          )
        )
      }
    }

    Don't forget to add your app's URL scheme to your Info.plist.

  2. Handle redirects:

    // AppDelegate.swift
    
    @UIApplicationMain
    final class AppDelegate: UIResponder, UIApplicationDelegate {
      // ...
    
      func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey: Any]) -> Bool {
        return Superb.handleAuthenticationRedirect(url, options: options)
      }
    }
  3. Use RequestAuthorizer to perform authorized API requests:

    // GitHubAPIClient.swift
    
    struct GitHubAPIClient {
      static let oauthClient = GitHubAPIClient(
        requestAuthorizer: RequestAuthorizer(
          authorizationProvider: GitHubOAuthProvider.shared
        )
      )
    
      // ...
    
      func getProfile(completionHandler: @escaping (Result<Profile, SuperbError>) -> Void) {
        let request = URLRequest(url: URL(string: "https://api.github.com/user")!)
    
        authorizer.performAuthorized(request) { result in
          switch result {
          case let .success(data, _):
            let profile = parseProfile(from: data)
            completionHandler(.success(profile))
    
          case let .failure(error):
            completionHandler(.failure(error))
          }
        }
      }
    }
    
    // later
    let api = GitHubAPIClient.oauthClient
    api.getProfile { result in
      // ...
    }

Non-Web Application Flow using Basic Auth

GitHubBasicAuthProvider implements the GitHub OAuth non-web application flow using a simple UIAlertController to prompt the user for their credentials. The credentials are then used to create a personal access token, and the user's credentials are discarded.

  1. Register your provider:

    // GitHub+Providers.swift
    
    import Superb
    import SuperbGitHub
    
    extension GitHubBasicAuthProvider {
      static var shared: GitHubBasicAuthProvider {
        return Superb.register(
          GitHubBasicAuthProvider()
        )
      }
    }
  2. Use RequestAuthorizer to perform authorized API requests:

    // GitHubAPIClient.swift
    
    extension GitHubAPIClient {
      static let basicAuthClient = GitHubAPIClient(
        requestAuthorizer: RequestAuthorizer(
          authorizationProvider: GitHubBasicAuthProvider.shared
        )
      )
    }
    
    // later
    let api = GitHubAPIClient.basicAuthClient
    api.getProfile { result in
      // ...
    }

Installation

Add the following to your Cartfile:

github "thoughtbot/Superb"
github "thoughtbot/SuperbGitHub" ~> 0.1

Then run carthage update SuperbGitHub.

Follow the current instructions in Carthage's README for up to date installation instructions.

In addition to SuperbGitHub.framework, you will need to embed both Superb.framework and Result.framework in your application.

Add the following to your Podfile:

pod "Superb"
pod "SuperbGitHub", "~> 0.1.0"

You will also need to make sure you're opting into using frameworks:

use_frameworks!

Then run pod install.

Contributing

See the CONTRIBUTING document. Thank you, contributors!

License

SuperbGitHub is Copyright (c) 2017 thoughtbot, inc. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About

thoughtbot

SuperbGitHub is maintained and funded by thoughtbot, inc. The names and logos for thoughtbot are trademarks of thoughtbot, inc.

We love open source software! See our other projects or hire us to help build your product.

0