X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmodels%2Fvideo%2Fvideo-share.ts;h=b4de2b20fedd3d78b3a7042e665541ad3e310825;hb=2a4c0d8bbe29178ae90e776bb9453f86e6d23bd9;hp=4bbef75e6a547a7c125fe4249555921bfc7f56e1;hpb=891a81966148b8c973e9804b8b7952a95f3a6fd6;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/models/video/video-share.ts b/server/models/video/video-share.ts index 4bbef75e6..b4de2b20f 100644 --- a/server/models/video/video-share.ts +++ b/server/models/video/video-share.ts @@ -1,13 +1,14 @@ -import * as Bluebird from 'bluebird' +import { literal, Op, QueryTypes, Transaction } from 'sequelize' import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript' +import { forceNumber } from '@shared/core-utils' +import { AttributesOnly } from '@shared/typescript-utils' import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc' import { CONSTRAINTS_FIELDS } from '../../initializers/constants' -import { ActorModel } from '../activitypub/actor' -import { buildLocalActorIdsIn, throwIfNotValid } from '../utils' +import { MActorDefault, MActorFollowersUrl, MActorId } from '../../types/models' +import { MVideoShareActor, MVideoShareFull } from '../../types/models/video' +import { ActorModel } from '../actor/actor' +import { buildLocalActorIdsIn, throwIfNotValid } from '../shared' import { VideoModel } from './video' -import { literal, Op, Transaction } from 'sequelize' -import { MVideoShareActor, MVideoShareFull } from '../../typings/models/video' -import { MActorDefault } from '../../typings/models' enum ScopeNames { FULL = 'FULL', @@ -51,7 +52,7 @@ enum ScopeNames { } ] }) -export class VideoShareModel extends Model { +export class VideoShareModel extends Model>> { @AllowNull(false) @Is('VideoShareUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url')) @@ -88,7 +89,7 @@ export class VideoShareModel extends Model { }) Video: VideoModel - static load (actorId: number | string, videoId: number | string, t?: Transaction): Bluebird { + static load (actorId: number | string, videoId: number | string, t?: Transaction): Promise { return VideoShareModel.scope(ScopeNames.WITH_ACTOR).findOne({ where: { actorId, @@ -98,7 +99,7 @@ export class VideoShareModel extends Model { }) } - static loadByUrl (url: string, t: Transaction): Bluebird { + static loadByUrl (url: string, t: Transaction): Promise { return VideoShareModel.scope(ScopeNames.FULL).findOne({ where: { url @@ -107,26 +108,23 @@ export class VideoShareModel extends Model { }) } - static loadActorsByShare (videoId: number, t: Transaction): Bluebird { - const query = { - where: { - videoId - }, - include: [ - { - model: ActorModel, - required: true - } - ], + static listActorIdsAndFollowerUrlsByShare (videoId: number, t: Transaction) { + const query = `SELECT "actor"."id" AS "id", "actor"."followersUrl" AS "followersUrl" ` + + `FROM "videoShare" ` + + `INNER JOIN "actor" ON "actor"."id" = "videoShare"."actorId" ` + + `WHERE "videoShare"."videoId" = :videoId` + + const options = { + type: QueryTypes.SELECT as QueryTypes.SELECT, + replacements: { videoId }, transaction: t } - return VideoShareModel.scope(ScopeNames.FULL).findAll(query) - .then((res: MVideoShareFull[]) => res.map(r => r.Actor)) + return VideoShareModel.sequelize.query(query, options) } - static loadActorsWhoSharedVideosOf (actorOwnerId: number, t: Transaction): Bluebird { - const safeOwnerId = parseInt(actorOwnerId + '', 10) + static loadActorsWhoSharedVideosOf (actorOwnerId: number, t: Transaction): Promise { + const safeOwnerId = forceNumber(actorOwnerId) // /!\ On actor model const query = { @@ -150,8 +148,8 @@ export class VideoShareModel extends Model { return ActorModel.findAll(query) } - static loadActorsByVideoChannel (videoChannelId: number, t: Transaction): Bluebird { - const safeChannelId = parseInt(videoChannelId + '', 10) + static loadActorsByVideoChannel (videoChannelId: number, t: Transaction): Promise { + const safeChannelId = forceNumber(videoChannelId) // /!\ On actor model const query = { @@ -183,7 +181,21 @@ export class VideoShareModel extends Model { transaction: t } - return VideoShareModel.findAndCountAll(query) + return Promise.all([ + VideoShareModel.count(query), + VideoShareModel.findAll(query) + ]).then(([ total, data ]) => ({ total, data })) + } + + static listRemoteShareUrlsOfLocalVideos () { + const query = `SELECT "videoShare".url FROM "videoShare" ` + + `INNER JOIN actor ON actor.id = "videoShare"."actorId" AND actor."serverId" IS NOT NULL ` + + `INNER JOIN video ON video.id = "videoShare"."videoId" AND video.remote IS FALSE` + + return VideoShareModel.sequelize.query<{ url: string }>(query, { + type: QueryTypes.SELECT, + raw: true + }).then(rows => rows.map(r => r.url)) } static cleanOldSharesOf (videoId: number, beforeUpdatedAt: Date) {