2024-01-19 12:57:29 +00: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 cache
|
|
|
|
|
|
|
|
|
|
import (
|
2025-04-26 15:34:10 +02:00
|
|
|
"code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
|
|
|
|
|
"code.superseriousbusiness.org/gotosocial/internal/util"
|
2024-01-19 12:57:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Below are cache invalidation hooks between other caches,
|
|
|
|
|
// as an invalidation indicates a database INSERT / UPDATE / DELETE.
|
|
|
|
|
// NOTE THEY ARE ONLY CALLED WHEN THE ITEM IS IN THE CACHE, SO FOR
|
|
|
|
|
// HOOKS TO BE CALLED ON DELETE YOU MUST FIRST POPULATE IT IN THE CACHE.
|
2025-07-01 16:00:04 +02:00
|
|
|
//
|
|
|
|
|
// Also note that while Timelines are a part of the Caches{} object,
|
|
|
|
|
// they are generally not modified as part of side-effects here, as
|
|
|
|
|
// they often need specific IDs or more information that can only be
|
|
|
|
|
// fetched from the database. As such, they are generally handled as
|
|
|
|
|
// side-effects in the ./internal/processor/workers/ package.
|
2024-01-19 12:57:29 +00:00
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateAccount(account *gtsmodel.Account) {
|
2025-05-31 17:30:57 +02:00
|
|
|
// Invalidate as possible visibility target result.
|
2024-01-19 12:57:29 +00:00
|
|
|
c.Visibility.Invalidate("ItemID", account.ID)
|
2025-05-31 17:30:57 +02:00
|
|
|
|
|
|
|
|
// If account is local, invalidate as
|
2025-07-01 16:00:04 +02:00
|
|
|
// possible visibility result requester,
|
|
|
|
|
// also, invalidate any cached stats.
|
2025-05-31 17:30:57 +02:00
|
|
|
if account.IsLocal() {
|
2025-07-01 16:00:04 +02:00
|
|
|
c.DB.AccountStats.Invalidate("AccountID", account.ID)
|
2025-05-31 17:30:57 +02:00
|
|
|
c.Visibility.Invalidate("RequesterID", account.ID)
|
|
|
|
|
}
|
2024-01-19 12:57:29 +00:00
|
|
|
|
|
|
|
|
// Invalidate this account's
|
|
|
|
|
// following / follower lists.
|
|
|
|
|
// (see FollowIDs() comment for details).
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.FollowIDs.Invalidate(
|
2024-01-19 12:57:29 +00:00
|
|
|
">"+account.ID,
|
|
|
|
|
"l>"+account.ID,
|
|
|
|
|
"<"+account.ID,
|
|
|
|
|
"l<"+account.ID,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Invalidate this account's
|
|
|
|
|
// follow requesting / request lists.
|
|
|
|
|
// (see FollowRequestIDs() comment for details).
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.FollowRequestIDs.Invalidate(
|
2024-01-19 12:57:29 +00:00
|
|
|
">"+account.ID,
|
|
|
|
|
"<"+account.ID,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Invalidate this account's block lists.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.BlockIDs.Invalidate(account.ID)
|
2024-03-06 11:18:57 +01:00
|
|
|
|
|
|
|
|
// Invalidate this account's Move(s).
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Move.Invalidate("OriginURI", account.URI)
|
|
|
|
|
c.DB.Move.Invalidate("TargetURI", account.URI)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
2024-04-15 14:22:21 +01:00
|
|
|
func (c *Caches) OnInvalidateApplication(app *gtsmodel.Application) {
|
2025-03-03 16:03:36 +01:00
|
|
|
// TODO: invalidate tokens?
|
2024-04-15 14:22:21 +01:00
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateBlock(block *gtsmodel.Block) {
|
2025-05-31 17:30:57 +02:00
|
|
|
// Invalidate both block origin and target as
|
|
|
|
|
// possible lookup targets for visibility results.
|
|
|
|
|
c.Visibility.InvalidateIDs("ItemID", []string{
|
|
|
|
|
block.TargetAccountID,
|
|
|
|
|
block.AccountID,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Track which of block / target are local.
|
|
|
|
|
localAccountIDs := make([]string, 0, 2)
|
|
|
|
|
|
|
|
|
|
// If origin is local (or uncertain), also invalidate
|
|
|
|
|
// results for them as mute / visibility result requester.
|
|
|
|
|
if block.Account == nil || block.Account.IsLocal() {
|
|
|
|
|
localAccountIDs = append(localAccountIDs, block.AccountID)
|
|
|
|
|
}
|
2024-01-19 12:57:29 +00:00
|
|
|
|
2025-05-31 17:30:57 +02:00
|
|
|
// If target is local (or uncertain), also invalidate
|
|
|
|
|
// results for them as mute / visibility result requester.
|
|
|
|
|
if block.TargetAccount == nil || block.TargetAccount.IsLocal() {
|
|
|
|
|
localAccountIDs = append(localAccountIDs, block.TargetAccountID)
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-01 16:00:04 +02:00
|
|
|
// Now perform local visibility result invalidations.
|
2025-05-31 17:30:57 +02:00
|
|
|
c.Visibility.InvalidateIDs("RequesterID", localAccountIDs)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
|
|
|
|
// Invalidate source account's block lists.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.BlockIDs.Invalidate(block.AccountID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
2024-07-23 12:44:31 -07:00
|
|
|
func (c *Caches) OnInvalidateConversation(conversation *gtsmodel.Conversation) {
|
|
|
|
|
// Invalidate owning account's conversation list.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.ConversationLastStatusIDs.Invalidate(conversation.AccountID)
|
2024-07-23 12:44:31 -07:00
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateEmojiCategory(category *gtsmodel.EmojiCategory) {
|
|
|
|
|
// Invalidate any emoji in this category.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Emoji.Invalidate("CategoryID", category.ID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
2025-06-24 17:24:34 +02:00
|
|
|
func (c *Caches) OnInvalidateFilter(filter *gtsmodel.Filter) {
|
|
|
|
|
// Invalidate list of filters for account.
|
|
|
|
|
c.DB.FilterIDs.Invalidate(filter.AccountID)
|
|
|
|
|
|
|
|
|
|
// Invalidate all associated keywords and statuses.
|
|
|
|
|
c.DB.FilterKeyword.InvalidateIDs("ID", filter.KeywordIDs)
|
|
|
|
|
c.DB.FilterStatus.InvalidateIDs("ID", filter.StatusIDs)
|
|
|
|
|
|
2025-07-01 16:00:04 +02:00
|
|
|
// Invalidate account's status filter cache.
|
|
|
|
|
c.StatusFilter.Invalidate("RequesterID", filter.AccountID)
|
2025-06-24 17:24:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateFilterKeyword(filterKeyword *gtsmodel.FilterKeyword) {
|
|
|
|
|
// Invalidate filter that keyword associated with.
|
|
|
|
|
c.DB.Filter.Invalidate("ID", filterKeyword.FilterID)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateFilterStatus(filterStatus *gtsmodel.FilterStatus) {
|
|
|
|
|
// Invalidate filter that status associated with.
|
|
|
|
|
c.DB.Filter.Invalidate("ID", filterStatus.FilterID)
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateFollow(follow *gtsmodel.Follow) {
|
|
|
|
|
// Invalidate follow request with this same ID.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.FollowRequest.Invalidate("ID", follow.ID)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
2025-05-31 17:30:57 +02:00
|
|
|
// Invalidate both follow origin and target as
|
|
|
|
|
// possible lookup targets for visibility results.
|
|
|
|
|
c.Visibility.InvalidateIDs("ItemID", []string{
|
|
|
|
|
follow.TargetAccountID,
|
|
|
|
|
follow.AccountID,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Track which of follow / target are local.
|
|
|
|
|
localAccountIDs := make([]string, 0, 2)
|
|
|
|
|
|
|
|
|
|
// If origin is local (or uncertain), also invalidate
|
|
|
|
|
// results for them as mute / visibility result requester.
|
|
|
|
|
if follow.Account == nil || follow.Account.IsLocal() {
|
|
|
|
|
localAccountIDs = append(localAccountIDs, follow.AccountID)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If target is local (or uncertain), also invalidate
|
|
|
|
|
// results for them as mute / visibility result requester.
|
|
|
|
|
if follow.TargetAccount == nil || follow.TargetAccount.IsLocal() {
|
|
|
|
|
localAccountIDs = append(localAccountIDs, follow.TargetAccountID)
|
|
|
|
|
}
|
2024-01-19 12:57:29 +00:00
|
|
|
|
2025-07-01 16:00:04 +02:00
|
|
|
// Now perform local visibility result invalidations.
|
2025-05-31 17:30:57 +02:00
|
|
|
c.Visibility.InvalidateIDs("RequesterID", localAccountIDs)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
2024-09-16 16:46:09 +00:00
|
|
|
// Invalidate ID slice cache.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.FollowIDs.Invalidate(
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow ID lists
|
|
|
|
|
// TARGETTING origin account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
">"+follow.AccountID,
|
|
|
|
|
"l>"+follow.AccountID,
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow ID lists
|
|
|
|
|
// FROM the origin account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
"<"+follow.AccountID,
|
|
|
|
|
"l<"+follow.AccountID,
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow ID lists
|
|
|
|
|
// TARGETTING the target account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
">"+follow.TargetAccountID,
|
|
|
|
|
"l>"+follow.TargetAccountID,
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow ID lists
|
|
|
|
|
// FROM the target account
|
|
|
|
|
// (including local-only follows).
|
|
|
|
|
"<"+follow.TargetAccountID,
|
|
|
|
|
"l<"+follow.TargetAccountID,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Invalidate ID slice cache.
|
|
|
|
|
c.DB.ListIDs.Invalidate(
|
|
|
|
|
|
|
|
|
|
// Invalidate source
|
|
|
|
|
// account's owned lists.
|
|
|
|
|
"a"+follow.AccountID,
|
|
|
|
|
|
|
|
|
|
// Invalidate target account's.
|
|
|
|
|
"a"+follow.TargetAccountID,
|
|
|
|
|
|
|
|
|
|
// Invalidate lists containing
|
|
|
|
|
// list entries for follow.
|
|
|
|
|
"f"+follow.ID,
|
2024-01-19 12:57:29 +00:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateFollowRequest(followReq *gtsmodel.FollowRequest) {
|
|
|
|
|
// Invalidate follow with this same ID.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Follow.Invalidate("ID", followReq.ID)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
2024-09-16 16:46:09 +00:00
|
|
|
// Invalidate ID slice cache.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.FollowRequestIDs.Invalidate(
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow request ID
|
|
|
|
|
// lists TARGETTING origin account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
">"+followReq.AccountID,
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow request ID
|
|
|
|
|
// lists FROM the origin account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
"<"+followReq.AccountID,
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow request ID
|
|
|
|
|
// lists TARGETTING target account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
">"+followReq.TargetAccountID,
|
2024-09-16 16:46:09 +00:00
|
|
|
|
|
|
|
|
// Invalidate follow request ID
|
|
|
|
|
// lists FROM the target account
|
|
|
|
|
// (including local-only follows).
|
2024-01-19 12:57:29 +00:00
|
|
|
"<"+followReq.TargetAccountID,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-23 11:53:42 +00:00
|
|
|
func (c *Caches) OnInvalidateInstance(instance *gtsmodel.Instance) {
|
|
|
|
|
// Invalidate the local domains count.
|
|
|
|
|
c.DB.LocalInstance.Domains.Store(nil)
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateList(list *gtsmodel.List) {
|
2024-09-16 16:46:09 +00:00
|
|
|
// Invalidate list IDs cache.
|
|
|
|
|
c.DB.ListIDs.Invalidate(
|
|
|
|
|
"a" + list.AccountID,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Invalidate ID slice cache.
|
|
|
|
|
c.DB.ListedIDs.Invalidate(
|
|
|
|
|
|
|
|
|
|
// Invalidate list of
|
|
|
|
|
// account IDs in list.
|
|
|
|
|
"a"+list.ID,
|
|
|
|
|
|
|
|
|
|
// Invalidate list of
|
|
|
|
|
// follow IDs in list.
|
|
|
|
|
"f"+list.ID,
|
|
|
|
|
)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateMedia(media *gtsmodel.MediaAttachment) {
|
|
|
|
|
if (media.Avatar != nil && *media.Avatar) ||
|
|
|
|
|
(media.Header != nil && *media.Header) {
|
|
|
|
|
// Invalidate cache of attaching account.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Account.Invalidate("ID", media.AccountID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if media.StatusID != "" {
|
|
|
|
|
// Invalidate cache of attaching status.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Status.Invalidate("ID", media.StatusID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidatePoll(poll *gtsmodel.Poll) {
|
|
|
|
|
// Invalidate all cached votes of this poll.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.PollVote.Invalidate("PollID", poll.ID)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
|
|
|
|
// Invalidate cache of poll vote IDs.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.PollVoteIDs.Invalidate(poll.ID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidatePollVote(vote *gtsmodel.PollVote) {
|
|
|
|
|
// Invalidate cached poll (contains no. votes).
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Poll.Invalidate("ID", vote.PollID)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
|
|
|
|
// Invalidate cache of poll vote IDs.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.PollVoteIDs.Invalidate(vote.PollID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 14:05:15 +02:00
|
|
|
func (c *Caches) OnInvalidateScheduledStatus(status *gtsmodel.ScheduledStatus) {
|
|
|
|
|
// Invalidate cache of related media attachments.
|
|
|
|
|
c.DB.Media.InvalidateIDs("ID", status.MediaIDs)
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateStatus(status *gtsmodel.Status) {
|
2025-05-31 17:30:57 +02:00
|
|
|
// Invalidate cached stats objects for this account.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.AccountStats.Invalidate("AccountID", status.AccountID)
|
2024-02-12 11:52:12 +00:00
|
|
|
|
2025-07-01 16:00:04 +02:00
|
|
|
// Invalidate filter results targeting status.
|
|
|
|
|
c.StatusFilter.Invalidate("StatusID", status.ID)
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
// Invalidate status ID cached visibility.
|
|
|
|
|
c.Visibility.Invalidate("ItemID", status.ID)
|
|
|
|
|
|
2025-05-31 17:30:57 +02:00
|
|
|
// Invalidate mute results involving status.
|
|
|
|
|
c.Mutes.Invalidate("StatusID", status.ID)
|
|
|
|
|
c.Mutes.Invalidate("ThreadID", status.ThreadID)
|
|
|
|
|
|
2024-04-02 11:03:40 +01:00
|
|
|
// Invalidate each media by the IDs we're aware of.
|
|
|
|
|
// This must be done as the status table is aware of
|
|
|
|
|
// the media IDs in use before the media table is
|
|
|
|
|
// aware of the status ID they are linked to.
|
|
|
|
|
//
|
2024-09-16 16:46:09 +00:00
|
|
|
// c.DB.Media.Invalidate("StatusID") will not work.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Media.InvalidateIDs("ID", status.AttachmentIDs)
|
2024-01-19 12:57:29 +00:00
|
|
|
|
|
|
|
|
if status.BoostOfID != "" {
|
|
|
|
|
// Invalidate boost ID list of the original status.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.BoostOfIDs.Invalidate(status.BoostOfID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if status.InReplyToID != "" {
|
|
|
|
|
// Invalidate in reply to ID list of original status.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.InReplyToIDs.Invalidate(status.InReplyToID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if status.PollID != "" {
|
|
|
|
|
// Invalidate cache of attached poll ID.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.Poll.Invalidate("ID", status.PollID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
2024-09-23 11:53:42 +00:00
|
|
|
|
|
|
|
|
if util.PtrOrZero(status.Local) {
|
|
|
|
|
// Invalidate the local statuses count.
|
|
|
|
|
c.DB.LocalInstance.Statuses.Store(nil)
|
|
|
|
|
}
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
2024-06-06 10:44:43 +00:00
|
|
|
func (c *Caches) OnInvalidateStatusBookmark(bookmark *gtsmodel.StatusBookmark) {
|
|
|
|
|
// Invalidate status bookmark ID list for this status.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.StatusBookmarkIDs.Invalidate(bookmark.StatusID)
|
2024-06-06 10:44:43 +00:00
|
|
|
}
|
|
|
|
|
|
2024-12-05 13:35:07 +00:00
|
|
|
func (c *Caches) OnInvalidateStatusEdit(edit *gtsmodel.StatusEdit) {
|
|
|
|
|
// Invalidate cache of related status model.
|
|
|
|
|
c.DB.Status.Invalidate("ID", edit.StatusID)
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateStatusFave(fave *gtsmodel.StatusFave) {
|
|
|
|
|
// Invalidate status fave ID list for this status.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.StatusFaveIDs.Invalidate(fave.StatusID)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
2025-05-31 17:30:57 +02:00
|
|
|
func (c *Caches) OnInvalidateThreadMute(mute *gtsmodel.ThreadMute) {
|
|
|
|
|
// Invalidate cached mute ressults encapsulating this thread and account.
|
|
|
|
|
c.Mutes.Invalidate("RequesterID,ThreadID", mute.AccountID, mute.ThreadID)
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-23 16:47:30 -08:00
|
|
|
func (c *Caches) OnInvalidateToken(token *gtsmodel.Token) {
|
|
|
|
|
// Invalidate token's push subscription.
|
|
|
|
|
c.DB.WebPushSubscription.Invalidate("ID", token.ID)
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 12:57:29 +00:00
|
|
|
func (c *Caches) OnInvalidateUser(user *gtsmodel.User) {
|
|
|
|
|
// Invalidate local account ID cached visibility.
|
|
|
|
|
c.Visibility.Invalidate("ItemID", user.AccountID)
|
|
|
|
|
c.Visibility.Invalidate("RequesterID", user.AccountID)
|
2024-09-23 11:53:42 +00:00
|
|
|
|
2025-07-30 17:54:07 +02:00
|
|
|
// Invalidate the local user IDs / count.
|
|
|
|
|
c.DB.LocalInstance.UserIDs.Store(nil)
|
2024-09-23 11:53:42 +00:00
|
|
|
c.DB.LocalInstance.Users.Store(nil)
|
2024-01-19 12:57:29 +00:00
|
|
|
}
|
2024-06-06 09:38:02 -07:00
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateUserMute(mute *gtsmodel.UserMute) {
|
|
|
|
|
// Invalidate source account's user mute lists.
|
2024-07-24 09:41:43 +01:00
|
|
|
c.DB.UserMuteIDs.Invalidate(mute.AccountID)
|
2025-05-31 17:30:57 +02:00
|
|
|
|
|
|
|
|
// Invalidate source account's cached mute results.
|
|
|
|
|
c.Mutes.Invalidate("RequesterID", mute.AccountID)
|
2024-06-06 09:38:02 -07:00
|
|
|
}
|
2025-01-23 16:47:30 -08:00
|
|
|
|
|
|
|
|
func (c *Caches) OnInvalidateWebPushSubscription(subscription *gtsmodel.WebPushSubscription) {
|
|
|
|
|
// Invalidate source account's Web Push subscription list.
|
|
|
|
|
c.DB.WebPushSubscriptionIDs.Invalidate(subscription.AccountID)
|
|
|
|
|
}
|