]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos/rate.ts
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / rate.ts
CommitLineData
41fb13c3 1import express from 'express'
d17c7b4e 2import { HttpStatusCode, UserVideoRateUpdate } from '@shared/models'
da854ddd 3import { logger } from '../../../helpers/logger'
74dc3bca 4import { VIDEO_RATE_TYPES } from '../../../initializers/constants'
4c7e60bc 5import { sequelizeTypescript } from '../../../initializers/database'
de94ac86 6import { getLocalRateUrl, sendVideoRateChange } from '../../../lib/activitypub/video-rates'
5c6d985f 7import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoUpdateRateValidator } from '../../../middlewares'
3fd3ab2d
C
8import { AccountModel } from '../../../models/account/account'
9import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
65fcc311
C
10
11const rateVideoRouter = express.Router()
12
13rateVideoRouter.put('/:id/rate',
14 authenticate,
5c6d985f 15 asyncMiddleware(videoUpdateRateValidator),
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
453e83ea 30 const videoInstance = res.locals.videoAll
dae86118 31 const userAccount = res.locals.oauth.token.User.Account
d33242b0 32
3fd3ab2d 33 await sequelizeTypescript.transaction(async t => {
eb080476 34 const sequelizeOptions = { transaction: t }
91411dba 35
5c6d985f 36 const accountInstance = await AccountModel.load(userAccount.id, t)
3fd3ab2d 37 const previousRate = await AccountVideoRateModel.load(accountInstance.id, videoInstance.id, t)
eb080476 38
285981f4
C
39 // Same rate, nothing do to
40 if (rateType === 'none' && !previousRate || previousRate?.type === rateType) return
41
eb080476
C
42 let likesToIncrement = 0
43 let dislikesToIncrement = 0
44
45 if (rateType === VIDEO_RATE_TYPES.LIKE) likesToIncrement++
46 else if (rateType === VIDEO_RATE_TYPES.DISLIKE) dislikesToIncrement++
47
48 // There was a previous rate, update it
49 if (previousRate) {
50 // We will remove the previous rate, so we will need to update the video count attribute
5c6d985f
C
51 if (previousRate.type === 'like') likesToIncrement--
52 else if (previousRate.type === 'dislike') dislikesToIncrement--
eb080476
C
53
54 if (rateType === 'none') { // Destroy previous rate
91411dba 55 await previousRate.destroy(sequelizeOptions)
eb080476 56 } else { // Update previous rate
53abc4c2 57 previousRate.type = rateType
de94ac86 58 previousRate.url = getLocalRateUrl(rateType, userAccount.Actor, videoInstance)
91411dba 59 await previousRate.save(sequelizeOptions)
eb080476
C
60 }
61 } else if (rateType !== 'none') { // There was not a previous rate, insert a new one if there is a rate
62 const query = {
571389d4 63 accountId: accountInstance.id,
eb080476 64 videoId: videoInstance.id,
5c6d985f 65 type: rateType,
de94ac86 66 url: getLocalRateUrl(rateType, userAccount.Actor, videoInstance)
eb080476
C
67 }
68
3fd3ab2d 69 await AccountVideoRateModel.create(query, sequelizeOptions)
eb080476
C
70 }
71
72 const incrementQuery = {
73 likes: likesToIncrement,
74 dislikes: dislikesToIncrement
75 }
76
eb080476
C
77 await videoInstance.increment(incrementQuery, sequelizeOptions)
78
07197db4 79 await sendVideoRateChange(accountInstance, videoInstance, likesToIncrement, dislikesToIncrement, t)
eb080476 80
91411dba
C
81 logger.info('Account video rate for video %s of account %s updated.', videoInstance.name, accountInstance.name)
82 })
90d4bb81 83
2d53be02
RK
84 return res.type('json')
85 .status(HttpStatusCode.NO_CONTENT_204)
86 .end()
d33242b0 87}