Documentation ¶
Index ¶
- Constants
- func AccessTokenOAuth(ctx *context.Context)
- func Activate(ctx *context.Context)
- func ActivateEmail(ctx *context.Context)
- func ActivatePost(ctx *context.Context)
- func AuthorizeOAuth(ctx *context.Context)
- func CheckAutoLogin(ctx *context.Context) bool
- func ConnectOpenID(ctx *context.Context)
- func ConnectOpenIDPost(ctx *context.Context)
- func ForgotPasswd(ctx *context.Context)
- func ForgotPasswdPost(ctx *context.Context)
- func GrantApplicationOAuth(ctx *context.Context)
- func HandleSignOut(ctx *context.Context)
- func InfoOAuth(ctx *context.Context)
- func IntrospectOAuth(ctx *context.Context)
- func LinkAccount(ctx *context.Context)
- func LinkAccountPostRegister(ctx *context.Context)
- func LinkAccountPostSignIn(ctx *context.Context)
- func MustChangePassword(ctx *context.Context)
- func MustChangePasswordPost(ctx *context.Context)
- func OIDCKeys(ctx *context.Context)
- func OIDCWellKnown(ctx *context.Context)
- func RedirectAfterLogin(ctx *context.Context)
- func RegisterOpenID(ctx *context.Context)
- func RegisterOpenIDPost(ctx *context.Context)
- func ResetPasswd(ctx *context.Context)
- func ResetPasswdPost(ctx *context.Context)
- func SignIn(ctx *context.Context)
- func SignInOAuth(ctx *context.Context)
- func SignInOAuthCallback(ctx *context.Context)
- func SignInOpenID(ctx *context.Context)
- func SignInOpenIDPost(ctx *context.Context)
- func SignInPost(ctx *context.Context)
- func SignOut(ctx *context.Context)
- func SignUp(ctx *context.Context)
- func SignUpPost(ctx *context.Context)
- func TwoFactor(ctx *context.Context)
- func TwoFactorPost(ctx *context.Context)
- func TwoFactorScratch(ctx *context.Context)
- func TwoFactorScratchPost(ctx *context.Context)
- func WebAuthn(ctx *context.Context)
- func WebAuthnLoginAssertion(ctx *context.Context)
- func WebAuthnLoginAssertionPost(ctx *context.Context)
- type AccessTokenError
- type AccessTokenErrorCode
- type AccessTokenResponse
- type AuthorizeError
- type AuthorizeErrorCode
- type TokenType
Constants ¶
const ( TplActivate base.TplName = "user/auth/activate" // for activate user TplActivatePrompt base.TplName = "user/auth/activate_prompt" // for showing a message for user activation )
const ( // AccessTokenErrorCodeInvalidRequest represents an error code specified in RFC 6749 AccessTokenErrorCodeInvalidRequest AccessTokenErrorCode = "invalid_request" // AccessTokenErrorCodeInvalidClient represents an error code specified in RFC 6749 AccessTokenErrorCodeInvalidClient = "invalid_client" // AccessTokenErrorCodeInvalidGrant represents an error code specified in RFC 6749 AccessTokenErrorCodeInvalidGrant = "invalid_grant" AccessTokenErrorCodeUnauthorizedClient = "unauthorized_client" // AccessTokenErrorCodeUnsupportedGrantType represents an error code specified in RFC 6749 AccessTokenErrorCodeUnsupportedGrantType = "unsupported_grant_type" // AccessTokenErrorCodeInvalidScope represents an error code specified in RFC 6749 AccessTokenErrorCodeInvalidScope = "invalid_scope" )
Variables ¶
This section is empty.
Functions ¶
func AccessTokenOAuth ¶
AccessTokenOAuth manages all access token requests by the client
func ActivateEmail ¶
ActivateEmail render the activate email page
func ActivatePost ¶
ActivatePost handles account activation with password check
func AuthorizeOAuth ¶
AuthorizeOAuth manages authorize requests
func CheckAutoLogin ¶ added in v1.22.0
func ConnectOpenID ¶
ConnectOpenID shows a form to connect an OpenID URI to an existing account
func ConnectOpenIDPost ¶
ConnectOpenIDPost handles submission of a form to connect an OpenID URI to an existing account
func ForgotPasswd ¶
ForgotPasswd render the forget password page
func ForgotPasswdPost ¶
ForgotPasswdPost response for forget password request
func GrantApplicationOAuth ¶
GrantApplicationOAuth manages the post request submitted when a user grants access to an application
func HandleSignOut ¶
HandleSignOut resets the session and sets the cookies
func IntrospectOAuth ¶
IntrospectOAuth introspects an oauth token
func LinkAccount ¶
LinkAccount shows the page where the user can decide to login or create a new account
func LinkAccountPostRegister ¶
LinkAccountPostRegister handle the creation of a new account for an external account using signUp
func LinkAccountPostSignIn ¶
LinkAccountPostSignIn handle the coupling of external account with another account using signIn
func MustChangePassword ¶
MustChangePassword renders the page to change a user's password
func MustChangePasswordPost ¶
MustChangePasswordPost response for updating a user's password after their account was created by an admin
func OIDCWellKnown ¶
OIDCWellKnown generates JSON so OIDC clients know Gitea's capabilities
func RedirectAfterLogin ¶ added in v1.21.8
func RegisterOpenID ¶
RegisterOpenID shows a form to create a new user authenticated via an OpenID URI
func RegisterOpenIDPost ¶
RegisterOpenIDPost handles submission of a form to create a new user authenticated via an OpenID URI
func ResetPasswd ¶
ResetPasswd render the account recovery page
func ResetPasswdPost ¶
ResetPasswdPost response from account recovery request
func SignInOAuth ¶
SignInOAuth handles the OAuth2 login buttons
func SignInOAuthCallback ¶
SignInOAuthCallback handles the callback from the given provider
func SignInOpenIDPost ¶
SignInOpenIDPost response for openid sign in request
func SignUpPost ¶
SignUpPost response for sign up information submission
func TwoFactorPost ¶
TwoFactorPost validates a user's two-factor authentication token.
func TwoFactorScratch ¶
TwoFactorScratch shows the scratch code form for two-factor authentication.
func TwoFactorScratchPost ¶
TwoFactorScratchPost validates and invalidates a user's two-factor scratch token.
func WebAuthnLoginAssertion ¶
WebAuthnLoginAssertion submits a WebAuthn challenge to the browser
func WebAuthnLoginAssertionPost ¶
WebAuthnLoginAssertionPost validates the signature and logs the user in
Types ¶
type AccessTokenError ¶
type AccessTokenError struct { ErrorCode AccessTokenErrorCode `json:"error" form:"error"` ErrorDescription string `json:"error_description"` }
AccessTokenError represents an error response specified in RFC 6749 https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
func (AccessTokenError) Error ¶
func (err AccessTokenError) Error() string
Error returns the error message
type AccessTokenErrorCode ¶
type AccessTokenErrorCode string
AccessTokenErrorCode represents an error code specified in RFC 6749 https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
type AccessTokenResponse ¶
type AccessTokenResponse struct { AccessToken string `json:"access_token"` TokenType TokenType `json:"token_type"` ExpiresIn int64 `json:"expires_in"` RefreshToken string `json:"refresh_token"` IDToken string `json:"id_token,omitempty"` }
AccessTokenResponse represents a successful access token response https://datatracker.ietf.org/doc/html/rfc6749#section-4.2.2
type AuthorizeError ¶
type AuthorizeError struct { ErrorCode AuthorizeErrorCode `json:"error" form:"error"` ErrorDescription string State string }
AuthorizeError represents an error type specified in RFC 6749 https://datatracker.ietf.org/doc/html/rfc6749#section-4.2.2.1
func (AuthorizeError) Error ¶
func (err AuthorizeError) Error() string
Error returns the error message
type AuthorizeErrorCode ¶
type AuthorizeErrorCode string
AuthorizeErrorCode represents an error code specified in RFC 6749 https://datatracker.ietf.org/doc/html/rfc6749#section-4.2.2.1
const ( // ErrorCodeInvalidRequest represents the according error in RFC 6749 ErrorCodeInvalidRequest AuthorizeErrorCode = "invalid_request" ErrorCodeUnauthorizedClient AuthorizeErrorCode = "unauthorized_client" // ErrorCodeAccessDenied represents the according error in RFC 6749 ErrorCodeAccessDenied AuthorizeErrorCode = "access_denied" // ErrorCodeUnsupportedResponseType represents the according error in RFC 6749 ErrorCodeUnsupportedResponseType AuthorizeErrorCode = "unsupported_response_type" // ErrorCodeInvalidScope represents the according error in RFC 6749 ErrorCodeInvalidScope AuthorizeErrorCode = "invalid_scope" // ErrorCodeServerError represents the according error in RFC 6749 ErrorCodeServerError AuthorizeErrorCode = "server_error" ErrorCodeTemporaryUnavailable AuthorizeErrorCode = "temporarily_unavailable" )