2017-03-17 15:16:08 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-03-17 15:16:08 +01:00
|
|
|
|
|
|
|
package openid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2019-08-23 18:40:30 +02:00
|
|
|
|
|
|
|
"github.com/yohcop/openid-go"
|
2017-03-17 15:16:08 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// For the demo, we use in-memory infinite storage nonce and discovery
|
|
|
|
// cache. In your app, do not use this as it will eat up memory and
|
|
|
|
// never
|
|
|
|
// free it. Use your own implementation, on a better database system.
|
|
|
|
// If you have multiple servers for example, you may need to share at
|
|
|
|
// least
|
|
|
|
// the nonceStore between them.
|
2022-01-20 18:46:10 +01:00
|
|
|
var (
|
|
|
|
nonceStore = openid.NewSimpleNonceStore()
|
|
|
|
discoveryCache = newTimedDiscoveryCache(24 * time.Hour)
|
|
|
|
)
|
2017-03-17 15:16:08 +01:00
|
|
|
|
|
|
|
// Verify handles response from OpenID provider
|
|
|
|
func Verify(fullURL string) (id string, err error) {
|
|
|
|
return openid.Verify(fullURL, discoveryCache, nonceStore)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normalize normalizes an OpenID URI
|
|
|
|
func Normalize(url string) (id string, err error) {
|
|
|
|
return openid.Normalize(url)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RedirectURL redirects browser
|
|
|
|
func RedirectURL(id, callbackURL, realm string) (string, error) {
|
|
|
|
return openid.RedirectURL(id, callbackURL, realm)
|
|
|
|
}
|