2021-04-01 19:46:45 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-04-01 19:46:45 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-04-01 19:46:45 +01:00
|
|
|
"errors"
|
2022-06-08 19:38:03 +01:00
|
|
|
"fmt"
|
2021-04-01 19:46:45 +01:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-contrib/sessions"
|
|
|
|
"github.com/gin-gonic/gin"
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
2022-08-08 09:40:51 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2022-10-08 12:49:56 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
2021-04-01 19:46:45 +01:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
|
|
|
)
|
|
|
|
|
2021-04-20 17:14:23 +01:00
|
|
|
// login just wraps a form-submitted username (we want an email) and password
|
2021-04-01 19:46:45 +01:00
|
|
|
type login struct {
|
|
|
|
Email string `form:"username"`
|
|
|
|
Password string `form:"password"`
|
|
|
|
}
|
|
|
|
|
2021-04-20 17:14:23 +01:00
|
|
|
// SignInGETHandler should be served at https://example.org/auth/sign_in.
|
2021-04-01 19:46:45 +01:00
|
|
|
// The idea is to present a sign in page to the user, where they can enter their username and password.
|
2022-06-08 19:38:03 +01:00
|
|
|
// The form will then POST to the sign in page, which will be handled by SignInPOSTHandler.
|
|
|
|
// If an idp provider is set, then the user will be redirected to that to do their sign in.
|
2021-04-20 17:14:23 +01:00
|
|
|
func (m *Module) SignInGETHandler(c *gin.Context) {
|
2023-01-02 12:10:50 +00:00
|
|
|
if _, err := apiutil.NegotiateAccept(c, apiutil.HTMLAcceptHeaders...); err != nil {
|
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGet)
|
2021-12-11 16:50:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
if !config.GetOIDCEnabled() {
|
2022-08-08 09:40:51 +01:00
|
|
|
instance, errWithCode := m.processor.InstanceGet(c.Request.Context(), config.GetHost())
|
|
|
|
if errWithCode != nil {
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGet)
|
2022-08-08 09:40:51 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
// no idp provider, use our own funky little sign in page
|
2022-08-08 09:40:51 +01:00
|
|
|
c.HTML(http.StatusOK, "sign-in.tmpl", gin.H{
|
|
|
|
"instance": instance,
|
|
|
|
})
|
2022-06-08 19:38:03 +01:00
|
|
|
return
|
|
|
|
}
|
2021-07-23 09:36:28 +01:00
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
// idp provider is in use, so redirect to it
|
|
|
|
s := sessions.Default(c)
|
2021-07-23 09:36:28 +01:00
|
|
|
|
2022-07-28 15:43:27 +01:00
|
|
|
internalStateI := s.Get(sessionInternalState)
|
|
|
|
internalState, ok := internalStateI.(string)
|
2022-06-08 19:38:03 +01:00
|
|
|
if !ok {
|
|
|
|
m.clearSession(s)
|
2022-07-28 15:43:27 +01:00
|
|
|
err := fmt.Errorf("key %s was not found in session", sessionInternalState)
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGet)
|
2021-07-23 09:36:28 +01:00
|
|
|
return
|
|
|
|
}
|
2022-06-08 19:38:03 +01:00
|
|
|
|
2022-07-28 15:43:27 +01:00
|
|
|
c.Redirect(http.StatusSeeOther, m.idp.AuthCodeURL(internalState))
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2021-04-20 17:14:23 +01:00
|
|
|
// SignInPOSTHandler should be served at https://example.org/auth/sign_in.
|
2021-04-01 19:46:45 +01:00
|
|
|
// The idea is to present a sign in page to the user, where they can enter their username and password.
|
|
|
|
// The handler will then redirect to the auth handler served at /auth
|
2021-04-20 17:14:23 +01:00
|
|
|
func (m *Module) SignInPOSTHandler(c *gin.Context) {
|
2021-04-01 19:46:45 +01:00
|
|
|
s := sessions.Default(c)
|
2022-06-08 19:38:03 +01:00
|
|
|
|
2021-04-01 19:46:45 +01:00
|
|
|
form := &login{}
|
|
|
|
if err := c.ShouldBind(form); err != nil {
|
2021-07-23 09:36:28 +01:00
|
|
|
m.clearSession(s)
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, oauth.HelpfulAdvice), m.processor.InstanceGet)
|
2021-04-01 19:46:45 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
userid, errWithCode := m.ValidatePassword(c.Request.Context(), form.Email, form.Password)
|
|
|
|
if errWithCode != nil {
|
|
|
|
// don't clear session here, so the user can just press back and try again
|
|
|
|
// if they accidentally gave the wrong password or something
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGet)
|
2021-04-01 19:46:45 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-08 10:32:31 +01:00
|
|
|
s.Set(sessionUserID, userid)
|
2021-04-01 19:46:45 +01:00
|
|
|
if err := s.Save(); err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := fmt.Errorf("error saving user id onto session: %s", err)
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorInternalError(err, oauth.HelpfulAdvice), m.processor.InstanceGet)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
c.Redirect(http.StatusFound, "/oauth"+OauthAuthorizePath)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2021-04-20 17:14:23 +01:00
|
|
|
// ValidatePassword takes an email address and a password.
|
2021-04-01 19:46:45 +01:00
|
|
|
// The goal is to authenticate the password against the one for that email
|
2021-06-13 17:42:28 +01:00
|
|
|
// address stored in the database. If OK, we return the userid (a ulid) for that user,
|
2021-04-01 19:46:45 +01:00
|
|
|
// so that it can be used in further Oauth flows to generate a token/retreieve an oauth client from the db.
|
2022-06-08 19:38:03 +01:00
|
|
|
func (m *Module) ValidatePassword(ctx context.Context, email string, password string) (string, gtserror.WithCode) {
|
2021-04-01 19:46:45 +01:00
|
|
|
if email == "" || password == "" {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := errors.New("email or password was not provided")
|
|
|
|
return incorrectPassword(err)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2022-10-03 09:46:11 +01:00
|
|
|
user, err := m.db.GetUserByEmailAddress(ctx, email)
|
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := fmt.Errorf("user %s was not retrievable from db during oauth authorization attempt: %s", email, err)
|
|
|
|
return incorrectPassword(err)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
if user.EncryptedPassword == "" {
|
|
|
|
err := fmt.Errorf("encrypted password for user %s was empty for some reason", user.Email)
|
|
|
|
return incorrectPassword(err)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
if err := bcrypt.CompareHashAndPassword([]byte(user.EncryptedPassword), []byte(password)); err != nil {
|
|
|
|
err := fmt.Errorf("password hash didn't match for user %s during login attempt: %s", user.Email, err)
|
|
|
|
return incorrectPassword(err)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
return user.ID, nil
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
// incorrectPassword wraps the given error in a gtserror.WithCode, and returns
|
|
|
|
// only a generic 'safe' error message to the user, to not give any info away.
|
|
|
|
func incorrectPassword(err error) (string, gtserror.WithCode) {
|
|
|
|
safeErr := fmt.Errorf("password/email combination was incorrect")
|
2022-10-08 12:49:56 +01:00
|
|
|
return "", gtserror.NewErrorUnauthorized(err, safeErr.Error(), oauth.HelpfulAdvice)
|
2021-04-01 19:46:45 +01:00
|
|
|
}
|