PeerTube/server/controllers/api/videos/watching.ts

46 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2018-10-05 11:15:06 +02:00
import { UserWatchingVideo } from '../../../../shared'
2021-07-16 14:27:30 +02:00
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
import {
asyncMiddleware,
asyncRetryTransactionMiddleware,
authenticate,
openapiOperationDoc,
videoWatchingValidator
} from '../../../middlewares'
2021-05-11 11:15:29 +02:00
import { UserVideoHistoryModel } from '../../../models/user/user-video-history'
2018-10-05 11:15:06 +02:00
const watchingRouter = express.Router()
watchingRouter.put('/:videoId/watching',
openapiOperationDoc({ operationId: 'setProgress' }),
2018-10-05 11:15:06 +02:00
authenticate,
asyncMiddleware(videoWatchingValidator),
asyncRetryTransactionMiddleware(userWatchVideo)
)
// ---------------------------------------------------------------------------
export {
watchingRouter
}
// ---------------------------------------------------------------------------
async function userWatchVideo (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const user = res.locals.oauth.token.User
2018-10-05 11:15:06 +02:00
const body: UserWatchingVideo = req.body
2019-08-15 11:53:26 +02:00
const { id: videoId } = res.locals.videoId
2018-10-05 11:15:06 +02:00
await UserVideoHistoryModel.upsert({
videoId,
userId: user.id,
currentTime: body.currentTime
})
return res.type('json')
.status(HttpStatusCode.NO_CONTENT_204)
.end()
2018-10-05 11:15:06 +02:00
}