mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Requires further testing and refinement before it can be released. Signed-off-by: Michael Mayer <michael@photoprism.app>
228 lines
8.5 KiB
Go
228 lines
8.5 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/internal/server/limiter"
|
|
"github.com/photoprism/photoprism/pkg/authn"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
"github.com/photoprism/photoprism/pkg/header"
|
|
"github.com/photoprism/photoprism/pkg/i18n"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
"github.com/photoprism/photoprism/pkg/unix"
|
|
)
|
|
|
|
// OIDCRedirect creates a new access token for authenticated users and then redirects the browser back to the app.
|
|
//
|
|
// GET /api/v1/oidc/redirect
|
|
func OIDCRedirect(router *gin.RouterGroup) {
|
|
router.GET("/oidc/redirect", func(c *gin.Context) {
|
|
// Get global config.
|
|
conf := get.Config()
|
|
|
|
// Prevent CDNs from caching this endpoint.
|
|
if header.IsCdn(c.Request) {
|
|
c.Redirect(http.StatusTemporaryRedirect, conf.LoginUri())
|
|
return
|
|
}
|
|
|
|
// Disable caching of responses.
|
|
c.Header(header.CacheControl, header.CacheControlNoStore)
|
|
|
|
// Get client IP address for logs and rate limiting checks.
|
|
clientIp := ClientIP(c)
|
|
actor := "unknown user"
|
|
action := "redirect"
|
|
|
|
// Abort in public mode and if OIDC is disabled.
|
|
if get.Config().Public() {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrDisabledInPublicMode.Error()})
|
|
c.Redirect(http.StatusTemporaryRedirect, conf.LoginUri())
|
|
return
|
|
} else if !conf.OIDCEnabled() {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrAuthenticationDisabled.Error()})
|
|
c.Redirect(http.StatusTemporaryRedirect, conf.LoginUri())
|
|
return
|
|
}
|
|
|
|
// Check request rate limit.
|
|
var r *limiter.Request
|
|
r = limiter.Login.Request(clientIp)
|
|
|
|
// Abort if failure rate limit is exceeded.
|
|
if r.Reject() || limiter.Auth.Reject(clientIp) {
|
|
c.HTML(http.StatusTooManyRequests, "auth.gohtml", CreateSessionError(http.StatusTooManyRequests, i18n.Error(i18n.ErrForbidden)))
|
|
return
|
|
}
|
|
|
|
// Check if the required request parameters are present.
|
|
if c.Query("state") == "" || c.Query("code") == "" {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrAuthCodeRequired.Error()})
|
|
c.Redirect(http.StatusTemporaryRedirect, conf.LoginUri())
|
|
return
|
|
}
|
|
|
|
// Get OIDC provider.
|
|
provider := get.OIDC()
|
|
|
|
if provider == nil {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrAuthenticationDisabled.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
}
|
|
|
|
userInfo, tokens, claimErr := provider.CodeExchangeUserInfo(c)
|
|
|
|
if claimErr != nil {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, claimErr.Error()})
|
|
return
|
|
}
|
|
|
|
// Step 1: Create user account if it does not exist yet.
|
|
var user *entity.User
|
|
var err error
|
|
|
|
// Find existing user record and update it, if necessary.
|
|
if oidcUser := entity.OidcUser(userInfo, conf.OIDCUsername()); oidcUser.UserName == "" || authn.ProviderOIDC.NotEqual(oidcUser.AuthProvider) {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrInvalidUsername.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
} else if user = entity.FindUser(oidcUser); user != nil {
|
|
// Check if username and subject UID match.
|
|
if user.Username() == "" || oidcUser.UserName == "" || user.Username() != oidcUser.UserName {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrInvalidUsername.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
} else if user.AuthID == "" || oidcUser.AuthID == "" || user.AuthID != oidcUser.AuthID {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrInvalidAuthID.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
}
|
|
|
|
actor = user.Username()
|
|
|
|
// Update user profile information.
|
|
user.SetDisplayName(userInfo.GetName(), entity.SrcOIDC)
|
|
user.SetGivenName(userInfo.GetGivenName())
|
|
user.SetFamilyName(userInfo.GetFamilyName())
|
|
|
|
// Update user account.
|
|
if err = user.Save(); err != nil {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrAccountUpdateFailed.Error(), err.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
}
|
|
} else if conf.OIDCRegister() {
|
|
// Create new user record.
|
|
user = &oidcUser
|
|
actor = user.Username()
|
|
|
|
// Set profile information.
|
|
user.SetDisplayName(userInfo.GetName(), entity.SrcOIDC)
|
|
user.SetGivenName(userInfo.GetGivenName())
|
|
user.SetFamilyName(userInfo.GetFamilyName())
|
|
user.Details().NickName = clean.Name(userInfo.GetNickname())
|
|
user.Details().ProfileURL = clean.Uri(userInfo.GetProfile())
|
|
user.Details().SiteURL = clean.Uri(userInfo.GetWebsite())
|
|
user.Details().UserGender = clean.Name(string(userInfo.GetGender()))
|
|
|
|
// Set UI locale.
|
|
if locale, _, _ := userInfo.GetLocale().Raw(); len(locale.String()) == 2 {
|
|
user.Settings().UILanguage = locale.String()
|
|
}
|
|
|
|
// Set UI timezone.
|
|
user.Settings().UITimeZone = userInfo.GetZoneinfo()
|
|
|
|
// Set address information, if available.
|
|
if addr := userInfo.GetAddress(); addr != nil {
|
|
user.Details().UserLocation = clean.Name(addr.GetLocality())
|
|
user.Details().UserCountry = clean.TypeLowerUnderscore(addr.GetCountry())
|
|
}
|
|
|
|
// Set birthday, if available.
|
|
if birthDate := txt.ParseTime(userInfo.GetBirthdate(), userInfo.GetZoneinfo()); !birthDate.IsZero() {
|
|
user.BornAt = &birthDate
|
|
user.Details().BirthDay = birthDate.Day()
|
|
user.Details().BirthMonth = int(birthDate.Month())
|
|
user.Details().BirthYear = birthDate.Year()
|
|
}
|
|
|
|
// Flag as verified?
|
|
if userInfo.IsEmailVerified() {
|
|
user.UserEmail = clean.Email(userInfo.GetEmail())
|
|
user.VerifiedAt = entity.TimeStamp()
|
|
}
|
|
|
|
// Set role and permissions.
|
|
user.SetRole(conf.OIDCRole().String())
|
|
user.CanLogin = true
|
|
user.WebDAV = conf.OIDCWebDAV()
|
|
|
|
// Create user account.
|
|
if err = user.Create(); err != nil {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrAccountCreateFailed.Error(), err.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
}
|
|
} else {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrRegistrationDisabled.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
}
|
|
|
|
// Login allowed?
|
|
if !user.CanLogIn() {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, authn.ErrAccountDisabled.Error()})
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
}
|
|
|
|
// Step 2: Create user session.
|
|
sess := get.Session().New(c)
|
|
sess.SetProvider(authn.ProviderOIDC)
|
|
sess.SetMethod(authn.MethodDefault)
|
|
sess.SetUser(user)
|
|
sess.SetGrantType(authn.GrantAuthorizationCode)
|
|
|
|
// Set identity provider tokens.
|
|
sess.IdToken = tokens.IDToken
|
|
sess.AccessToken = tokens.AccessToken
|
|
sess.RefreshToken = tokens.RefreshToken
|
|
|
|
// Set session expiration and timeout.
|
|
sess.SetExpiresIn(unix.Day)
|
|
sess.SetTimeout(-1)
|
|
|
|
// Save session after successful authentication.
|
|
if sess, err = get.Session().Save(sess); err != nil {
|
|
event.AuditErr([]string{clientIp, "oidc", actor, action, "%s"}, err)
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrInvalidCredentials)))
|
|
return
|
|
} else if sess == nil {
|
|
c.HTML(http.StatusUnauthorized, "auth.gohtml", CreateSessionError(http.StatusUnauthorized, i18n.Error(i18n.ErrUnexpected)))
|
|
return
|
|
}
|
|
|
|
// Return the reserved request rate limit token after successful authentication.
|
|
r.Success()
|
|
|
|
// Response includes user data, session data, and client config values.
|
|
response := CreateSessionResponse(sess.AuthToken(), sess, conf.ClientSession(sess))
|
|
|
|
// Log success.
|
|
event.AuditInfo([]string{clientIp, "oidc", actor, action, authn.Succeeded})
|
|
|
|
// Update login timestamp.
|
|
user.UpdateLoginTime()
|
|
|
|
// Step 3: Render HTML template to set the access token in localStorage.
|
|
c.HTML(http.StatusOK, "auth.gohtml", response)
|
|
})
|
|
}
|