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

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2021-12-24 10:14:47 +01:00
import { HttpStatusCode, UserWatchingVideo } from '@shared/models'
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
}