yesod/yesod-auth/Yesod
Konstantin Zudov 7ed5d4ad39 Added means to fetch user's Google profile
The existing GoogleEmail2 auth did that:
  - Acquire user access token with offline access
  - Use token to acquire user's profile
  - Build `Creds` with user's email as `ident` and the other profile
    details as stringy key-value pairs in `credsExtra`

This wasn't enough for me, for several reasons:
  - Access token was not saved after authentication. If we request 'offline'
    token why not to have a way of using it later.
  - Stringy key-value profile is not nice and `credsExtra` can be accessed
    only from `getAuthId`
  - I might want to request the profile after authentication process

So I've added the needed features.
  - The access token is saved in a session
  - There is a `Person` type with `FromJSON` instance and `getPerson`
    can be used to acquire it from `HandlerT`
2015-02-16 09:44:13 +02:00
..
Auth Added means to fetch user's Google profile 2015-02-16 09:44:13 +02:00
Auth.hs Perform onLogout before session cleaning 2015-02-05 00:21:14 +05:00
PasswordStore.hs Include patched pwstore-fast implementation. 2014-05-11 15:43:06 +03:00