/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer 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. * * Fluxer 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 Fluxer. If not, see . */ import type {AttachmentID, ChannelID, MessageID, UserID} from '~/BrandedTypes'; import type {AttachmentLookupRow, MessageRow} from '~/database/CassandraTypes'; import type {Message} from '~/Models'; export interface ListMessagesOptions { restrictToBeforeBucket?: boolean; immediateAfter?: boolean; } export abstract class IMessageRepository { abstract listMessages( channelId: ChannelID, beforeMessageId?: MessageID, limit?: number, afterMessageId?: MessageID, options?: ListMessagesOptions, ): Promise>; abstract getMessage(channelId: ChannelID, messageId: MessageID): Promise; abstract upsertMessage(data: MessageRow, oldData?: MessageRow | null): Promise; abstract deleteMessage( channelId: ChannelID, messageId: MessageID, authorId: UserID, pinnedTimestamp?: Date, ): Promise; abstract bulkDeleteMessages(channelId: ChannelID, messageIds: Array): Promise; abstract deleteAllChannelMessages(channelId: ChannelID): Promise; abstract listMessagesByAuthor( authorId: UserID, limit?: number, lastChannelId?: ChannelID, lastMessageId?: MessageID, ): Promise>; abstract deleteMessagesByAuthor( authorId: UserID, channelIds?: Array, messageIds?: Array, ): Promise; abstract anonymizeMessage(channelId: ChannelID, messageId: MessageID, newAuthorId: UserID): Promise; abstract authorHasMessage(authorId: UserID, channelId: ChannelID, messageId: MessageID): Promise; abstract lookupAttachmentByChannelAndFilename( channelId: ChannelID, attachmentId: AttachmentID, filename: string, ): Promise; abstract listChannelAttachments(channelId: ChannelID): Promise>; }