mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 23:42:26 -06:00 
			
		
		
		
	This finalizes the moving status filtering out of the type converter, and into its own `./internal/filter/` subpkg :) Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4306 Co-authored-by: kim <grufwub@gmail.com> Co-committed-by: kim <grufwub@gmail.com>
		
			
				
	
	
		
			220 lines
		
	
	
	
		
			7.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			220 lines
		
	
	
	
		
			7.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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 conversations
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"errors"
 | 
						|
 | 
						|
	apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/db"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/gtserror"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/id"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/log"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/util"
 | 
						|
)
 | 
						|
 | 
						|
// ConversationNotification carries the arguments
 | 
						|
// to processing/stream.Processor.Conversation.
 | 
						|
type ConversationNotification struct {
 | 
						|
 | 
						|
	// AccountID of a local account to
 | 
						|
	// deliver the notification to.
 | 
						|
	AccountID string
 | 
						|
 | 
						|
	// Conversation as the notification payload.
 | 
						|
	Conversation *apimodel.Conversation
 | 
						|
}
 | 
						|
 | 
						|
// UpdateConversationsForStatus updates all conversations related to a status,
 | 
						|
// and returns a map from local account IDs to conversation notifications that should be sent to them.
 | 
						|
func (p *Processor) UpdateConversationsForStatus(ctx context.Context, status *gtsmodel.Status) ([]ConversationNotification, error) {
 | 
						|
	if status.Visibility != gtsmodel.VisibilityDirect {
 | 
						|
		// Only DMs are considered part of conversations.
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
 | 
						|
	if status.BoostOfID != "" {
 | 
						|
		// Boosts can't be part of conversations.
 | 
						|
		// FUTURE: This may change if we ever implement quote posts.
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
 | 
						|
	if status.ThreadID == "" {
 | 
						|
		// If the status doesn't have a thread ID, it didn't mention a local account,
 | 
						|
		// and thus can't be part of a conversation.
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
 | 
						|
	// We need accounts to be populated for this.
 | 
						|
	if err := p.state.DB.PopulateStatus(ctx, status); err != nil {
 | 
						|
		return nil, gtserror.Newf("DB error populating status %s: %w", status.ID, err)
 | 
						|
	}
 | 
						|
 | 
						|
	// The account which authored the status plus all mentioned accounts.
 | 
						|
	allParticipantsSet := make(map[string]*gtsmodel.Account, 1+len(status.Mentions))
 | 
						|
	allParticipantsSet[status.AccountID] = status.Account
 | 
						|
	for _, mention := range status.Mentions {
 | 
						|
		allParticipantsSet[mention.TargetAccountID] = mention.TargetAccount
 | 
						|
	}
 | 
						|
 | 
						|
	// Create or update conversations for and send notifications to each local participant.
 | 
						|
	notifications := make([]ConversationNotification, 0, len(allParticipantsSet))
 | 
						|
	for _, participant := range allParticipantsSet {
 | 
						|
		if participant.IsRemote() {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		localAccount := participant
 | 
						|
 | 
						|
		// If status not visible to this account, skip further processing.
 | 
						|
		visible, err := p.visFilter.StatusVisible(ctx, localAccount, status)
 | 
						|
		if err != nil {
 | 
						|
			log.Errorf(ctx, "error checking status %s visibility for account %s: %v", status.URI, localAccount.URI, err)
 | 
						|
			continue
 | 
						|
		} else if !visible {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// Collect other accounts participating in the conversation.
 | 
						|
		otherAccounts := make([]*gtsmodel.Account, 0, len(allParticipantsSet)-1)
 | 
						|
		otherAccountIDs := make([]string, 0, len(allParticipantsSet)-1)
 | 
						|
		for accountID, account := range allParticipantsSet {
 | 
						|
			if accountID != localAccount.ID {
 | 
						|
				otherAccounts = append(otherAccounts, account)
 | 
						|
				otherAccountIDs = append(otherAccountIDs, accountID)
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		// Check for a previously existing conversation, if there is one.
 | 
						|
		conversation, err := p.state.DB.GetConversationByThreadAndAccountIDs(ctx,
 | 
						|
			status.ThreadID,
 | 
						|
			localAccount.ID,
 | 
						|
			otherAccountIDs,
 | 
						|
		)
 | 
						|
		if err != nil && !errors.Is(err, db.ErrNoEntries) {
 | 
						|
			log.Errorf(ctx, "error finding previous conversation for status %s and account %s: %v",
 | 
						|
				status.URI, localAccount.URI, err)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		if conversation == nil {
 | 
						|
			// Create a new conversation.
 | 
						|
			conversation = >smodel.Conversation{
 | 
						|
				ID:               id.NewULID(),
 | 
						|
				AccountID:        localAccount.ID,
 | 
						|
				OtherAccountIDs:  otherAccountIDs,
 | 
						|
				OtherAccounts:    otherAccounts,
 | 
						|
				OtherAccountsKey: gtsmodel.ConversationOtherAccountsKey(otherAccountIDs),
 | 
						|
				ThreadID:         status.ThreadID,
 | 
						|
				Read:             util.Ptr(true),
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		// Assume that if the conversation owner posted the status, they've already read it.
 | 
						|
		statusAuthoredByConversationOwner := status.AccountID == conversation.AccountID
 | 
						|
 | 
						|
		// Update the conversation.
 | 
						|
		// If there is no previous last status or this one is more recently created, set it as the last status.
 | 
						|
		if conversation.LastStatus == nil || conversation.LastStatus.CreatedAt.Before(status.CreatedAt) {
 | 
						|
			conversation.LastStatusID = status.ID
 | 
						|
			conversation.LastStatus = status
 | 
						|
		}
 | 
						|
 | 
						|
		// If the conversation is unread, leave it marked as unread.
 | 
						|
		// If the conversation is read but this status might not have been, mark the conversation as unread.
 | 
						|
		if !statusAuthoredByConversationOwner {
 | 
						|
			conversation.Read = util.Ptr(false)
 | 
						|
		}
 | 
						|
 | 
						|
		// Create or update the conversation.
 | 
						|
		err = p.state.DB.UpsertConversation(ctx, conversation)
 | 
						|
		if err != nil {
 | 
						|
			log.Errorf(ctx, "error creating or updating conversation %s for status %s and account %s: %v",
 | 
						|
				conversation.ID, status.URI, localAccount.URI, err)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// Link the conversation to the status.
 | 
						|
		if err := p.state.DB.LinkConversationToStatus(ctx, conversation.ID, status.ID); err != nil {
 | 
						|
			log.Errorf(ctx, "error linking conversation %s to status %s: %v",
 | 
						|
				conversation.ID, status.URI, err)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// If status was authored by this participant,
 | 
						|
		// don't bother notifying, they already know!
 | 
						|
		if status.AccountID == localAccount.ID {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// Check whether status is muted to local participant.
 | 
						|
		muted, err := p.muteFilter.StatusNotificationsMuted(ctx,
 | 
						|
			localAccount,
 | 
						|
			status,
 | 
						|
		)
 | 
						|
		if err != nil {
 | 
						|
			log.Errorf(ctx, "error checking status mute: %v", err)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		if muted {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// Check whether status if filtered by local participant in context.
 | 
						|
		filtered, hide, err := p.statusFilter.StatusFilterResultsInContext(ctx,
 | 
						|
			localAccount,
 | 
						|
			status,
 | 
						|
			gtsmodel.FilterContextNotifications,
 | 
						|
		)
 | 
						|
		if err != nil {
 | 
						|
			log.Errorf(ctx, "error filtering status: %v", err)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		if hide {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// Convert the conversation to API representation.
 | 
						|
		apiConversation, err := p.converter.ConversationToAPIConversation(ctx,
 | 
						|
			conversation,
 | 
						|
			localAccount,
 | 
						|
		)
 | 
						|
		if err != nil {
 | 
						|
			log.Errorf(ctx, "error converting conversation %s to API representation for account %s: %v",
 | 
						|
				status.ID,
 | 
						|
				localAccount.ID,
 | 
						|
				err,
 | 
						|
			)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		// Set filter results on attached status model.
 | 
						|
		apiConversation.LastStatus.Filtered = filtered
 | 
						|
 | 
						|
		// Generate a notification,
 | 
						|
		notifications = append(notifications, ConversationNotification{
 | 
						|
			AccountID:    localAccount.ID,
 | 
						|
			Conversation: apiConversation,
 | 
						|
		})
 | 
						|
	}
 | 
						|
 | 
						|
	return notifications, nil
 | 
						|
}
 |