aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/controllers/api/videos/watching.ts
blob: dcd1f070d1662ff680a6c32ecec19e83af188f78 (plain) (tree)
1
2
3
4



                                                                                                                             

















                                                                              
                                          











                                                            
import * as express from 'express'
import { UserWatchingVideo } from '../../../../shared'
import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoWatchingValidator } from '../../../middlewares'
import { UserVideoHistoryModel } from '../../../models/account/user-video-history'

const watchingRouter = express.Router()

watchingRouter.put('/:videoId/watching',
  authenticate,
  asyncMiddleware(videoWatchingValidator),
  asyncRetryTransactionMiddleware(userWatchVideo)
)

// ---------------------------------------------------------------------------

export {
  watchingRouter
}

// ---------------------------------------------------------------------------

async function userWatchVideo (req: express.Request, res: express.Response) {
  const user = res.locals.oauth.token.User

  const body: UserWatchingVideo = req.body
  const { id: videoId } = res.locals.video as { id: number }

  await UserVideoHistoryModel.upsert({
    videoId,
    userId: user.id,
    currentTime: body.currentTime
  })

  return res.type('json').status(204).end()
}