]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos/rate.ts
Add ability to bulk delete comments
[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'
74dc3bca 4import { VIDEO_RATE_TYPES } from '../../../initializers/constants'
8dc8a34e 5import { getRateUrl, sendVideoRateChange } from '../../../lib/activitypub/video-rates'
5c6d985f 6import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoUpdateRateValidator } from '../../../middlewares'
3fd3ab2d
C
7import { AccountModel } from '../../../models/account/account'
8import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
74dc3bca 9import { sequelizeTypescript } from '../../../initializers/database'
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
C
38
39 let likesToIncrement = 0
40 let dislikesToIncrement = 0
41
42 if (rateType === VIDEO_RATE_TYPES.LIKE) likesToIncrement++
43 else if (rateType === VIDEO_RATE_TYPES.DISLIKE) dislikesToIncrement++
44
45 // There was a previous rate, update it
46 if (previousRate) {
47 // We will remove the previous rate, so we will need to update the video count attribute
5c6d985f
C
48 if (previousRate.type === 'like') likesToIncrement--
49 else if (previousRate.type === 'dislike') dislikesToIncrement--
eb080476
C
50
51 if (rateType === 'none') { // Destroy previous rate
91411dba 52 await previousRate.destroy(sequelizeOptions)
eb080476 53 } else { // Update previous rate
53abc4c2 54 previousRate.type = rateType
5c6d985f 55 previousRate.url = getRateUrl(rateType, userAccount.Actor, videoInstance)
91411dba 56 await previousRate.save(sequelizeOptions)
eb080476
C
57 }
58 } else if (rateType !== 'none') { // There was not a previous rate, insert a new one if there is a rate
59 const query = {
571389d4 60 accountId: accountInstance.id,
eb080476 61 videoId: videoInstance.id,
5c6d985f
C
62 type: rateType,
63 url: getRateUrl(rateType, userAccount.Actor, videoInstance)
eb080476
C
64 }
65
3fd3ab2d 66 await AccountVideoRateModel.create(query, sequelizeOptions)
eb080476
C
67 }
68
69 const incrementQuery = {
70 likes: likesToIncrement,
71 dislikes: dislikesToIncrement
72 }
73
eb080476
C
74 await videoInstance.increment(incrementQuery, sequelizeOptions)
75
07197db4 76 await sendVideoRateChange(accountInstance, videoInstance, likesToIncrement, dislikesToIncrement, t)
eb080476 77
91411dba
C
78 logger.info('Account video rate for video %s of account %s updated.', videoInstance.name, accountInstance.name)
79 })
90d4bb81
C
80
81 return res.type('json').status(204).end()
d33242b0 82}