aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos/view.ts
blob: dee1ec67cb3ac7fed158f8dc96ae3fc81429c9fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import express from 'express'
import { Hooks } from '@server/lib/plugins/hooks'
import { VideoViewsManager } from '@server/lib/views/video-views-manager'
import { MVideoId } from '@server/types/models'
import { HttpStatusCode, VideoView } from '@shared/models'
import { asyncMiddleware, methodsValidator, openapiOperationDoc, optionalAuthenticate, videoViewValidator } from '../../../middlewares'
import { UserVideoHistoryModel } from '../../../models/user/user-video-history'

const viewRouter = express.Router()

viewRouter.all(
  [ '/:videoId/views', '/:videoId/watching' ],
  openapiOperationDoc({ operationId: 'addView' }),
  methodsValidator([ 'PUT', 'POST' ]),
  optionalAuthenticate,
  asyncMiddleware(videoViewValidator),
  asyncMiddleware(viewVideo)
)

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

export {
  viewRouter
}

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

async function viewVideo (req: express.Request, res: express.Response) {
  const video = res.locals.onlyImmutableVideo

  const body = req.body as VideoView

  const ip = req.ip
  const { successView } = await VideoViewsManager.Instance.processLocalView({
    video,
    ip,
    currentTime: body.currentTime,
    viewEvent: body.viewEvent
  })

  if (successView) {
    Hooks.runAction('action:api.video.viewed', { video: video, ip, req, res })
  }

  await updateUserHistoryIfNeeded(body, video, res)

  return res.status(HttpStatusCode.NO_CONTENT_204).end()
}

async function updateUserHistoryIfNeeded (body: VideoView, video: MVideoId, res: express.Response) {
  const user = res.locals.oauth?.token.User
  if (!user) return
  if (user.videosHistoryEnabled !== true) return

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