| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 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/>. | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | package user | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/ap" | 
					
						
							|  |  |  | 	apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtserror" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/messages" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/validate" | 
					
						
							|  |  |  | 	"golang.org/x/crypto/bcrypt" | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | // EmailChange processes an email address change request for the given user. | 
					
						
							|  |  |  | func (p *Processor) EmailChange( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	user *gtsmodel.User, | 
					
						
							|  |  |  | 	password string, | 
					
						
							|  |  |  | 	newEmail string, | 
					
						
							|  |  |  | ) (*apimodel.User, gtserror.WithCode) { | 
					
						
							|  |  |  | 	// Ensure provided password is correct. | 
					
						
							|  |  |  | 	if err := bcrypt.CompareHashAndPassword([]byte(user.EncryptedPassword), []byte(password)); err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("%w", err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorUnauthorized(err, "password was incorrect") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure new email address is valid. | 
					
						
							|  |  |  | 	if err := validate.Email(newEmail); err != nil { | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure new email address is different | 
					
						
							|  |  |  | 	// from current email address. | 
					
						
							|  |  |  | 	if newEmail == user.Email { | 
					
						
							|  |  |  | 		const help = "new email address cannot be the same as current email address" | 
					
						
							|  |  |  | 		err := gtserror.New(help) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorBadRequest(err, help) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if newEmail == user.UnconfirmedEmail { | 
					
						
							|  |  |  | 		const help = "you already have an email change request pending for given email address" | 
					
						
							|  |  |  | 		err := gtserror.New(help) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorBadRequest(err, help) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure this address isn't already used by another account. | 
					
						
							|  |  |  | 	emailAvailable, err := p.state.DB.IsEmailAvailable(ctx, newEmail) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("db error checking email availability: %w", err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !emailAvailable { | 
					
						
							|  |  |  | 		const help = "new email address is already in use on this instance" | 
					
						
							|  |  |  | 		err := gtserror.New(help) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorConflict(err, help) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Set new email address on user. | 
					
						
							|  |  |  | 	user.UnconfirmedEmail = newEmail | 
					
						
							|  |  |  | 	if err := p.state.DB.UpdateUser( | 
					
						
							|  |  |  | 		ctx, user, | 
					
						
							|  |  |  | 		"unconfirmed_email", | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("db error updating user: %w", err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure user populated (we need account). | 
					
						
							|  |  |  | 	if err := p.state.DB.PopulateUser(ctx, user); err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("db error populating user: %w", err) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Add email sending job to the queue. | 
					
						
							|  |  |  | 	p.state.Workers.Client.Queue.Push(&messages.FromClientAPI{ | 
					
						
							|  |  |  | 		// Use ap.ObjectProfile here to | 
					
						
							|  |  |  | 		// distinguish this message (user model) | 
					
						
							|  |  |  | 		// from ap.ActorPerson (account model). | 
					
						
							|  |  |  | 		APObjectType:   ap.ObjectProfile, | 
					
						
							|  |  |  | 		APActivityType: ap.ActivityUpdate, | 
					
						
							|  |  |  | 		GTSModel:       user, | 
					
						
							|  |  |  | 		Origin:         user.Account, | 
					
						
							|  |  |  | 		Target:         user.Account, | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return p.converter.UserToAPIUser(ctx, user), nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | // EmailGetUserForConfirmToken retrieves the user (with account) from | 
					
						
							|  |  |  | // the database for the given "confirm your email" token string. | 
					
						
							|  |  |  | func (p *Processor) EmailGetUserForConfirmToken(ctx context.Context, token string) (*gtsmodel.User, gtserror.WithCode) { | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	if token == "" { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		err := errors.New("no token provided") | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorNotFound(err) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	user, err := p.state.DB.GetUserByConfirmationToken(ctx, token) | 
					
						
							| 
									
										
										
										
											2022-10-03 10:46:11 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		if !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			// Real error. | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// No user found for this token. | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorNotFound(err) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if user.Account == nil { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		user.Account, err = p.state.DB.GetAccountByID(ctx, user.AccountID) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 			// We need the account for a local user. | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !user.Account.SuspendedAt.IsZero() { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		err := fmt.Errorf("account %s is suspended", user.AccountID) | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorForbidden(err, err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return user, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // EmailConfirm processes an email confirmation request, | 
					
						
							|  |  |  | // usually initiated as a result of clicking on a link | 
					
						
							|  |  |  | // in a 'confirm your email address' type email. | 
					
						
							|  |  |  | func (p *Processor) EmailConfirm(ctx context.Context, token string) (*gtsmodel.User, gtserror.WithCode) { | 
					
						
							|  |  |  | 	user, errWithCode := p.EmailGetUserForConfirmToken(ctx, token) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 	if user.UnconfirmedEmail == "" || | 
					
						
							|  |  |  | 		user.UnconfirmedEmail == user.Email { | 
					
						
							|  |  |  | 		// Confirmed already, just return. | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 		return user, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 	// Ensure token not expired. | 
					
						
							|  |  |  | 	const oneWeek = 168 * time.Hour | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	if user.ConfirmationSentAt.Before(time.Now().Add(-oneWeek)) { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		err := errors.New("confirmation token expired (older than one week)") | 
					
						
							|  |  |  | 		return nil, gtserror.NewErrorForbidden(err, err.Error()) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 	// Mark the user's email address as confirmed, | 
					
						
							|  |  |  | 	// and remove the unconfirmed address and the token. | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	user.Email = user.UnconfirmedEmail | 
					
						
							|  |  |  | 	user.UnconfirmedEmail = "" | 
					
						
							|  |  |  | 	user.ConfirmedAt = time.Now() | 
					
						
							|  |  |  | 	user.ConfirmationToken = "" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 	if err := p.state.DB.UpdateUser( | 
					
						
							|  |  |  | 		ctx, | 
					
						
							|  |  |  | 		user, | 
					
						
							|  |  |  | 		"email", | 
					
						
							|  |  |  | 		"unconfirmed_email", | 
					
						
							|  |  |  | 		"confirmed_at", | 
					
						
							|  |  |  | 		"confirmation_token", | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return user, nil | 
					
						
							|  |  |  | } |