mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 10:10:08 +02:00
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import SessionManager from '../Authentication/SessionManager.js'
|
|
import TutorialHandler from './TutorialHandler.js'
|
|
import { expressify } from '@overleaf/promise-utils'
|
|
|
|
const VALID_KEYS = [
|
|
'react-history-buttons-tutorial',
|
|
'writefull-integration',
|
|
'writefull-oauth-promotion',
|
|
'bib-file-tpr-prompt',
|
|
'ai-error-assistant-consent',
|
|
'history-restore-promo',
|
|
'us-gov-banner',
|
|
'us-gov-banner-fedramp',
|
|
'editor-popup-ux-survey',
|
|
]
|
|
|
|
async function completeTutorial(req, res, next) {
|
|
const userId = SessionManager.getLoggedInUserId(req.session)
|
|
const tutorialKey = req.params.tutorialKey
|
|
|
|
if (!VALID_KEYS.includes(tutorialKey)) {
|
|
return res.sendStatus(404)
|
|
}
|
|
|
|
await TutorialHandler.setTutorialState(userId, tutorialKey, 'completed')
|
|
res.sendStatus(204)
|
|
}
|
|
|
|
async function postponeTutorial(req, res, next) {
|
|
const userId = SessionManager.getLoggedInUserId(req.session)
|
|
const tutorialKey = req.params.tutorialKey
|
|
let postponedUntil
|
|
if (req.body.postponedUntil) {
|
|
postponedUntil = new Date(req.body.postponedUntil)
|
|
}
|
|
|
|
if (!VALID_KEYS.includes(tutorialKey)) {
|
|
return res.sendStatus(404)
|
|
}
|
|
|
|
await TutorialHandler.setTutorialState(
|
|
userId,
|
|
tutorialKey,
|
|
'postponed',
|
|
postponedUntil
|
|
)
|
|
res.sendStatus(204)
|
|
}
|
|
|
|
export default {
|
|
completeTutorial: expressify(completeTutorial),
|
|
postponeTutorial: expressify(postponeTutorial),
|
|
}
|