]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/account/account-video-rate.ts
Fix typo in db field check
[github/Chocobozzz/PeerTube.git] / server / models / account / account-video-rate.ts
CommitLineData
65fcc311 1import { values } from 'lodash'
1735c825 2import { FindOptions, Op, Transaction } from 'sequelize'
5c6d985f 3import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
3fd3ab2d 4import { VideoRateType } from '../../../shared/models/videos'
74dc3bca 5import { CONSTRAINTS_FIELDS, VIDEO_RATE_TYPES } from '../../initializers/constants'
3fd3ab2d
C
6import { VideoModel } from '../video/video'
7import { AccountModel } from './account'
8fffe21a 8import { ActorModel } from '../activitypub/actor'
6b9c966f 9import { buildLocalAccountIdsIn, getSort, throwIfNotValid } from '../utils'
5c6d985f 10import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
c100a614 11import { AccountVideoRate } from '../../../shared'
bfbd9128 12import { ScopeNames as VideoChannelScopeNames, SummaryOptions, VideoChannelModel } from '../video/video-channel'
453e83ea 13import * as Bluebird from 'bluebird'
1ca9f7c3
C
14import {
15 MAccountVideoRate,
16 MAccountVideoRateAccountUrl,
17 MAccountVideoRateAccountVideo,
18 MAccountVideoRateFormattable
19} from '@server/typings/models/video/video-rate'
d38b8281 20
3fd3ab2d
C
21/*
22 Account rates per video.
23*/
24@Table({
25 tableName: 'accountVideoRate',
26 indexes: [
d38b8281 27 {
3fd3ab2d
C
28 fields: [ 'videoId', 'accountId' ],
29 unique: true
8cd72bd3
C
30 },
31 {
32 fields: [ 'videoId' ]
33 },
34 {
35 fields: [ 'accountId' ]
36 },
37 {
38 fields: [ 'videoId', 'type' ]
5c6d985f
C
39 },
40 {
41 fields: [ 'url' ],
42 unique: true
d38b8281 43 }
3fd3ab2d
C
44 ]
45})
46export class AccountVideoRateModel extends Model<AccountVideoRateModel> {
d38b8281 47
3fd3ab2d 48 @AllowNull(false)
1735c825 49 @Column(DataType.ENUM(...values(VIDEO_RATE_TYPES)))
3fd3ab2d 50 type: VideoRateType
e02643f3 51
5c6d985f
C
52 @AllowNull(false)
53 @Is('AccountVideoRateUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
54 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_RATES.URL.max))
55 url: string
56
3fd3ab2d
C
57 @CreatedAt
58 createdAt: Date
e02643f3 59
3fd3ab2d
C
60 @UpdatedAt
61 updatedAt: Date
d38b8281 62
3fd3ab2d
C
63 @ForeignKey(() => VideoModel)
64 @Column
65 videoId: number
d38b8281 66
3fd3ab2d 67 @BelongsTo(() => VideoModel, {
d38b8281 68 foreignKey: {
d38b8281
C
69 allowNull: false
70 },
71 onDelete: 'CASCADE'
72 })
3fd3ab2d 73 Video: VideoModel
d38b8281 74
3fd3ab2d
C
75 @ForeignKey(() => AccountModel)
76 @Column
77 accountId: number
78
79 @BelongsTo(() => AccountModel, {
d38b8281 80 foreignKey: {
d38b8281
C
81 allowNull: false
82 },
83 onDelete: 'CASCADE'
84 })
3fd3ab2d 85 Account: AccountModel
d38b8281 86
453e83ea 87 static load (accountId: number, videoId: number, transaction?: Transaction): Bluebird<MAccountVideoRate> {
1735c825 88 const options: FindOptions = {
3fd3ab2d
C
89 where: {
90 accountId,
91 videoId
92 }
d38b8281 93 }
3fd3ab2d 94 if (transaction) options.transaction = transaction
d38b8281 95
3fd3ab2d
C
96 return AccountVideoRateModel.findOne(options)
97 }
8fffe21a 98
453e83ea 99 static loadByAccountAndVideoOrUrl (accountId: number, videoId: number, url: string, t?: Transaction): Bluebird<MAccountVideoRate> {
970ceac0
C
100 const options: FindOptions = {
101 where: {
a1587156 102 [Op.or]: [
970ceac0
C
103 {
104 accountId,
105 videoId
106 },
107 {
108 url
109 }
110 ]
111 }
112 }
453e83ea 113 if (t) options.transaction = t
970ceac0
C
114
115 return AccountVideoRateModel.findOne(options)
116 }
117
c100a614 118 static listByAccountForApi (options: {
a1587156
C
119 start: number
120 count: number
121 sort: string
122 type?: string
c100a614
YB
123 accountId: number
124 }) {
1735c825 125 const query: FindOptions = {
c100a614
YB
126 offset: options.start,
127 limit: options.count,
128 order: getSort(options.sort),
129 where: {
130 accountId: options.accountId
131 },
132 include: [
133 {
134 model: VideoModel,
135 required: true,
136 include: [
137 {
a1587156 138 model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, { withAccount: true } as SummaryOptions ] }),
c100a614
YB
139 required: true
140 }
141 ]
142 }
143 ]
144 }
145 if (options.type) query.where['type'] = options.type
146
147 return AccountVideoRateModel.findAndCountAll(query)
148 }
149
453e83ea
C
150 static loadLocalAndPopulateVideo (
151 rateType: VideoRateType,
152 accountName: string,
d5d9b6d7 153 videoId: number | string,
453e83ea
C
154 t?: Transaction
155 ): Bluebird<MAccountVideoRateAccountVideo> {
1735c825 156 const options: FindOptions = {
5c6d985f
C
157 where: {
158 videoId,
159 type: rateType
160 },
161 include: [
162 {
163 model: AccountModel.unscoped(),
164 required: true,
165 include: [
166 {
453e83ea 167 attributes: [ 'id', 'url', 'followersUrl', 'preferredUsername' ],
5c6d985f
C
168 model: ActorModel.unscoped(),
169 required: true,
170 where: {
171 preferredUsername: accountName
172 }
173 }
174 ]
175 },
176 {
177 model: VideoModel.unscoped(),
178 required: true
179 }
180 ]
181 }
453e83ea 182 if (t) options.transaction = t
5c6d985f
C
183
184 return AccountVideoRateModel.findOne(options)
185 }
186
187 static loadByUrl (url: string, transaction: Transaction) {
1735c825 188 const options: FindOptions = {
5c6d985f
C
189 where: {
190 url
191 }
192 }
193 if (transaction) options.transaction = transaction
194
195 return AccountVideoRateModel.findOne(options)
196 }
197
8fffe21a
C
198 static listAndCountAccountUrlsByVideoId (rateType: VideoRateType, videoId: number, start: number, count: number, t?: Transaction) {
199 const query = {
9a4a9b6c
C
200 offset: start,
201 limit: count,
8fffe21a
C
202 where: {
203 videoId,
204 type: rateType
205 },
206 transaction: t,
207 include: [
208 {
209 attributes: [ 'actorId' ],
210 model: AccountModel.unscoped(),
211 required: true,
212 include: [
213 {
214 attributes: [ 'url' ],
215 model: ActorModel.unscoped(),
216 required: true
217 }
218 ]
219 }
220 ]
221 }
222
453e83ea 223 return AccountVideoRateModel.findAndCountAll<MAccountVideoRateAccountUrl>(query)
8fffe21a 224 }
2ba92871
C
225
226 static cleanOldRatesOf (videoId: number, type: VideoRateType, beforeUpdatedAt: Date) {
227 return AccountVideoRateModel.sequelize.transaction(async t => {
228 const query = {
229 where: {
230 updatedAt: {
231 [Op.lt]: beforeUpdatedAt
232 },
233 videoId,
6b9c966f
C
234 type,
235 accountId: {
236 [Op.notIn]: buildLocalAccountIdsIn()
970ceac0 237 }
6b9c966f 238 },
2ba92871
C
239 transaction: t
240 }
241
242 const deleted = await AccountVideoRateModel.destroy(query)
243
244 const options = {
245 transaction: t,
246 where: {
247 id: videoId
248 }
249 }
250
251 if (type === 'like') await VideoModel.increment({ likes: -deleted }, options)
252 else if (type === 'dislike') await VideoModel.increment({ dislikes: -deleted }, options)
253 })
254 }
c100a614 255
1ca9f7c3 256 toFormattedJSON (this: MAccountVideoRateFormattable): AccountVideoRate {
c100a614
YB
257 return {
258 video: this.Video.toFormattedJSON(),
259 rating: this.type
260 }
261 }
d38b8281 262}