mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 08:20:14 +01:00
* Refactor: Moved Redis cache infra logic into `packages/api` - Moved cacheFactory and redisClients from `api/cache` into `packages/api/src/cache` so that features in `packages/api` can use cache without importing backward from the backend. - Converted all moved files into TS with proper typing. - Created integration tests to run against actual Redis servers for redisClients and cacheFactory. - Added a GitHub workflow to run integration tests for the cache feature. - Bug fix: keyvRedisClient now implements the PING feature properly. * chore: consolidate imports in getLogStores.js * chore: reorder imports * chore: re-add fs-extra as dev dep. * chore: reorder imports in cacheConfig.ts, cacheFactory.ts, and keyvMongo.ts --------- Co-authored-by: Danny Avila <danny@librechat.ai>
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
const rateLimit = require('express-rate-limit');
|
|
const { limiterCache } = require('@librechat/api');
|
|
const { ViolationTypes } = require('librechat-data-provider');
|
|
const { removePorts } = require('~/server/utils');
|
|
const { logViolation } = require('~/cache');
|
|
|
|
const {
|
|
VERIFY_EMAIL_WINDOW = 2,
|
|
VERIFY_EMAIL_MAX = 2,
|
|
VERIFY_EMAIL_VIOLATION_SCORE: score,
|
|
} = process.env;
|
|
const windowMs = VERIFY_EMAIL_WINDOW * 60 * 1000;
|
|
const max = VERIFY_EMAIL_MAX;
|
|
const windowInMinutes = windowMs / 60000;
|
|
const message = `Too many attempts, please try again after ${windowInMinutes} minute(s)`;
|
|
|
|
const handler = async (req, res) => {
|
|
const type = ViolationTypes.VERIFY_EMAIL_LIMIT;
|
|
const errorMessage = {
|
|
type,
|
|
max,
|
|
windowInMinutes,
|
|
};
|
|
|
|
await logViolation(req, res, type, errorMessage, score);
|
|
return res.status(429).json({ message });
|
|
};
|
|
|
|
const limiterOptions = {
|
|
windowMs,
|
|
max,
|
|
handler,
|
|
keyGenerator: removePorts,
|
|
store: limiterCache('verify_email_limiter'),
|
|
};
|
|
|
|
const verifyEmailLimiter = rateLimit(limiterOptions);
|
|
|
|
module.exports = verifyEmailLimiter;
|