]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos/rate.ts
Add user history and resume videos
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / rate.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
53abc4c2 2import { UserVideoRateUpdate } from '../../../../shared'
da854ddd 3import { logger } from '../../../helpers/logger'
3fd3ab2d 4import { sequelizeTypescript, VIDEO_RATE_TYPES } from '../../../initializers'
07197db4 5import { sendVideoRateChange } from '../../../lib/activitypub'
90d4bb81 6import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoRateValidator } from '../../../middlewares'
3fd3ab2d
C
7import { AccountModel } from '../../../models/account/account'
8import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
9import { VideoModel } from '../../../models/video/video'
65fcc311
C
10
11const rateVideoRouter = express.Router()
12
13rateVideoRouter.put('/:id/rate',
14 authenticate,
a2431b7d 15 asyncMiddleware(videoRateValidator),
90d4bb81 16 asyncRetryTransactionMiddleware(rateVideo)
d33242b0
C
17)
18
19// ---------------------------------------------------------------------------
20
65fcc311
C
21export {
22 rateVideoRouter
23}
d33242b0
C
24
25// ---------------------------------------------------------------------------
26
eb080476 27async function rateVideo (req: express.Request, res: express.Response) {
4771e000
C
28 const body: UserVideoRateUpdate = req.body
29 const rateType = body.rating
3fd3ab2d 30 const videoInstance: VideoModel = res.locals.video
d33242b0 31
3fd3ab2d 32 await sequelizeTypescript.transaction(async t => {
eb080476 33 const sequelizeOptions = { transaction: t }
91411dba
C
34
35 const accountInstance = await AccountModel.load(res.locals.oauth.token.User.Account.id, t)
3fd3ab2d 36 const previousRate = await AccountVideoRateModel.load(accountInstance.id, videoInstance.id, t)
eb080476
C
37
38 let likesToIncrement = 0
39 let dislikesToIncrement = 0
40
41 if (rateType === VIDEO_RATE_TYPES.LIKE) likesToIncrement++
42 else if (rateType === VIDEO_RATE_TYPES.DISLIKE) dislikesToIncrement++
43
44 // There was a previous rate, update it
45 if (previousRate) {
46 // We will remove the previous rate, so we will need to update the video count attribute
47 if (previousRate.type === VIDEO_RATE_TYPES.LIKE) likesToIncrement--
48 else if (previousRate.type === VIDEO_RATE_TYPES.DISLIKE) dislikesToIncrement--
49
50 if (rateType === 'none') { // Destroy previous rate
91411dba 51 await previousRate.destroy(sequelizeOptions)
eb080476 52 } else { // Update previous rate
53abc4c2 53 previousRate.type = rateType
91411dba 54 await previousRate.save(sequelizeOptions)
eb080476
C
55 }
56 } else if (rateType !== 'none') { // There was not a previous rate, insert a new one if there is a rate
57 const query = {
571389d4 58 accountId: accountInstance.id,
eb080476
C
59 videoId: videoInstance.id,
60 type: rateType
61 }
62
3fd3ab2d 63 await AccountVideoRateModel.create(query, sequelizeOptions)
eb080476
C
64 }
65
66 const incrementQuery = {
67 likes: likesToIncrement,
68 dislikes: dislikesToIncrement
69 }
70
eb080476
C
71 await videoInstance.increment(incrementQuery, sequelizeOptions)
72
07197db4 73 await sendVideoRateChange(accountInstance, videoInstance, likesToIncrement, dislikesToIncrement, t)
eb080476 74
91411dba
C
75 logger.info('Account video rate for video %s of account %s updated.', videoInstance.name, accountInstance.name)
76 })
90d4bb81
C
77
78 return res.type('json').status(204).end()
d33242b0 79}