2020-12-08 08:30:29 -05:00
|
|
|
import { AggregateOptions, Op, ScopeOptions, Sequelize, Transaction } from 'sequelize'
|
2019-02-26 04:55:40 -05:00
|
|
|
import {
|
|
|
|
AllowNull,
|
|
|
|
BelongsTo,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
Default,
|
|
|
|
ForeignKey,
|
|
|
|
Is,
|
|
|
|
IsInt,
|
|
|
|
Min,
|
|
|
|
Model,
|
|
|
|
Table,
|
|
|
|
UpdatedAt
|
|
|
|
} from 'sequelize-typescript'
|
2020-01-07 08:56:07 -05:00
|
|
|
import validator from 'validator'
|
2020-12-08 08:30:29 -05:00
|
|
|
import { MUserAccountId } from '@server/types/models'
|
2019-08-20 13:05:31 -04:00
|
|
|
import {
|
|
|
|
MVideoPlaylistElement,
|
|
|
|
MVideoPlaylistElementAP,
|
|
|
|
MVideoPlaylistElementFormattable,
|
2019-08-21 08:31:57 -04:00
|
|
|
MVideoPlaylistElementVideoUrlPlaylistPrivacy,
|
2019-08-20 13:05:31 -04:00
|
|
|
MVideoPlaylistVideoThumbnail
|
2020-06-18 04:45:25 -04:00
|
|
|
} from '@server/types/models/video/video-playlist-element'
|
2020-12-08 08:30:29 -05:00
|
|
|
import { PlaylistElementObject } from '../../../shared/models/activitypub/objects/playlist-element-object'
|
|
|
|
import { VideoPrivacy } from '../../../shared/models/videos'
|
|
|
|
import { VideoPlaylistElement, VideoPlaylistElementType } from '../../../shared/models/videos/playlist/video-playlist-element.model'
|
|
|
|
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
|
|
|
|
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
|
|
|
|
import { AccountModel } from '../account/account'
|
|
|
|
import { getSort, throwIfNotValid } from '../utils'
|
|
|
|
import { ForAPIOptions, ScopeNames as VideoScopeNames, VideoModel } from './video'
|
|
|
|
import { VideoPlaylistModel } from './video-playlist'
|
2021-05-12 08:09:04 -04:00
|
|
|
import { AttributesOnly } from '@shared/core-utils'
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'videoPlaylistElement',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'videoPlaylistId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'url' ],
|
|
|
|
unique: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
2021-05-12 08:09:04 -04:00
|
|
|
export class VideoPlaylistElementModel extends Model<Partial<AttributesOnly<VideoPlaylistElementModel>>> {
|
2019-02-26 04:55:40 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
2020-08-17 10:39:32 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Is('VideoPlaylistUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url', true))
|
2019-02-26 04:55:40 -05:00
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.URL.max))
|
|
|
|
url: string
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(1)
|
|
|
|
@IsInt
|
|
|
|
@Min(1)
|
|
|
|
@Column
|
|
|
|
position: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@IsInt
|
|
|
|
@Min(0)
|
|
|
|
@Column
|
|
|
|
startTimestamp: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@IsInt
|
|
|
|
@Min(0)
|
|
|
|
@Column
|
|
|
|
stopTimestamp: number
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoPlaylistModel)
|
|
|
|
@Column
|
|
|
|
videoPlaylistId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoPlaylistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
VideoPlaylist: VideoPlaylistModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
2019-07-31 09:57:32 -04:00
|
|
|
allowNull: true
|
2019-02-26 04:55:40 -05:00
|
|
|
},
|
2019-07-31 09:57:32 -04:00
|
|
|
onDelete: 'set null'
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
Video: VideoModel
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
static deleteAllOf (videoPlaylistId: number, transaction?: Transaction) {
|
2019-02-26 04:55:40 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
videoPlaylistId
|
|
|
|
},
|
|
|
|
transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel.destroy(query)
|
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
static listForApi (options: {
|
2020-01-31 10:56:52 -05:00
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
videoPlaylistId: number
|
|
|
|
serverAccount: AccountModel
|
2019-08-15 05:53:26 -04:00
|
|
|
user?: MUserAccountId
|
2019-07-31 09:57:32 -04:00
|
|
|
}) {
|
|
|
|
const accountIds = [ options.serverAccount.id ]
|
|
|
|
const videoScope: (ScopeOptions | string)[] = [
|
|
|
|
VideoScopeNames.WITH_BLACKLISTED
|
|
|
|
]
|
|
|
|
|
|
|
|
if (options.user) {
|
|
|
|
accountIds.push(options.user.Account.id)
|
|
|
|
videoScope.push({ method: [ VideoScopeNames.WITH_USER_HISTORY, options.user.id ] })
|
|
|
|
}
|
|
|
|
|
|
|
|
const forApiOptions: ForAPIOptions = { withAccountBlockerIds: accountIds }
|
|
|
|
videoScope.push({
|
|
|
|
method: [
|
|
|
|
VideoScopeNames.FOR_API, forApiOptions
|
|
|
|
]
|
|
|
|
})
|
|
|
|
|
|
|
|
const findQuery = {
|
|
|
|
offset: options.start,
|
|
|
|
limit: options.count,
|
|
|
|
order: getSort('position'),
|
|
|
|
where: {
|
|
|
|
videoPlaylistId: options.videoPlaylistId
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoModel.scope(videoScope),
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
const countQuery = {
|
|
|
|
where: {
|
|
|
|
videoPlaylistId: options.videoPlaylistId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.all([
|
|
|
|
VideoPlaylistElementModel.count(countQuery),
|
|
|
|
VideoPlaylistElementModel.findAll(findQuery)
|
|
|
|
]).then(([ total, data ]) => ({ total, data }))
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByPlaylistAndVideo (videoPlaylistId: number, videoId: number): Promise<MVideoPlaylistElement> {
|
2019-02-26 04:55:40 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
videoPlaylistId,
|
|
|
|
videoId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadById (playlistElementId: number | string): Promise<MVideoPlaylistElement> {
|
2019-07-31 09:57:32 -04:00
|
|
|
return VideoPlaylistElementModel.findByPk(playlistElementId)
|
|
|
|
}
|
|
|
|
|
2020-08-17 10:39:32 -04:00
|
|
|
static loadByPlaylistAndElementIdForAP (
|
2019-08-21 08:31:57 -04:00
|
|
|
playlistId: number | string,
|
2020-08-17 10:39:32 -04:00
|
|
|
playlistElementId: number
|
2020-12-08 08:30:29 -05:00
|
|
|
): Promise<MVideoPlaylistElementVideoUrlPlaylistPrivacy> {
|
2019-02-26 04:55:40 -05:00
|
|
|
const playlistWhere = validator.isUUID('' + playlistId) ? { uuid: playlistId } : { id: playlistId }
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'privacy' ],
|
|
|
|
model: VideoPlaylistModel.unscoped(),
|
|
|
|
where: playlistWhere
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'url' ],
|
2020-08-17 10:39:32 -04:00
|
|
|
model: VideoModel.unscoped()
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
2020-08-17 10:39:32 -04:00
|
|
|
],
|
|
|
|
where: {
|
|
|
|
id: playlistElementId
|
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
static listUrlsOfForAP (videoPlaylistId: number, start: number, count: number, t?: Transaction) {
|
2019-02-26 04:55:40 -05:00
|
|
|
const query = {
|
|
|
|
attributes: [ 'url' ],
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
|
|
|
order: getSort('position'),
|
|
|
|
where: {
|
|
|
|
videoPlaylistId
|
2019-03-05 04:58:44 -05:00
|
|
|
},
|
|
|
|
transaction: t
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel
|
|
|
|
.findAndCountAll(query)
|
|
|
|
.then(({ rows, count }) => {
|
|
|
|
return { total: count, data: rows.map(e => e.url) }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadFirstElementWithVideoThumbnail (videoPlaylistId: number): Promise<MVideoPlaylistVideoThumbnail> {
|
2019-08-01 10:54:24 -04:00
|
|
|
const query = {
|
|
|
|
order: getSort('position'),
|
|
|
|
where: {
|
|
|
|
videoPlaylistId
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoModel.scope(VideoScopeNames.WITH_THUMBNAILS),
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel
|
|
|
|
.findOne(query)
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
static getNextPositionOf (videoPlaylistId: number, transaction?: Transaction) {
|
|
|
|
const query: AggregateOptions<number> = {
|
2019-02-26 04:55:40 -05:00
|
|
|
where: {
|
|
|
|
videoPlaylistId
|
|
|
|
},
|
|
|
|
transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel.max('position', query)
|
|
|
|
.then(position => position ? position + 1 : 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
static reassignPositionOf (
|
|
|
|
videoPlaylistId: number,
|
|
|
|
firstPosition: number,
|
|
|
|
endPosition: number,
|
|
|
|
newPosition: number,
|
2019-04-18 05:28:17 -04:00
|
|
|
transaction?: Transaction
|
2019-02-26 04:55:40 -05:00
|
|
|
) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
videoPlaylistId,
|
|
|
|
position: {
|
2019-04-18 05:28:17 -04:00
|
|
|
[Op.gte]: firstPosition,
|
|
|
|
[Op.lte]: endPosition
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
},
|
2019-02-28 05:14:26 -05:00
|
|
|
transaction,
|
|
|
|
validate: false // We use a literal to update the position
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
2021-05-12 08:09:04 -04:00
|
|
|
const positionQuery = Sequelize.literal(`${newPosition} + "position" - ${firstPosition}`)
|
|
|
|
return VideoPlaylistElementModel.update({ position: positionQuery as any }, query)
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static increasePositionOf (
|
|
|
|
videoPlaylistId: number,
|
|
|
|
fromPosition: number,
|
|
|
|
by = 1,
|
2019-04-18 05:28:17 -04:00
|
|
|
transaction?: Transaction
|
2019-02-26 04:55:40 -05:00
|
|
|
) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
videoPlaylistId,
|
|
|
|
position: {
|
2019-04-18 05:28:17 -04:00
|
|
|
[Op.gte]: fromPosition
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoPlaylistElementModel.increment({ position: by }, query)
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
getType (this: MVideoPlaylistElementFormattable, displayNSFW?: boolean, accountId?: number) {
|
2019-07-31 09:57:32 -04:00
|
|
|
const video = this.Video
|
|
|
|
|
|
|
|
if (!video) return VideoPlaylistElementType.DELETED
|
|
|
|
|
|
|
|
// Owned video, don't filter it
|
|
|
|
if (accountId && video.VideoChannel.Account.id === accountId) return VideoPlaylistElementType.REGULAR
|
|
|
|
|
2020-03-20 04:55:57 -04:00
|
|
|
// Internal video?
|
|
|
|
if (video.privacy === VideoPrivacy.INTERNAL && accountId) return VideoPlaylistElementType.REGULAR
|
|
|
|
|
|
|
|
if (video.privacy === VideoPrivacy.PRIVATE || video.privacy === VideoPrivacy.INTERNAL) return VideoPlaylistElementType.PRIVATE
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
if (video.isBlacklisted() || video.isBlocked()) return VideoPlaylistElementType.UNAVAILABLE
|
|
|
|
if (video.nsfw === true && displayNSFW === false) return VideoPlaylistElementType.UNAVAILABLE
|
|
|
|
|
|
|
|
return VideoPlaylistElementType.REGULAR
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
getVideoElement (this: MVideoPlaylistElementFormattable, displayNSFW?: boolean, accountId?: number) {
|
2019-07-31 09:57:32 -04:00
|
|
|
if (!this.Video) return null
|
|
|
|
if (this.getType(displayNSFW, accountId) !== VideoPlaylistElementType.REGULAR) return null
|
|
|
|
|
|
|
|
return this.Video.toFormattedJSON()
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
toFormattedJSON (
|
|
|
|
this: MVideoPlaylistElementFormattable,
|
|
|
|
options: { displayNSFW?: boolean, accountId?: number } = {}
|
|
|
|
): VideoPlaylistElement {
|
2019-07-31 09:57:32 -04:00
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
position: this.position,
|
|
|
|
startTimestamp: this.startTimestamp,
|
|
|
|
stopTimestamp: this.stopTimestamp,
|
|
|
|
|
|
|
|
type: this.getType(options.displayNSFW, options.accountId),
|
|
|
|
|
|
|
|
video: this.getVideoElement(options.displayNSFW, options.accountId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
toActivityPubObject (this: MVideoPlaylistElementAP): PlaylistElementObject {
|
2019-02-26 04:55:40 -05:00
|
|
|
const base: PlaylistElementObject = {
|
|
|
|
id: this.url,
|
|
|
|
type: 'PlaylistElement',
|
|
|
|
|
|
|
|
url: this.Video.url,
|
|
|
|
position: this.position
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.startTimestamp) base.startTimestamp = this.startTimestamp
|
|
|
|
if (this.stopTimestamp) base.stopTimestamp = this.stopTimestamp
|
|
|
|
|
|
|
|
return base
|
|
|
|
}
|
|
|
|
}
|