diff options
Diffstat (limited to 'server/models/account/account-video-rate.ts')
-rw-r--r-- | server/models/account/account-video-rate.ts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/server/models/account/account-video-rate.ts b/server/models/account/account-video-rate.ts index e969e4a43..508ab814f 100644 --- a/server/models/account/account-video-rate.ts +++ b/server/models/account/account-video-rate.ts | |||
@@ -6,6 +6,7 @@ import { VideoRateType } from '../../../shared/models/videos' | |||
6 | import { VIDEO_RATE_TYPES } from '../../initializers' | 6 | import { VIDEO_RATE_TYPES } from '../../initializers' |
7 | import { VideoModel } from '../video/video' | 7 | import { VideoModel } from '../video/video' |
8 | import { AccountModel } from './account' | 8 | import { AccountModel } from './account' |
9 | import { ActorModel } from '../activitypub/actor' | ||
9 | 10 | ||
10 | /* | 11 | /* |
11 | Account rates per video. | 12 | Account rates per video. |
@@ -66,4 +67,32 @@ export class AccountVideoRateModel extends Model<AccountVideoRateModel> { | |||
66 | 67 | ||
67 | return AccountVideoRateModel.findOne(options) | 68 | return AccountVideoRateModel.findOne(options) |
68 | } | 69 | } |
70 | |||
71 | static listAndCountAccountUrlsByVideoId (rateType: VideoRateType, videoId: number, start: number, count: number, t?: Transaction) { | ||
72 | const query = { | ||
73 | start, | ||
74 | count, | ||
75 | where: { | ||
76 | videoId, | ||
77 | type: rateType | ||
78 | }, | ||
79 | transaction: t, | ||
80 | include: [ | ||
81 | { | ||
82 | attributes: [ 'actorId' ], | ||
83 | model: AccountModel.unscoped(), | ||
84 | required: true, | ||
85 | include: [ | ||
86 | { | ||
87 | attributes: [ 'url' ], | ||
88 | model: ActorModel.unscoped(), | ||
89 | required: true | ||
90 | } | ||
91 | ] | ||
92 | } | ||
93 | ] | ||
94 | } | ||
95 | |||
96 | return AccountVideoRateModel.findAndCountAll(query) | ||
97 | } | ||
69 | } | 98 | } |