Files
fluxer/fluxer_api/src/rate_limit_configs/ChannelRateLimitConfig.ts
Hampus Kraft 2f557eda8c initial commit
2026-01-01 21:05:54 +00:00

143 lines
4.1 KiB
TypeScript

/*
* 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 <https://www.gnu.org/licenses/>.
*/
import type {RouteRateLimitConfig} from '~/middleware/RateLimitMiddleware';
export const ChannelRateLimitConfigs = {
CHANNEL_GET: {
bucket: 'channel:read::channel_id',
config: {limit: 100, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_UPDATE: {
bucket: 'channel:update::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_DELETE: {
bucket: 'channel:delete::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_READ_STATE_DELETE: {
bucket: 'channel:read_state:delete::channel_id',
config: {limit: 40, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGES_GET: {
bucket: 'channel:messages:read::channel_id',
config: {limit: 100, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGE_GET: {
bucket: 'channel:message:read::channel_id',
config: {limit: 100, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGE_CREATE: {
bucket: 'channel:message:create::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGE_UPDATE: {
bucket: 'channel:message:update::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGE_DELETE: {
bucket: 'channel:message:delete::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGE_BULK_DELETE: {
bucket: 'channel:message:bulk_delete::channel_id',
config: {limit: 10, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_MESSAGE_ACK: {
bucket: 'channel:message:ack::channel_id',
config: {limit: 100, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_SEARCH: {
bucket: 'channel:search::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_ATTACHMENT_UPLOAD: {
bucket: 'channel:attachment:upload::channel_id',
config: {limit: 10, windowMs: 10000},
} as RouteRateLimitConfig,
ATTACHMENT_DELETE: {
bucket: 'attachment:delete',
config: {limit: 40, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_TYPING: {
bucket: 'channel:typing::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_PINS: {
bucket: 'channel:pins::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_REACTIONS: {
bucket: 'channel:reactions::channel_id',
config: {limit: 30, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_CALL_GET: {
bucket: 'channel:call:get::channel_id',
config: {limit: 60, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_CALL_UPDATE: {
bucket: 'channel:call:update::channel_id',
config: {limit: 10, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_CALL_RING: {
bucket: 'channel:call:ring::channel_id',
config: {limit: 5, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_CALL_STOP_RINGING: {
bucket: 'channel:call:stop_ringing::channel_id',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_STREAM_UPDATE: {
bucket: 'channel:stream:update::stream_key',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_STREAM_PREVIEW_GET: {
bucket: 'channel:stream:preview:get::stream_key',
config: {limit: 60, windowMs: 10000},
} as RouteRateLimitConfig,
CHANNEL_STREAM_PREVIEW_POST: {
bucket: 'channel:stream:preview:post::stream_key',
config: {limit: 20, windowMs: 10000},
} as RouteRateLimitConfig,
} as const;