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

447 lines
10 KiB
TypeScript
Raw Normal View History

2017-12-12 17:53:50 +01:00
import {
AllowNull,
BeforeDestroy,
BelongsTo,
Column,
CreatedAt,
DataType,
Default,
DefaultScope,
ForeignKey,
HasMany,
Is,
Model,
Scopes,
2018-08-23 17:58:39 +02:00
Sequelize,
Table,
UpdatedAt
2017-12-12 17:53:50 +01:00
} from 'sequelize-typescript'
2017-12-14 17:38:41 +01:00
import { ActivityPubActor } from '../../../shared/models/activitypub'
import { VideoChannel } from '../../../shared/models/videos'
import {
isVideoChannelDescriptionValid,
isVideoChannelNameValid,
isVideoChannelSupportValid
} from '../../helpers/custom-validators/video-channels'
import { sendDeleteActor } from '../../lib/activitypub/send'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../account/account'
2018-08-23 17:58:39 +02:00
import { ActorModel, unusedActorAttributesForAPI } from '../activitypub/actor'
import { buildTrigramSearchIndex, createSimilarityAttribute, getSort, throwIfNotValid } from '../utils'
2017-12-12 17:53:50 +01:00
import { VideoModel } from './video'
import { CONSTRAINTS_FIELDS } from '../../initializers'
2018-08-17 15:45:42 +02:00
import { ServerModel } from '../server/server'
2018-08-23 17:58:39 +02:00
import { DefineIndexesOptions } from 'sequelize'
// FIXME: Define indexes here because there is an issue with TS and Sequelize.literal when called directly in the annotation
const indexes: DefineIndexesOptions[] = [
buildTrigramSearchIndex('video_channel_name_trigram', 'name'),
{
fields: [ 'accountId' ]
},
{
fields: [ 'actorId' ]
}
]
2017-12-12 17:53:50 +01:00
2017-12-14 10:07:57 +01:00
enum ScopeNames {
2018-08-23 17:58:39 +02:00
AVAILABLE_FOR_LIST = 'AVAILABLE_FOR_LIST',
2017-12-14 10:07:57 +01:00
WITH_ACCOUNT = 'WITH_ACCOUNT',
2017-12-14 17:38:41 +01:00
WITH_ACTOR = 'WITH_ACTOR',
2017-12-14 10:07:57 +01:00
WITH_VIDEOS = 'WITH_VIDEOS'
}
2018-08-23 17:58:39 +02:00
type AvailableForListOptions = {
actorId: number
}
2017-12-14 17:38:41 +01:00
@DefaultScope({
include: [
{
model: () => ActorModel,
required: true
}
]
})
2017-12-14 10:07:57 +01:00
@Scopes({
2018-08-23 17:58:39 +02:00
[ScopeNames.AVAILABLE_FOR_LIST]: (options: AvailableForListOptions) => {
const actorIdNumber = parseInt(options.actorId + '', 10)
// Only list local channels OR channels that are on an instance followed by actorId
const inQueryInstanceFollow = '(' +
2018-08-28 15:16:04 +02:00
'SELECT "actor"."serverId" FROM "actorFollow" ' +
'INNER JOIN "actor" ON actor.id= "actorFollow"."targetActorId" ' +
2018-08-28 18:29:29 +02:00
'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
2018-08-23 17:58:39 +02:00
')'
return {
include: [
{
attributes: {
exclude: unusedActorAttributesForAPI
},
model: ActorModel,
where: {
[Sequelize.Op.or]: [
2018-06-18 11:34:14 +02:00
{
2018-08-23 17:58:39 +02:00
serverId: null
},
{
serverId: {
[ Sequelize.Op.in ]: Sequelize.literal(inQueryInstanceFollow)
}
2018-06-18 11:34:14 +02:00
}
]
2017-12-14 17:38:41 +01:00
}
2018-08-23 17:58:39 +02:00
},
{
model: AccountModel,
required: true,
include: [
{
attributes: {
exclude: unusedActorAttributesForAPI
},
model: ActorModel, // Default scope includes avatar and server
required: true
}
]
}
]
}
},
[ScopeNames.WITH_ACCOUNT]: {
include: [
{
model: () => AccountModel,
required: true
2017-12-14 10:07:57 +01:00
}
]
},
[ScopeNames.WITH_VIDEOS]: {
include: [
() => VideoModel
]
2017-12-14 17:38:41 +01:00
},
[ScopeNames.WITH_ACTOR]: {
include: [
() => ActorModel
]
2017-12-14 10:07:57 +01:00
}
})
2017-12-12 17:53:50 +01:00
@Table({
tableName: 'videoChannel',
2018-08-23 17:58:39 +02:00
indexes
2017-12-12 17:53:50 +01:00
})
export class VideoChannelModel extends Model<VideoChannelModel> {
2017-10-24 19:41:09 +02:00
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Is('VideoChannelName', value => throwIfNotValid(value, isVideoChannelNameValid, 'name'))
@Column
name: string
2017-10-24 19:41:09 +02:00
2017-12-12 17:53:50 +01:00
@AllowNull(true)
@Default(null)
2017-12-12 17:53:50 +01:00
@Is('VideoChannelDescription', value => throwIfNotValid(value, isVideoChannelDescriptionValid, 'description'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_CHANNELS.DESCRIPTION.max))
2017-12-12 17:53:50 +01:00
description: string
2017-10-24 19:41:09 +02:00
@AllowNull(true)
@Default(null)
@Is('VideoChannelSupport', value => throwIfNotValid(value, isVideoChannelSupportValid, 'support'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_CHANNELS.SUPPORT.max))
support: string
2017-12-12 17:53:50 +01:00
@CreatedAt
createdAt: Date
2017-10-24 19:41:09 +02:00
2017-12-12 17:53:50 +01:00
@UpdatedAt
updatedAt: Date
2017-12-14 11:18:49 +01:00
@ForeignKey(() => ActorModel)
@Column
actorId: number
@BelongsTo(() => ActorModel, {
foreignKey: {
allowNull: false
},
onDelete: 'cascade'
})
Actor: ActorModel
2017-12-12 17:53:50 +01:00
@ForeignKey(() => AccountModel)
@Column
accountId: number
2017-12-12 17:53:50 +01:00
@BelongsTo(() => AccountModel, {
foreignKey: {
allowNull: false
},
2018-04-25 10:21:38 +02:00
hooks: true
2017-12-12 17:53:50 +01:00
})
Account: AccountModel
2017-10-24 19:41:09 +02:00
2017-12-12 17:53:50 +01:00
@HasMany(() => VideoModel, {
2017-10-24 19:41:09 +02:00
foreignKey: {
2017-12-12 17:53:50 +01:00
name: 'channelId',
2017-10-24 19:41:09 +02:00
allowNull: false
},
onDelete: 'CASCADE',
hooks: true
2017-10-24 19:41:09 +02:00
})
2017-12-12 17:53:50 +01:00
Videos: VideoModel[]
2017-10-24 19:41:09 +02:00
@BeforeDestroy
static async sendDeleteIfOwned (instance: VideoChannelModel, options) {
if (!instance.Actor) {
instance.Actor = await instance.$get('Actor', { transaction: options.transaction }) as ActorModel
}
if (instance.Actor.isOwned()) {
return sendDeleteActor(instance.Actor, options.transaction)
}
return undefined
2017-12-12 17:53:50 +01:00
}
2017-10-24 19:41:09 +02:00
2017-12-12 17:53:50 +01:00
static countByAccount (accountId: number) {
const query = {
where: {
accountId
}
2017-10-24 19:41:09 +02:00
}
2017-12-12 17:53:50 +01:00
return VideoChannelModel.count(query)
2017-10-24 19:41:09 +02:00
}
2018-08-23 17:58:39 +02:00
static listForApi (actorId: number, start: number, count: number, sort: string) {
2017-12-12 17:53:50 +01:00
const query = {
offset: start,
limit: count,
2018-02-19 09:41:03 +01:00
order: getSort(sort)
2017-12-12 17:53:50 +01:00
}
2017-10-24 19:41:09 +02:00
2018-08-23 17:58:39 +02:00
const scopes = {
method: [ ScopeNames.AVAILABLE_FOR_LIST, { actorId } as AvailableForListOptions ]
}
2017-12-14 17:38:41 +01:00
return VideoChannelModel
2018-08-23 17:58:39 +02:00
.scope(scopes)
.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
}
static searchForApi (options: {
actorId: number
search: string
start: number
count: number
sort: string
}) {
const attributesInclude = []
const escapedSearch = VideoModel.sequelize.escape(options.search)
const escapedLikeSearch = VideoModel.sequelize.escape('%' + options.search + '%')
attributesInclude.push(createSimilarityAttribute('VideoChannelModel.name', options.search))
const query = {
attributes: {
include: attributesInclude
},
offset: options.start,
limit: options.count,
order: getSort(options.sort),
where: {
2018-08-28 15:16:04 +02:00
[Sequelize.Op.or]: [
Sequelize.literal(
'lower(immutable_unaccent("VideoChannelModel"."name")) % lower(immutable_unaccent(' + escapedSearch + '))'
),
Sequelize.literal(
'lower(immutable_unaccent("VideoChannelModel"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))'
2018-08-23 17:58:39 +02:00
)
2018-08-28 15:16:04 +02:00
]
2018-08-23 17:58:39 +02:00
}
}
const scopes = {
method: [ ScopeNames.AVAILABLE_FOR_LIST, { actorId: options.actorId } as AvailableForListOptions ]
}
return VideoChannelModel
.scope(scopes)
2017-12-14 17:38:41 +01:00
.findAndCountAll(query)
2017-12-12 17:53:50 +01:00
.then(({ rows, count }) => {
return { total: count, data: rows }
})
2017-10-24 19:41:09 +02:00
}
2017-12-12 17:53:50 +01:00
static listByAccount (accountId: number) {
const query = {
2018-02-19 09:41:03 +01:00
order: getSort('createdAt'),
2017-12-12 17:53:50 +01:00
include: [
{
model: AccountModel,
where: {
id: accountId
},
2017-12-14 17:38:41 +01:00
required: true
2017-12-12 17:53:50 +01:00
}
]
}
2017-10-24 19:41:09 +02:00
2017-12-14 17:38:41 +01:00
return VideoChannelModel
.findAndCountAll(query)
2017-12-12 17:53:50 +01:00
.then(({ rows, count }) => {
return { total: count, data: rows }
})
2017-10-24 19:41:09 +02:00
}
2017-12-12 17:53:50 +01:00
static loadByIdAndAccount (id: number, accountId: number) {
2018-08-17 15:45:42 +02:00
const query = {
2017-12-12 17:53:50 +01:00
where: {
id,
accountId
2017-12-14 10:07:57 +01:00
}
2017-11-10 17:27:49 +01:00
}
2017-12-12 17:53:50 +01:00
2017-12-14 17:38:41 +01:00
return VideoChannelModel
.scope([ ScopeNames.WITH_ACTOR, ScopeNames.WITH_ACCOUNT ])
2018-08-17 15:45:42 +02:00
.findOne(query)
2017-11-10 14:34:45 +01:00
}
2017-12-12 17:53:50 +01:00
static loadAndPopulateAccount (id: number) {
2017-12-14 17:38:41 +01:00
return VideoChannelModel
.scope([ ScopeNames.WITH_ACTOR, ScopeNames.WITH_ACCOUNT ])
.findById(id)
2017-12-12 17:53:50 +01:00
}
2017-11-10 14:34:45 +01:00
2017-12-12 17:53:50 +01:00
static loadByUUIDAndPopulateAccount (uuid: string) {
2018-08-17 15:45:42 +02:00
const query = {
2017-12-14 17:38:41 +01:00
include: [
{
model: ActorModel,
required: true,
where: {
uuid
}
}
]
2017-12-12 17:53:50 +01:00
}
2017-12-14 17:38:41 +01:00
return VideoChannelModel
2018-08-23 17:58:39 +02:00
.scope([ ScopeNames.WITH_ACCOUNT ])
.findOne(query)
}
static loadByUrlAndPopulateAccount (url: string) {
const query = {
include: [
{
model: ActorModel,
required: true,
where: {
url
}
}
]
}
return VideoChannelModel
.scope([ ScopeNames.WITH_ACCOUNT ])
2018-08-17 15:45:42 +02:00
.findOne(query)
2017-10-24 19:41:09 +02:00
}
2018-08-17 15:45:42 +02:00
static loadLocalByNameAndPopulateAccount (name: string) {
const query = {
2017-12-12 17:53:50 +01:00
include: [
2018-08-17 15:45:42 +02:00
{
model: ActorModel,
required: true,
where: {
preferredUsername: name,
serverId: null
}
}
2017-12-12 17:53:50 +01:00
]
}
2017-10-24 19:41:09 +02:00
2017-12-14 17:38:41 +01:00
return VideoChannelModel
2018-08-17 15:45:42 +02:00
.scope([ ScopeNames.WITH_ACTOR, ScopeNames.WITH_ACCOUNT ])
.findOne(query)
2017-10-24 19:41:09 +02:00
}
2018-08-17 15:45:42 +02:00
static loadByNameAndHostAndPopulateAccount (name: string, host: string) {
const query = {
include: [
{
model: ActorModel,
required: true,
where: {
2018-08-17 15:45:42 +02:00
preferredUsername: name
},
include: [
{
model: ServerModel,
required: true,
where: { host }
}
]
}
]
}
2018-08-17 15:45:42 +02:00
return VideoChannelModel
.scope([ ScopeNames.WITH_ACTOR, ScopeNames.WITH_ACCOUNT ])
.findOne(query)
}
static loadAndPopulateAccountAndVideos (id: number) {
const options = {
include: [
VideoModel
]
}
return VideoChannelModel
.scope([ ScopeNames.WITH_ACTOR, ScopeNames.WITH_ACCOUNT, ScopeNames.WITH_VIDEOS ])
.findById(id, options)
}
toFormattedJSON (): VideoChannel {
2017-12-14 17:38:41 +01:00
const actor = this.Actor.toFormattedJSON()
2018-04-25 10:21:38 +02:00
const videoChannel = {
2017-12-12 17:53:50 +01:00
id: this.id,
displayName: this.getDisplayName(),
2017-12-12 17:53:50 +01:00
description: this.description,
support: this.support,
2017-12-14 17:38:41 +01:00
isLocal: this.Actor.isOwned(),
2017-12-12 17:53:50 +01:00
createdAt: this.createdAt,
2018-04-25 10:21:38 +02:00
updatedAt: this.updatedAt,
ownerAccount: undefined
2018-04-25 10:21:38 +02:00
}
2018-05-23 11:38:00 +02:00
if (this.Account) videoChannel.ownerAccount = this.Account.toFormattedJSON()
2017-10-24 19:41:09 +02:00
2018-04-25 10:21:38 +02:00
return Object.assign(actor, videoChannel)
2017-10-24 19:41:09 +02:00
}
2017-12-14 17:38:41 +01:00
toActivityPubObject (): ActivityPubActor {
const obj = this.Actor.toActivityPubObject(this.name, 'VideoChannel')
return Object.assign(obj, {
summary: this.description,
support: this.support,
2017-12-14 17:38:41 +01:00
attributedTo: [
{
type: 'Person' as 'Person',
id: this.Account.Actor.url
}
]
})
2017-10-24 19:41:09 +02:00
}
getDisplayName () {
return this.name
}
2017-10-24 19:41:09 +02:00
}