PeerTube/server/models/video/video-playlist.ts

556 lines
14 KiB
TypeScript
Raw Normal View History

2019-02-26 10:55:40 +01:00
import {
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
Default,
ForeignKey,
HasMany,
HasOne,
2019-02-26 10:55:40 +01:00
Is,
IsUUID,
Model,
Scopes,
Table,
2019-12-27 09:04:04 +01:00
UpdatedAt
2019-02-26 10:55:40 +01:00
} from 'sequelize-typescript'
import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
2019-12-27 09:04:04 +01:00
import { buildServerIdsFollowedBy, buildWhereIdOrUUID, getSort, isOutdated, throwIfNotValid } from '../utils'
2019-02-26 10:55:40 +01:00
import {
isVideoPlaylistDescriptionValid,
isVideoPlaylistNameValid,
isVideoPlaylistPrivacyValid
} from '../../helpers/custom-validators/video-playlists'
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
2019-03-05 10:58:44 +01:00
import {
2019-03-19 14:13:53 +01:00
ACTIVITY_PUB,
2019-03-05 10:58:44 +01:00
CONSTRAINTS_FIELDS,
STATIC_PATHS,
THUMBNAILS_SIZE,
VIDEO_PLAYLIST_PRIVACIES,
2019-04-11 11:33:44 +02:00
VIDEO_PLAYLIST_TYPES,
WEBSERVER
} from '../../initializers/constants'
2019-02-26 10:55:40 +01:00
import { VideoPlaylist } from '../../../shared/models/videos/playlist/video-playlist.model'
2019-07-31 15:57:32 +02:00
import { AccountModel, ScopeNames as AccountScopeNames, SummaryOptions } from '../account/account'
2019-02-26 10:55:40 +01:00
import { ScopeNames as VideoChannelScopeNames, VideoChannelModel } from './video-channel'
import { join } from 'path'
import { VideoPlaylistElementModel } from './video-playlist-element'
import { PlaylistObject } from '../../../shared/models/activitypub/objects/playlist-object'
import { activityPubCollectionPagination } from '../../helpers/activitypub'
2019-03-05 10:58:44 +01:00
import { VideoPlaylistType } from '../../../shared/models/videos/playlist/video-playlist-type.model'
import { ThumbnailModel } from './thumbnail'
import { ActivityIconObject } from '../../../shared/models/activitypub/objects'
2019-04-23 09:50:57 +02:00
import { FindOptions, literal, Op, ScopeOptions, Transaction, WhereOptions } from 'sequelize'
2019-08-15 11:53:26 +02:00
import * as Bluebird from 'bluebird'
import {
2019-12-27 09:04:04 +01:00
MVideoPlaylistAccountThumbnail,
MVideoPlaylistAP,
2019-08-20 19:05:31 +02:00
MVideoPlaylistFormattable,
2019-08-15 11:53:26 +02:00
MVideoPlaylistFull,
MVideoPlaylistFullSummary,
MVideoPlaylistIdWithElements
} from '../../typings/models/video/video-playlist'
import { MThumbnail } from '../../typings/models/video/thumbnail'
2019-02-26 10:55:40 +01:00
enum ScopeNames {
AVAILABLE_FOR_LIST = 'AVAILABLE_FOR_LIST',
WITH_VIDEOS_LENGTH = 'WITH_VIDEOS_LENGTH',
2019-03-05 10:58:44 +01:00
WITH_ACCOUNT_AND_CHANNEL_SUMMARY = 'WITH_ACCOUNT_AND_CHANNEL_SUMMARY',
2019-03-05 11:30:43 +01:00
WITH_ACCOUNT = 'WITH_ACCOUNT',
WITH_THUMBNAIL = 'WITH_THUMBNAIL',
2019-03-05 11:30:43 +01:00
WITH_ACCOUNT_AND_CHANNEL = 'WITH_ACCOUNT_AND_CHANNEL'
2019-02-26 10:55:40 +01:00
}
type AvailableForListOptions = {
followerActorId: number
2019-03-05 10:58:44 +01:00
type?: VideoPlaylistType
accountId?: number
2019-02-26 10:55:40 +01:00
videoChannelId?: number
privateAndUnlisted?: boolean,
search?: string
2019-02-26 10:55:40 +01:00
}
2019-04-23 09:50:57 +02:00
@Scopes(() => ({
[ ScopeNames.WITH_THUMBNAIL ]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: ThumbnailModel,
required: false
}
]
},
2019-03-05 10:58:44 +01:00
[ ScopeNames.WITH_VIDEOS_LENGTH ]: {
2019-02-26 10:55:40 +01:00
attributes: {
include: [
2019-04-18 11:28:17 +02:00
[
literal('(SELECT COUNT("id") FROM "videoPlaylistElement" WHERE "videoPlaylistId" = "VideoPlaylistModel"."id")'),
2019-02-26 10:55:40 +01:00
'videosLength'
]
]
}
2019-04-23 09:50:57 +02:00
} as FindOptions,
2019-03-05 10:58:44 +01:00
[ ScopeNames.WITH_ACCOUNT ]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel,
2019-03-05 10:58:44 +01:00
required: true
}
]
},
[ ScopeNames.WITH_ACCOUNT_AND_CHANNEL_SUMMARY ]: {
2019-02-26 10:55:40 +01:00
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel.scope(AccountScopeNames.SUMMARY),
2019-02-26 10:55:40 +01:00
required: true
},
{
2019-04-23 09:50:57 +02:00
model: VideoChannelModel.scope(VideoChannelScopeNames.SUMMARY),
2019-02-26 10:55:40 +01:00
required: false
}
]
},
2019-03-05 11:30:43 +01:00
[ ScopeNames.WITH_ACCOUNT_AND_CHANNEL ]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel,
2019-03-05 11:30:43 +01:00
required: true
},
{
2019-04-23 09:50:57 +02:00
model: VideoChannelModel,
2019-03-05 11:30:43 +01:00
required: false
}
]
},
2019-03-05 10:58:44 +01:00
[ ScopeNames.AVAILABLE_FOR_LIST ]: (options: AvailableForListOptions) => {
2019-02-26 10:55:40 +01:00
// Only list local playlists OR playlists that are on an instance followed by actorId
const inQueryInstanceFollow = buildServerIdsFollowedBy(options.followerActorId)
2019-07-31 15:57:32 +02:00
const whereActor = {
2019-04-18 11:28:17 +02:00
[ Op.or ]: [
2019-02-26 10:55:40 +01:00
{
serverId: null
},
{
serverId: {
2019-04-18 11:28:17 +02:00
[ Op.in ]: literal(inQueryInstanceFollow)
2019-02-26 10:55:40 +01:00
}
}
]
}
2019-04-23 09:50:57 +02:00
const whereAnd: WhereOptions[] = []
2019-02-26 10:55:40 +01:00
if (options.privateAndUnlisted !== true) {
whereAnd.push({
privacy: VideoPlaylistPrivacy.PUBLIC
})
}
if (options.accountId) {
whereAnd.push({
ownerAccountId: options.accountId
})
}
if (options.videoChannelId) {
whereAnd.push({
videoChannelId: options.videoChannelId
})
}
2019-03-05 10:58:44 +01:00
if (options.type) {
whereAnd.push({
type: options.type
})
}
if (options.search) {
whereAnd.push({
2019-12-27 09:04:04 +01:00
name: {
[ Op.iLike ]: '%' + options.search + '%'
}
})
}
2019-02-26 10:55:40 +01:00
const where = {
2019-04-18 11:28:17 +02:00
[Op.and]: whereAnd
2019-02-26 10:55:40 +01:00
}
const accountScope = {
2019-07-31 15:57:32 +02:00
method: [ AccountScopeNames.SUMMARY, { whereActor } as SummaryOptions ]
2019-02-26 10:55:40 +01:00
}
return {
where,
include: [
{
model: AccountModel.scope(accountScope),
required: true
},
{
model: VideoChannelModel.scope(VideoChannelScopeNames.SUMMARY),
required: false
}
]
2019-04-23 09:50:57 +02:00
} as FindOptions
2019-02-26 10:55:40 +01:00
}
2019-04-23 09:50:57 +02:00
}))
2019-02-26 10:55:40 +01:00
@Table({
tableName: 'videoPlaylist',
indexes: [
{
fields: [ 'ownerAccountId' ]
},
{
fields: [ 'videoChannelId' ]
},
{
fields: [ 'url' ],
unique: true
}
]
})
export class VideoPlaylistModel extends Model<VideoPlaylistModel> {
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@AllowNull(false)
@Is('VideoPlaylistName', value => throwIfNotValid(value, isVideoPlaylistNameValid, 'name'))
@Column
name: string
@AllowNull(true)
2019-04-18 11:28:17 +02:00
@Is('VideoPlaylistDescription', value => throwIfNotValid(value, isVideoPlaylistDescriptionValid, 'description', true))
2019-02-26 10:55:40 +01:00
@Column
description: string
@AllowNull(false)
@Is('VideoPlaylistPrivacy', value => throwIfNotValid(value, isVideoPlaylistPrivacyValid, 'privacy'))
@Column
privacy: VideoPlaylistPrivacy
@AllowNull(false)
@Is('VideoPlaylistUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.URL.max))
url: string
@AllowNull(false)
@Default(DataType.UUIDV4)
@IsUUID(4)
@Column(DataType.UUID)
uuid: string
2019-03-05 10:58:44 +01:00
@AllowNull(false)
@Default(VideoPlaylistType.REGULAR)
@Column
type: VideoPlaylistType
2019-02-26 10:55:40 +01:00
@ForeignKey(() => AccountModel)
@Column
ownerAccountId: number
@BelongsTo(() => AccountModel, {
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
OwnerAccount: AccountModel
@ForeignKey(() => VideoChannelModel)
@Column
videoChannelId: number
@BelongsTo(() => VideoChannelModel, {
foreignKey: {
2019-02-28 11:14:26 +01:00
allowNull: true
2019-02-26 10:55:40 +01:00
},
onDelete: 'CASCADE'
})
VideoChannel: VideoChannelModel
@HasMany(() => VideoPlaylistElementModel, {
foreignKey: {
name: 'videoPlaylistId',
allowNull: false
},
2019-03-05 10:58:44 +01:00
onDelete: 'CASCADE'
2019-02-26 10:55:40 +01:00
})
VideoPlaylistElements: VideoPlaylistElementModel[]
@HasOne(() => ThumbnailModel, {
foreignKey: {
name: 'videoPlaylistId',
allowNull: true
},
onDelete: 'CASCADE',
hooks: true
})
Thumbnail: ThumbnailModel
2019-02-26 10:55:40 +01:00
static listForApi (options: {
followerActorId: number
start: number,
count: number,
sort: string,
2019-03-05 10:58:44 +01:00
type?: VideoPlaylistType,
2019-02-26 10:55:40 +01:00
accountId?: number,
videoChannelId?: number,
privateAndUnlisted?: boolean,
search?: string
2019-02-26 10:55:40 +01:00
}) {
const query = {
offset: options.start,
limit: options.count,
order: getSort(options.sort)
}
2019-04-23 09:50:57 +02:00
const scopes: (string | ScopeOptions)[] = [
2019-02-26 10:55:40 +01:00
{
method: [
ScopeNames.AVAILABLE_FOR_LIST,
{
2019-03-05 10:58:44 +01:00
type: options.type,
2019-02-26 10:55:40 +01:00
followerActorId: options.followerActorId,
accountId: options.accountId,
videoChannelId: options.videoChannelId,
privateAndUnlisted: options.privateAndUnlisted,
search: options.search
2019-02-26 10:55:40 +01:00
} as AvailableForListOptions
]
2019-04-23 09:50:57 +02:00
},
ScopeNames.WITH_VIDEOS_LENGTH,
ScopeNames.WITH_THUMBNAIL
2019-02-26 10:55:40 +01:00
]
return VideoPlaylistModel
.scope(scopes)
.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
}
2019-03-13 16:03:03 +01:00
static listPublicUrlsOfForAP (accountId: number, start: number, count: number) {
2019-02-26 10:55:40 +01:00
const query = {
attributes: [ 'url' ],
offset: start,
limit: count,
where: {
2019-03-13 16:03:03 +01:00
ownerAccountId: accountId,
privacy: VideoPlaylistPrivacy.PUBLIC
2019-02-26 10:55:40 +01:00
}
}
return VideoPlaylistModel.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows.map(p => p.url) }
})
}
2019-08-15 11:53:26 +02:00
static listPlaylistIdsOf (accountId: number, videoIds: number[]): Bluebird<MVideoPlaylistIdWithElements[]> {
2019-03-07 17:06:00 +01:00
const query = {
attributes: [ 'id' ],
where: {
ownerAccountId: accountId
},
include: [
{
2019-07-31 15:57:32 +02:00
attributes: [ 'id', 'videoId', 'startTimestamp', 'stopTimestamp' ],
2019-03-07 17:06:00 +01:00
model: VideoPlaylistElementModel.unscoped(),
where: {
videoId: {
2019-04-23 09:50:57 +02:00
[Op.in]: videoIds // FIXME: sequelize ANY seems broken
2019-03-07 17:06:00 +01:00
}
},
required: true
}
]
}
return VideoPlaylistModel.findAll(query)
}
2019-02-26 10:55:40 +01:00
static doesPlaylistExist (url: string) {
const query = {
attributes: [],
where: {
url
}
}
return VideoPlaylistModel
.findOne(query)
.then(e => !!e)
}
2019-08-15 11:53:26 +02:00
static loadWithAccountAndChannelSummary (id: number | string, transaction: Transaction): Bluebird<MVideoPlaylistFullSummary> {
2019-02-26 10:55:40 +01:00
const where = buildWhereIdOrUUID(id)
const query = {
where,
transaction
}
return VideoPlaylistModel
.scope([ ScopeNames.WITH_ACCOUNT_AND_CHANNEL_SUMMARY, ScopeNames.WITH_VIDEOS_LENGTH, ScopeNames.WITH_THUMBNAIL ])
2019-03-05 11:30:43 +01:00
.findOne(query)
}
2019-08-15 11:53:26 +02:00
static loadWithAccountAndChannel (id: number | string, transaction: Transaction): Bluebird<MVideoPlaylistFull> {
2019-03-05 11:30:43 +01:00
const where = buildWhereIdOrUUID(id)
const query = {
where,
transaction
}
return VideoPlaylistModel
.scope([ ScopeNames.WITH_ACCOUNT_AND_CHANNEL, ScopeNames.WITH_VIDEOS_LENGTH, ScopeNames.WITH_THUMBNAIL ])
2019-02-26 10:55:40 +01:00
.findOne(query)
}
2019-08-15 11:53:26 +02:00
static loadByUrlAndPopulateAccount (url: string): Bluebird<MVideoPlaylistAccountThumbnail> {
2019-03-05 10:58:44 +01:00
const query = {
where: {
url
}
}
return VideoPlaylistModel.scope([ ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_THUMBNAIL ]).findOne(query)
2019-03-05 10:58:44 +01:00
}
2019-02-26 10:55:40 +01:00
static getPrivacyLabel (privacy: VideoPlaylistPrivacy) {
return VIDEO_PLAYLIST_PRIVACIES[privacy] || 'Unknown'
}
2019-03-05 10:58:44 +01:00
static getTypeLabel (type: VideoPlaylistType) {
return VIDEO_PLAYLIST_TYPES[type] || 'Unknown'
}
2019-04-18 11:28:17 +02:00
static resetPlaylistsOfChannel (videoChannelId: number, transaction: Transaction) {
2019-03-05 10:58:44 +01:00
const query = {
where: {
videoChannelId
},
transaction
}
return VideoPlaylistModel.update({ privacy: VideoPlaylistPrivacy.PRIVATE, videoChannelId: null }, query)
}
2019-08-15 11:53:26 +02:00
async setAndSaveThumbnail (thumbnail: MThumbnail, t: Transaction) {
2019-04-23 09:50:57 +02:00
thumbnail.videoPlaylistId = this.id
2019-04-23 09:50:57 +02:00
this.Thumbnail = await thumbnail.save({ transaction: t })
}
hasThumbnail () {
return !!this.Thumbnail
}
hasGeneratedThumbnail () {
return this.hasThumbnail() && this.Thumbnail.automaticallyGenerated === true
}
generateThumbnailName () {
2019-02-26 10:55:40 +01:00
const extension = '.jpg'
return 'playlist-' + this.uuid + extension
}
getThumbnailUrl () {
if (!this.hasThumbnail()) return null
2019-04-23 09:50:57 +02:00
return WEBSERVER.URL + STATIC_PATHS.THUMBNAILS + this.Thumbnail.filename
2019-02-26 10:55:40 +01:00
}
getThumbnailStaticPath () {
if (!this.hasThumbnail()) return null
2019-02-26 10:55:40 +01:00
2019-04-23 09:50:57 +02:00
return join(STATIC_PATHS.THUMBNAILS, this.Thumbnail.filename)
2019-02-26 10:55:40 +01:00
}
2019-03-19 14:13:53 +01:00
setAsRefreshed () {
this.changed('updatedAt', true)
return this.save()
}
2019-02-26 10:55:40 +01:00
isOwned () {
return this.OwnerAccount.isOwned()
}
2019-03-19 14:13:53 +01:00
isOutdated () {
if (this.isOwned()) return false
return isOutdated(this, ACTIVITY_PUB.VIDEO_PLAYLIST_REFRESH_INTERVAL)
}
2019-08-20 19:05:31 +02:00
toFormattedJSON (this: MVideoPlaylistFormattable): VideoPlaylist {
2019-02-26 10:55:40 +01:00
return {
id: this.id,
uuid: this.uuid,
isLocal: this.isOwned(),
displayName: this.name,
description: this.description,
privacy: {
id: this.privacy,
label: VideoPlaylistModel.getPrivacyLabel(this.privacy)
},
thumbnailPath: this.getThumbnailStaticPath(),
2019-03-05 10:58:44 +01:00
type: {
id: this.type,
label: VideoPlaylistModel.getTypeLabel(this.type)
},
2019-04-18 11:28:17 +02:00
videosLength: this.get('videosLength') as number,
2019-02-26 10:55:40 +01:00
createdAt: this.createdAt,
updatedAt: this.updatedAt,
ownerAccount: this.OwnerAccount.toFormattedSummaryJSON(),
2019-02-28 11:14:26 +01:00
videoChannel: this.VideoChannel ? this.VideoChannel.toFormattedSummaryJSON() : null
2019-02-26 10:55:40 +01:00
}
}
2019-08-21 14:31:57 +02:00
toActivityPubObject (this: MVideoPlaylistAP, page: number, t: Transaction): Promise<PlaylistObject> {
2019-02-26 10:55:40 +01:00
const handler = (start: number, count: number) => {
2019-03-05 10:58:44 +01:00
return VideoPlaylistElementModel.listUrlsOfForAP(this.id, start, count, t)
2019-02-26 10:55:40 +01:00
}
let icon: ActivityIconObject
if (this.hasThumbnail()) {
icon = {
type: 'Image' as 'Image',
url: this.getThumbnailUrl(),
mediaType: 'image/jpeg' as 'image/jpeg',
width: THUMBNAILS_SIZE.width,
height: THUMBNAILS_SIZE.height
}
}
2019-03-05 10:58:44 +01:00
return activityPubCollectionPagination(this.url, handler, page)
2019-02-26 10:55:40 +01:00
.then(o => {
return Object.assign(o, {
type: 'Playlist' as 'Playlist',
name: this.name,
content: this.description,
uuid: this.uuid,
2019-03-05 10:58:44 +01:00
published: this.createdAt.toISOString(),
updated: this.updatedAt.toISOString(),
2019-02-26 10:55:40 +01:00
attributedTo: this.VideoChannel ? [ this.VideoChannel.Actor.url ] : [],
icon
2019-02-26 10:55:40 +01:00
})
})
}
}