1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-22 10:56:59 +00:00

Merge pull request from overleaf/em-oauth-tokens-ttl

Delete expired OAuth tokens and authorization codes

GitOrigin-RevId: 2743ed12a11101a383c46de93deabc5cdeeddc5b
This commit is contained in:
Eric Mc Sween 2023-04-10 09:56:37 -04:00 committed by Copybot
parent 1f9cfd877a
commit fb1f61434a
2 changed files with 36 additions and 0 deletions
services/web

View file

@ -12,6 +12,7 @@ const OauthAccessTokenSchema = new Schema(
refreshTokenExpiresAt: Date,
scope: String,
user_id: { type: ObjectId, ref: 'User' },
expiresAt: Date,
},
{
collection: 'oauthAccessTokens',

View file

@ -0,0 +1,35 @@
const Helpers = require('./lib/helpers')
exports.tags = ['server-ce', 'server-pro', 'saas']
const ACCESS_TOKENS_INDEX = {
name: 'expiresAt_1',
key: { expiresAt: 1 },
partialFilterExpression: { expiresAt: { $exists: true } },
expireAfterSeconds: 0,
}
const AUTHORIZATION_CODES_INDEX = {
name: 'expiresAt_1',
key: { expiresAt: 1 },
partialFilterExpression: { expiresAt: { $exists: true } },
expireAfterSeconds: 0,
}
exports.migrate = async ({ db }) => {
await Helpers.addIndexesToCollection(db.oauthAccessTokens, [
ACCESS_TOKENS_INDEX,
])
await Helpers.addIndexesToCollection(db.oauthAuthorizationCodes, [
AUTHORIZATION_CODES_INDEX,
])
}
exports.rollback = async ({ db }) => {
await Helpers.dropIndexesFromCollection(db.oauthAccessTokens, [
ACCESS_TOKENS_INDEX,
])
await Helpers.dropIndexesFromCollection(db.oauthAuthorizationCodes, [
AUTHORIZATION_CODES_INDEX,
])
}