OAuth2 authentication for yesod
Go to file
2017-12-14 08:20:16 -05:00
example Add example application 2016-02-10 09:50:51 -05:00
test Update to LTS-9.5 and hoauth2 1.3.0 2017-10-18 17:21:47 -04:00
URI/ByteString Update to LTS-9.5 and hoauth2 1.3.0 2017-10-18 17:21:47 -04:00
Yesod/Auth Update to LTS-9.5 and hoauth2 1.3.0 2017-10-18 17:21:47 -04:00
.gitignore Add example application 2016-02-10 09:50:51 -05:00
circle.yml Let's try these shenanigans 2017-12-14 08:20:16 -05:00
LICENSE Initial import 2013-07-14 11:11:44 +02:00
README.md Fix code example in Readme 2017-07-17 11:52:38 -04:00
Setup.lhs Initial import 2013-07-14 11:11:44 +02:00
stack.yaml Run yammlint over stack.yaml and circle.yml 2017-12-14 08:20:16 -05:00
yesod-auth-oauth2.cabal Relax aeson and hoauth2 upper bounds 2017-12-14 08:20:16 -05:00

Yesod.Auth.OAuth2

OAuth2 AuthPlugins for Yesod.

Basic Usage

To use one of the supported providers:

import Yesod.Auth
import Yesod.Auth.OAuth2.Github

instance YesodAuth App where
    -- ...

    authPlugins _ = [oauth2Github clientId clientSecret]

clientId :: Text
clientId = "..."

clientSecret :: Text
clientSecret = "..."

Some plugins, such as GitHub and Slack, have scoped functions for requesting additional information:

import Yesod.Auth
import Yesod.Auth.OAuth2.Slack

instance YesodAuth App where
    -- ...

    authPlugins _ =
        [oauth2SlackScoped clientId clientSecret slackScopes]
      where
        slackScopes = [SlackEmailScope, SlackAvatarScope, SlackTeamScope]

clientId :: Text
clientId = "..."

clientSecret :: Text
clientSecret = "..."

Advanced Usage

To use any other provider:

import Yesod.Auth
import Yesod.Auth.OAuth2

instance YesodAuth App where
    -- ...

    authPlugins _ = [myPlugin]

myPlugin :: AuthPlugin m
myPlugin = authOAuth2 "mysite"
    (OAuth2
        { oauthClientId            = "..."
        , oauthClientSecret        = "..."
        , oauthOAuthorizeEndpoint  = "https://mysite.com/oauth/authorize"
        , oauthAccessTokenEndpoint = "https://mysite.com/oauth/token"
        , oauthCallback            = Nothing
        })
    makeCredentials

makeCredentials :: Manager -> AccessToken -> IO (Creds m)
makeCredentials manager token = do
    result <- authGetJSON manager token "https://mysite.com/api/me.json"
    return $ -- Parse the JSON into (Creds m)

If you write one of these, please consider opening a Pull Request