]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/api/videos/rate.ts
Propagate old comment on new follow
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos / rate.ts
1 import * as express from 'express'
2 import { UserVideoRateUpdate } from '../../../../shared'
3 import { retryTransactionWrapper } from '../../../helpers/database-utils'
4 import { logger } from '../../../helpers/logger'
5 import { sequelizeTypescript, VIDEO_RATE_TYPES } from '../../../initializers'
6 import { sendVideoRateChangeToFollowers, sendVideoRateChangeToOrigin } from '../../../lib/activitypub'
7 import { asyncMiddleware, authenticate, videoRateValidator } from '../../../middlewares'
8 import { AccountModel } from '../../../models/account/account'
9 import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
10 import { VideoModel } from '../../../models/video/video'
11
12 const rateVideoRouter = express.Router()
13
14 rateVideoRouter.put('/:id/rate',
15 authenticate,
16 asyncMiddleware(videoRateValidator),
17 asyncMiddleware(rateVideoRetryWrapper)
18 )
19
20 // ---------------------------------------------------------------------------
21
22 export {
23 rateVideoRouter
24 }
25
26 // ---------------------------------------------------------------------------
27
28 async function rateVideoRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
29 const options = {
30 arguments: [ req, res ],
31 errorMessage: 'Cannot update the user video rate.'
32 }
33
34 await retryTransactionWrapper(rateVideo, options)
35
36 return res.type('json').status(204).end()
37 }
38
39 async function rateVideo (req: express.Request, res: express.Response) {
40 const body: UserVideoRateUpdate = req.body
41 const rateType = body.rating
42 const videoInstance: VideoModel = res.locals.video
43 const accountInstance: AccountModel = res.locals.oauth.token.User.Account
44
45 await sequelizeTypescript.transaction(async t => {
46 const sequelizeOptions = { transaction: t }
47 const previousRate = await AccountVideoRateModel.load(accountInstance.id, videoInstance.id, t)
48
49 let likesToIncrement = 0
50 let dislikesToIncrement = 0
51
52 if (rateType === VIDEO_RATE_TYPES.LIKE) likesToIncrement++
53 else if (rateType === VIDEO_RATE_TYPES.DISLIKE) dislikesToIncrement++
54
55 // There was a previous rate, update it
56 if (previousRate) {
57 // We will remove the previous rate, so we will need to update the video count attribute
58 if (previousRate.type === VIDEO_RATE_TYPES.LIKE) likesToIncrement--
59 else if (previousRate.type === VIDEO_RATE_TYPES.DISLIKE) dislikesToIncrement--
60
61 if (rateType === 'none') { // Destroy previous rate
62 await previousRate.destroy({ transaction: t })
63 } else { // Update previous rate
64 previousRate.type = rateType
65
66 await previousRate.save({ transaction: t })
67 }
68 } else if (rateType !== 'none') { // There was not a previous rate, insert a new one if there is a rate
69 const query = {
70 accountId: accountInstance.id,
71 videoId: videoInstance.id,
72 type: rateType
73 }
74
75 await AccountVideoRateModel.create(query, sequelizeOptions)
76 }
77
78 const incrementQuery = {
79 likes: likesToIncrement,
80 dislikes: dislikesToIncrement
81 }
82
83 // Even if we do not own the video we increment the attributes
84 // It is useful for the user to have a feedback
85 await videoInstance.increment(incrementQuery, sequelizeOptions)
86
87 if (videoInstance.isOwned()) {
88 await sendVideoRateChangeToFollowers(accountInstance, videoInstance, likesToIncrement, dislikesToIncrement, t)
89 } else {
90 await sendVideoRateChangeToOrigin(accountInstance, videoInstance, likesToIncrement, dislikesToIncrement, t)
91 }
92 })
93
94 logger.info('Account video rate for video %s of account %s updated.', videoInstance.name, accountInstance.name)
95 }