| 
									
										
										
										
											2023-08-09 19:14:33 +02: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/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package workers | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2024-06-06 09:38:02 -07:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/filter/status" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/filter/usermute" | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtscontext" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtserror" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/id" | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/util" | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | // notifyPendingReply notifies the account replied-to | 
					
						
							|  |  |  | // by the given status that they have a new reply, | 
					
						
							|  |  |  | // and that approval is pending. | 
					
						
							|  |  |  | func (s *Surface) notifyPendingReply( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	status *gtsmodel.Status, | 
					
						
							|  |  |  | ) error { | 
					
						
							|  |  |  | 	// Beforehand, ensure the passed status is fully populated. | 
					
						
							|  |  |  | 	if err := s.State.DB.PopulateStatus(ctx, status); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error populating status %s: %w", status.ID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if status.InReplyToAccount.IsRemote() { | 
					
						
							|  |  |  | 		// Don't notify | 
					
						
							|  |  |  | 		// remote accounts. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if status.AccountID == status.InReplyToAccountID { | 
					
						
							|  |  |  | 		// Don't notify | 
					
						
							|  |  |  | 		// self-replies. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure thread not muted | 
					
						
							|  |  |  | 	// by replied-to account. | 
					
						
							|  |  |  | 	muted, err := s.State.DB.IsThreadMutedByAccount( | 
					
						
							|  |  |  | 		ctx, | 
					
						
							|  |  |  | 		status.ThreadID, | 
					
						
							|  |  |  | 		status.InReplyToAccountID, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error checking status thread mute %s: %w", status.ThreadID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if muted { | 
					
						
							|  |  |  | 		// The replied-to account | 
					
						
							|  |  |  | 		// has muted the thread. | 
					
						
							|  |  |  | 		// Don't pester them. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// notify mentioned | 
					
						
							|  |  |  | 	// by status author. | 
					
						
							|  |  |  | 	if err := s.Notify(ctx, | 
					
						
							|  |  |  | 		gtsmodel.NotificationPendingReply, | 
					
						
							|  |  |  | 		status.InReplyToAccount, | 
					
						
							|  |  |  | 		status.Account, | 
					
						
							|  |  |  | 		status.ID, | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error notifying replied-to account %s: %w", status.InReplyToAccountID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | // notifyMentions iterates through mentions on the | 
					
						
							|  |  |  | // given status, and notifies each mentioned account | 
					
						
							|  |  |  | // that they have a new mention. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) notifyMentions( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	status *gtsmodel.Status, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	var errs gtserror.MultiError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, mention := range status.Mentions { | 
					
						
							|  |  |  | 		// Set status on the mention (stops | 
					
						
							|  |  |  | 		// the below function populating it). | 
					
						
							|  |  |  | 		mention.Status = status | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Beforehand, ensure the passed mention is fully populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		if err := s.State.DB.PopulateMention(ctx, mention); err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 			errs.Appendf("error populating mention %s: %w", mention.ID, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if mention.TargetAccount.IsRemote() { | 
					
						
							|  |  |  | 			// no need to notify | 
					
						
							|  |  |  | 			// remote accounts. | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 		// Ensure thread not muted | 
					
						
							|  |  |  | 		// by mentioned account. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		muted, err := s.State.DB.IsThreadMutedByAccount( | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 			ctx, | 
					
						
							|  |  |  | 			status.ThreadID, | 
					
						
							|  |  |  | 			mention.TargetAccountID, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 			errs.Appendf("error checking status thread mute %s: %w", status.ThreadID, err) | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if muted { | 
					
						
							|  |  |  | 			// This mentioned account | 
					
						
							|  |  |  | 			// has muted the thread. | 
					
						
							|  |  |  | 			// Don't pester them. | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		// notify mentioned | 
					
						
							|  |  |  | 		// by status author. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 			gtsmodel.NotificationMention, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 			mention.TargetAccount, | 
					
						
							|  |  |  | 			mention.OriginAccount, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 			mention.StatusID, | 
					
						
							|  |  |  | 		); err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 			errs.Appendf("error notifying mention target %s: %w", mention.TargetAccountID, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return errs.Combine() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyFollowRequest notifies the target of the given | 
					
						
							|  |  |  | // follow request that they have a new follow request. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) notifyFollowRequest( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	followReq *gtsmodel.FollowRequest, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	// Beforehand, ensure the passed follow request is fully populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateFollowRequest(ctx, followReq); err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		return gtserror.Newf("error populating follow request %s: %w", followReq.ID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if followReq.TargetAccount.IsRemote() { | 
					
						
							|  |  |  | 		// no need to notify | 
					
						
							|  |  |  | 		// remote accounts. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Now notify the follow request itself. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		gtsmodel.NotificationFollowRequest, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		followReq.TargetAccount, | 
					
						
							|  |  |  | 		followReq.Account, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		"", | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error notifying follow target %s: %w", followReq.TargetAccountID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyFollow notifies the target of the given follow that | 
					
						
							|  |  |  | // they have a new follow. It will also remove any previous | 
					
						
							|  |  |  | // notification of a follow request, essentially replacing | 
					
						
							|  |  |  | // that notification. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) notifyFollow( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	follow *gtsmodel.Follow, | 
					
						
							|  |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	// Beforehand, ensure the passed follow is fully populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateFollow(ctx, follow); err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		return gtserror.Newf("error populating follow %s: %w", follow.ID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if follow.TargetAccount.IsRemote() { | 
					
						
							|  |  |  | 		// no need to notify | 
					
						
							|  |  |  | 		// remote accounts. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	// Check if previous follow req notif exists. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	prevNotif, err := s.State.DB.GetNotification( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		gtscontext.SetBarebones(ctx), | 
					
						
							|  |  |  | 		gtsmodel.NotificationFollowRequest, | 
					
						
							|  |  |  | 		follow.TargetAccountID, | 
					
						
							|  |  |  | 		follow.AccountID, | 
					
						
							|  |  |  | 		"", | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		return gtserror.Newf("error getting notification: %w", err) | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if prevNotif != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		// Previous follow request notif existed, delete it before creating new. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		if err := s.State.DB.DeleteNotificationByID(ctx, prevNotif.ID); // nocollapse | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			return gtserror.Newf("error deleting notification %s: %w", prevNotif.ID, err) | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Now notify the follow itself. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		gtsmodel.NotificationFollow, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		follow.TargetAccount, | 
					
						
							|  |  |  | 		follow.Account, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		"", | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error notifying follow target %s: %w", follow.TargetAccountID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyFave notifies the target of the given | 
					
						
							|  |  |  | // fave that their status has been liked/faved. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) notifyFave( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	fave *gtsmodel.StatusFave, | 
					
						
							|  |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 	notifyable, err := s.notifyableFave(ctx, fave) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !notifyable { | 
					
						
							|  |  |  | 		// Nothing to do. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// notify status author | 
					
						
							|  |  |  | 	// of fave by account. | 
					
						
							|  |  |  | 	if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2025-01-23 16:47:30 -08:00
										 |  |  | 		gtsmodel.NotificationFavourite, | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		fave.TargetAccount, | 
					
						
							|  |  |  | 		fave.Account, | 
					
						
							|  |  |  | 		fave.StatusID, | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error notifying status author %s: %w", fave.TargetAccountID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyPendingFave notifies the target of the | 
					
						
							|  |  |  | // given fave that their status has been faved | 
					
						
							|  |  |  | // and that approval is required. | 
					
						
							|  |  |  | func (s *Surface) notifyPendingFave( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	fave *gtsmodel.StatusFave, | 
					
						
							|  |  |  | ) error { | 
					
						
							|  |  |  | 	notifyable, err := s.notifyableFave(ctx, fave) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !notifyable { | 
					
						
							|  |  |  | 		// Nothing to do. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// notify status author | 
					
						
							|  |  |  | 	// of fave by account. | 
					
						
							|  |  |  | 	if err := s.Notify(ctx, | 
					
						
							|  |  |  | 		gtsmodel.NotificationPendingFave, | 
					
						
							|  |  |  | 		fave.TargetAccount, | 
					
						
							|  |  |  | 		fave.Account, | 
					
						
							|  |  |  | 		fave.StatusID, | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error notifying status author %s: %w", fave.TargetAccountID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyableFave checks that the given | 
					
						
							|  |  |  | // fave should be notified, taking account | 
					
						
							|  |  |  | // of localness of receiving account, and mutes. | 
					
						
							|  |  |  | func (s *Surface) notifyableFave( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	fave *gtsmodel.StatusFave, | 
					
						
							|  |  |  | ) (bool, error) { | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	if fave.TargetAccountID == fave.AccountID { | 
					
						
							|  |  |  | 		// Self-fave, nothing to do. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	// Beforehand, ensure the passed status fave is fully populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateStatusFave(ctx, fave); err != nil { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, gtserror.Newf("error populating fave %s: %w", fave.ID, err) | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if fave.TargetAccount.IsRemote() { | 
					
						
							|  |  |  | 		// no need to notify | 
					
						
							|  |  |  | 		// remote accounts. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	// Ensure favee hasn't | 
					
						
							|  |  |  | 	// muted the thread. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	muted, err := s.State.DB.IsThreadMutedByAccount( | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 		ctx, | 
					
						
							|  |  |  | 		fave.Status.ThreadID, | 
					
						
							|  |  |  | 		fave.TargetAccountID, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, gtserror.Newf("error checking status thread mute %s: %w", fave.StatusID, err) | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if muted { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		// Favee doesn't want | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 		// notifs for this thread. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyAnnounce notifies the status boost target | 
					
						
							|  |  |  | // account that their status has been boosted. | 
					
						
							|  |  |  | func (s *Surface) notifyAnnounce( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	boost *gtsmodel.Status, | 
					
						
							|  |  |  | ) error { | 
					
						
							|  |  |  | 	notifyable, err := s.notifyableAnnounce(ctx, boost) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !notifyable { | 
					
						
							|  |  |  | 		// Nothing to do. | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	// notify status author | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 	// of boost by account. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		gtsmodel.NotificationReblog, | 
					
						
							|  |  |  | 		boost.BoostOfAccount, | 
					
						
							|  |  |  | 		boost.Account, | 
					
						
							|  |  |  | 		boost.ID, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	); err != nil { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return gtserror.Newf("error notifying boost target %s: %w", boost.BoostOfAccountID, err) | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | // notifyPendingAnnounce notifies the status boost | 
					
						
							|  |  |  | // target account that their status has been boosted, | 
					
						
							|  |  |  | // and that the boost requires approval. | 
					
						
							|  |  |  | func (s *Surface) notifyPendingAnnounce( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 	boost *gtsmodel.Status, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 	notifyable, err := s.notifyableAnnounce(ctx, boost) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !notifyable { | 
					
						
							|  |  |  | 		// Nothing to do. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// notify status author | 
					
						
							|  |  |  | 	// of boost by account. | 
					
						
							|  |  |  | 	if err := s.Notify(ctx, | 
					
						
							|  |  |  | 		gtsmodel.NotificationPendingReblog, | 
					
						
							|  |  |  | 		boost.BoostOfAccount, | 
					
						
							|  |  |  | 		boost.Account, | 
					
						
							|  |  |  | 		boost.ID, | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error notifying boost target %s: %w", boost.BoostOfAccountID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // notifyableAnnounce checks that the given | 
					
						
							|  |  |  | // announce should be notified, taking account | 
					
						
							|  |  |  | // of localness of receiving account, and mutes. | 
					
						
							|  |  |  | func (s *Surface) notifyableAnnounce( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	status *gtsmodel.Status, | 
					
						
							|  |  |  | ) (bool, error) { | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	if status.BoostOfID == "" { | 
					
						
							|  |  |  | 		// Not a boost, nothing to do. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	if status.BoostOfAccountID == status.AccountID { | 
					
						
							|  |  |  | 		// Self-boost, nothing to do. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	// Beforehand, ensure the passed status is fully populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateStatus(ctx, status); err != nil { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, gtserror.Newf("error populating status %s: %w", status.ID, err) | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if status.BoostOfAccount.IsRemote() { | 
					
						
							|  |  |  | 		// no need to notify | 
					
						
							|  |  |  | 		// remote accounts. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	// Ensure boostee hasn't | 
					
						
							|  |  |  | 	// muted the thread. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	muted, err := s.State.DB.IsThreadMutedByAccount( | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 		ctx, | 
					
						
							|  |  |  | 		status.BoostOf.ThreadID, | 
					
						
							|  |  |  | 		status.BoostOfAccountID, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, gtserror.Newf("error checking status thread mute %s: %w", status.BoostOfID, err) | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if muted { | 
					
						
							|  |  |  | 		// Boostee doesn't want | 
					
						
							|  |  |  | 		// notifs for this thread. | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		return false, nil | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 	return true, nil | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) notifyPollClose(ctx context.Context, status *gtsmodel.Status) error { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	// Beforehand, ensure the passed status is fully populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateStatus(ctx, status); err != nil { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		return gtserror.Newf("error populating status %s: %w", status.ID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Fetch all votes in the attached status poll. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	votes, err := s.State.DB.GetPollVotes(ctx, status.PollID) | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error getting poll %s votes: %w", status.PollID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var errs gtserror.MultiError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if status.Account.IsLocal() { | 
					
						
							|  |  |  | 		// Send a notification to the status | 
					
						
							|  |  |  | 		// author that their poll has closed! | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 			gtsmodel.NotificationPoll, | 
					
						
							|  |  |  | 			status.Account, | 
					
						
							|  |  |  | 			status.Account, | 
					
						
							|  |  |  | 			status.ID, | 
					
						
							|  |  |  | 		); err != nil { | 
					
						
							|  |  |  | 			errs.Appendf("error notifying poll author: %w", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, vote := range votes { | 
					
						
							|  |  |  | 		if vote.Account.IsRemote() { | 
					
						
							|  |  |  | 			// no need to notify | 
					
						
							|  |  |  | 			// remote accounts. | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// notify voter that | 
					
						
							|  |  |  | 		// poll has been closed. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2023-12-08 23:33:42 +01:00
										 |  |  | 			gtsmodel.NotificationPoll, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 			vote.Account, | 
					
						
							|  |  |  | 			status.Account, | 
					
						
							|  |  |  | 			status.ID, | 
					
						
							|  |  |  | 		); err != nil { | 
					
						
							|  |  |  | 			errs.Appendf("error notifying poll voter %s: %w", vote.AccountID, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return errs.Combine() | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) notifySignup(ctx context.Context, newUser *gtsmodel.User) error { | 
					
						
							|  |  |  | 	modAccounts, err := s.State.DB.GetInstanceModerators(ctx) | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		if errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			// No registered | 
					
						
							|  |  |  | 			// mod accounts. | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Real error. | 
					
						
							|  |  |  | 		return gtserror.Newf("error getting instance moderator accounts: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure user + account populated. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateUser(ctx, newUser); err != nil { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		return gtserror.Newf("db error populating new user: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PopulateAccount(ctx, newUser.Account); err != nil { | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 		return gtserror.Newf("db error populating new user's account: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Notify each moderator. | 
					
						
							|  |  |  | 	var errs gtserror.MultiError | 
					
						
							|  |  |  | 	for _, mod := range modAccounts { | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 		if err := s.Notify(ctx, | 
					
						
							| 
									
										
										
										
											2025-01-23 16:47:30 -08:00
										 |  |  | 			gtsmodel.NotificationAdminSignup, | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | 			mod, | 
					
						
							|  |  |  | 			newUser.Account, | 
					
						
							|  |  |  | 			"", | 
					
						
							|  |  |  | 		); err != nil { | 
					
						
							|  |  |  | 			errs.Appendf("error notifying moderator %s: %w", mod.ID, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return errs.Combine() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func getNotifyLockURI( | 
					
						
							|  |  |  | 	notificationType gtsmodel.NotificationType, | 
					
						
							|  |  |  | 	targetAccount *gtsmodel.Account, | 
					
						
							|  |  |  | 	originAccount *gtsmodel.Account, | 
					
						
							|  |  |  | 	statusID string, | 
					
						
							|  |  |  | ) string { | 
					
						
							|  |  |  | 	builder := strings.Builder{} | 
					
						
							|  |  |  | 	builder.WriteString("notification:?") | 
					
						
							| 
									
										
										
										
											2024-11-25 13:48:59 +00:00
										 |  |  | 	builder.WriteString("type=" + notificationType.String()) | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	builder.WriteString("&target=" + targetAccount.URI) | 
					
						
							|  |  |  | 	builder.WriteString("&origin=" + originAccount.URI) | 
					
						
							|  |  |  | 	if statusID != "" { | 
					
						
							|  |  |  | 		builder.WriteString("&statusID=" + statusID) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return builder.String() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Notify creates, inserts, and streams a new | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | // notification to the target account if it | 
					
						
							|  |  |  | // doesn't yet exist with the given parameters. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // It filters out non-local target accounts, so | 
					
						
							|  |  |  | // it is safe to pass all sorts of notification | 
					
						
							|  |  |  | // targets into this function without filtering | 
					
						
							|  |  |  | // for non-local first. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2024-04-11 11:45:53 +02:00
										 |  |  | // targetAccount and originAccount must be | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | // set, but statusID can be an empty string. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | func (s *Surface) Notify( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	notificationType gtsmodel.NotificationType, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	targetAccount *gtsmodel.Account, | 
					
						
							|  |  |  | 	originAccount *gtsmodel.Account, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	statusID string, | 
					
						
							|  |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	if targetAccount.IsRemote() { | 
					
						
							|  |  |  | 		// nothing to do. | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	// We're doing state-y stuff so get a | 
					
						
							|  |  |  | 	// lock on this combo of notif params. | 
					
						
							|  |  |  | 	lockURI := getNotifyLockURI( | 
					
						
							|  |  |  | 		notificationType, | 
					
						
							|  |  |  | 		targetAccount, | 
					
						
							|  |  |  | 		originAccount, | 
					
						
							|  |  |  | 		statusID, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	unlock := s.State.ProcessingLocks.Lock(lockURI) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Wrap the unlock so we | 
					
						
							|  |  |  | 	// can do granular unlocking. | 
					
						
							|  |  |  | 	unlock = util.DoOnce(unlock) | 
					
						
							|  |  |  | 	defer unlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	// Make sure a notification doesn't | 
					
						
							|  |  |  | 	// already exist with these params. | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if _, err := s.State.DB.GetNotification( | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		gtscontext.SetBarebones(ctx), | 
					
						
							|  |  |  | 		notificationType, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		targetAccount.ID, | 
					
						
							|  |  |  | 		originAccount.ID, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		statusID, | 
					
						
							|  |  |  | 	); err == nil { | 
					
						
							|  |  |  | 		// Notification exists; | 
					
						
							|  |  |  | 		// nothing to do. | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} else if !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 		// Real error. | 
					
						
							|  |  |  | 		return gtserror.Newf("error checking existence of notification: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Notification doesn't yet exist, so | 
					
						
							|  |  |  | 	// we need to create + store one. | 
					
						
							|  |  |  | 	notif := >smodel.Notification{ | 
					
						
							|  |  |  | 		ID:               id.NewULID(), | 
					
						
							|  |  |  | 		NotificationType: notificationType, | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 		TargetAccountID:  targetAccount.ID, | 
					
						
							|  |  |  | 		TargetAccount:    targetAccount, | 
					
						
							|  |  |  | 		OriginAccountID:  originAccount.ID, | 
					
						
							|  |  |  | 		OriginAccount:    originAccount, | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		StatusID:         statusID, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	if err := s.State.DB.PutNotification(ctx, notif); err != nil { | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		return gtserror.Newf("error putting notification in database: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	// Unlock already, we're done | 
					
						
							|  |  |  | 	// with the state-y stuff. | 
					
						
							|  |  |  | 	unlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	// Stream notification to the user. | 
					
						
							| 
									
										
										
										
											2024-05-06 04:49:08 -07:00
										 |  |  | 	filters, err := s.State.DB.GetFiltersForAccountID(ctx, targetAccount.ID) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("couldn't retrieve filters for account %s: %w", targetAccount.ID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-06 09:38:02 -07:00
										 |  |  | 	mutes, err := s.State.DB.GetAccountMutes(gtscontext.SetBarebones(ctx), targetAccount.ID, nil) | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2024-06-06 09:38:02 -07:00
										 |  |  | 		return gtserror.Newf("couldn't retrieve mutes for account %s: %w", targetAccount.ID, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	compiledMutes := usermute.NewCompiledUserMuteList(mutes) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	apiNotif, err := s.Converter.NotificationToAPINotification(ctx, notif, filters, compiledMutes) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		if errors.Is(err, status.ErrHideStatus) { | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 		return gtserror.Newf("error converting notification to api representation: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-05-02 14:43:00 +02:00
										 |  |  | 	s.Stream.Notify(ctx, targetAccount, apiNotif) | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-23 16:47:30 -08:00
										 |  |  | 	// Send Web Push notification to the user. | 
					
						
							|  |  |  | 	if err = s.WebPushSender.Send(ctx, notif, filters, compiledMutes); err != nil { | 
					
						
							|  |  |  | 		return gtserror.Newf("error sending Web Push notifications: %w", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-09 19:14:33 +02:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } |