X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmodels%2Fvideo%2Fvideo-share.ts;h=4bbef75e6a547a7c125fe4249555921bfc7f56e1;hb=891a81966148b8c973e9804b8b7952a95f3a6fd6;hp=9019b401abeda0d0439cebb63673c91f7effd370;hpb=453e83ea5d81d203ba34bc43cd5c2c750ba40568;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/models/video/video-share.ts b/server/models/video/video-share.ts index 9019b401a..4bbef75e6 100644 --- a/server/models/video/video-share.ts +++ b/server/models/video/video-share.ts @@ -2,12 +2,10 @@ import * as Bluebird from 'bluebird' import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript' import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc' import { CONSTRAINTS_FIELDS } from '../../initializers/constants' -import { AccountModel } from '../account/account' import { ActorModel } from '../activitypub/actor' import { buildLocalActorIdsIn, throwIfNotValid } from '../utils' import { VideoModel } from './video' -import { VideoChannelModel } from './video-channel' -import { Op, Transaction } from 'sequelize' +import { literal, Op, Transaction } from 'sequelize' import { MVideoShareActor, MVideoShareFull } from '../../typings/models/video' import { MActorDefault } from '../../typings/models' @@ -90,7 +88,7 @@ export class VideoShareModel extends Model { }) Video: VideoModel - static load (actorId: number, videoId: number, t?: Transaction): Bluebird { + static load (actorId: number | string, videoId: number | string, t?: Transaction): Bluebird { return VideoShareModel.scope(ScopeNames.WITH_ACTOR).findOne({ where: { actorId, @@ -124,70 +122,55 @@ export class VideoShareModel extends Model { } return VideoShareModel.scope(ScopeNames.FULL).findAll(query) - .then((res: MVideoShareFull[]) => res.map(r => r.Actor)) + .then((res: MVideoShareFull[]) => res.map(r => r.Actor)) } static loadActorsWhoSharedVideosOf (actorOwnerId: number, t: Transaction): Bluebird { + const safeOwnerId = parseInt(actorOwnerId + '', 10) + + // /!\ On actor model const query = { - attributes: [], - include: [ - { - model: ActorModel, - required: true - }, - { - attributes: [], - model: VideoModel, - required: true, - include: [ - { - attributes: [], - model: VideoChannelModel.unscoped(), - required: true, - include: [ - { - attributes: [], - model: AccountModel.unscoped(), - required: true, - where: { - actorId: actorOwnerId - } - } - ] - } - ] - } - ], + where: { + [Op.and]: [ + literal( + `EXISTS (` + + ` SELECT 1 FROM "videoShare" ` + + ` INNER JOIN "video" ON "videoShare"."videoId" = "video"."id" ` + + ` INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ` + + ` INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ` + + ` WHERE "videoShare"."actorId" = "ActorModel"."id" AND "account"."actorId" = ${safeOwnerId} ` + + ` LIMIT 1` + + `)` + ) + ] + }, transaction: t } - return VideoShareModel.scope(ScopeNames.FULL).findAll(query) - .then(res => res.map(r => r.Actor)) + return ActorModel.findAll(query) } static loadActorsByVideoChannel (videoChannelId: number, t: Transaction): Bluebird { + const safeChannelId = parseInt(videoChannelId + '', 10) + + // /!\ On actor model const query = { - attributes: [], - include: [ - { - model: ActorModel, - required: true - }, - { - attributes: [], - model: VideoModel, - required: true, - where: { - channelId: videoChannelId - } - } - ], + where: { + [Op.and]: [ + literal( + `EXISTS (` + + ` SELECT 1 FROM "videoShare" ` + + ` INNER JOIN "video" ON "videoShare"."videoId" = "video"."id" ` + + ` WHERE "videoShare"."actorId" = "ActorModel"."id" AND "video"."channelId" = ${safeChannelId} ` + + ` LIMIT 1` + + `)` + ) + ] + }, transaction: t } - return VideoShareModel.scope(ScopeNames.FULL) - .findAll(query) - .then(res => res.map(r => r.Actor)) + return ActorModel.findAll(query) } static listAndCountByVideoId (videoId: number, start: number, count: number, t?: Transaction) {