1
0
Fork 0
peertube/server/models/video/video-share.ts

143 lines
2.8 KiB
TypeScript
Raw Normal View History

2017-11-15 16:56:21 +00:00
import * as Sequelize from 'sequelize'
2017-12-14 09:07:57 +00:00
import { BelongsTo, Column, CreatedAt, ForeignKey, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
2018-01-03 15:38:50 +00:00
import { AccountModel } from '../account/account'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../activitypub/actor'
2017-12-12 16:53:50 +00:00
import { VideoModel } from './video'
2018-01-03 15:38:50 +00:00
import { VideoChannelModel } from './video-channel'
2017-11-15 16:56:21 +00:00
2017-12-14 09:07:57 +00:00
enum ScopeNames {
FULL = 'FULL',
2017-12-14 16:38:41 +00:00
WITH_ACTOR = 'WITH_ACTOR'
2017-12-14 09:07:57 +00:00
}
@Scopes({
[ScopeNames.FULL]: {
include: [
{
2017-12-14 16:38:41 +00:00
model: () => ActorModel,
2017-12-14 09:07:57 +00:00
required: true
},
{
model: () => VideoModel,
required: true
}
]
},
2017-12-14 16:38:41 +00:00
[ScopeNames.WITH_ACTOR]: {
2017-12-14 09:07:57 +00:00
include: [
{
2017-12-14 16:38:41 +00:00
model: () => ActorModel,
2017-12-14 09:07:57 +00:00
required: true
}
]
}
})
2017-12-12 16:53:50 +00:00
@Table({
tableName: 'videoShare',
indexes: [
2017-11-15 16:56:21 +00:00
{
2017-12-14 16:38:41 +00:00
fields: [ 'actorId' ]
2017-12-12 16:53:50 +00:00
},
{
fields: [ 'videoId' ]
2017-11-15 16:56:21 +00:00
}
]
2017-12-12 16:53:50 +00:00
})
export class VideoShareModel extends Model<VideoShareModel> {
@CreatedAt
createdAt: Date
2017-11-15 16:56:21 +00:00
2017-12-12 16:53:50 +00:00
@UpdatedAt
updatedAt: Date
2017-11-15 16:56:21 +00:00
2017-12-14 16:38:41 +00:00
@ForeignKey(() => ActorModel)
2017-12-12 16:53:50 +00:00
@Column
2017-12-14 16:38:41 +00:00
actorId: number
2017-11-15 16:56:21 +00:00
2017-12-14 16:38:41 +00:00
@BelongsTo(() => ActorModel, {
2017-11-15 16:56:21 +00:00
foreignKey: {
allowNull: false
},
onDelete: 'cascade'
})
2017-12-14 16:38:41 +00:00
Actor: ActorModel
2017-11-15 16:56:21 +00:00
2017-12-12 16:53:50 +00:00
@ForeignKey(() => VideoModel)
@Column
videoId: number
@BelongsTo(() => VideoModel, {
2017-11-15 16:56:21 +00:00
foreignKey: {
2017-12-12 16:53:50 +00:00
allowNull: false
2017-11-15 16:56:21 +00:00
},
onDelete: 'cascade'
})
2017-12-12 16:53:50 +00:00
Video: VideoModel
2017-12-14 16:38:41 +00:00
static load (actorId: number, videoId: number, t: Sequelize.Transaction) {
return VideoShareModel.scope(ScopeNames.WITH_ACTOR).findOne({
2017-12-12 16:53:50 +00:00
where: {
2017-12-14 16:38:41 +00:00
actorId,
2017-12-12 16:53:50 +00:00
videoId
},
transaction: t
})
2017-11-16 14:55:01 +00:00
}
2017-12-14 16:38:41 +00:00
static loadActorsByShare (videoId: number, t: Sequelize.Transaction) {
2017-12-12 16:53:50 +00:00
const query = {
where: {
videoId
},
include: [
{
2017-12-14 16:38:41 +00:00
model: ActorModel,
2017-12-12 16:53:50 +00:00
required: true
}
],
transaction: t
}
2017-12-14 09:07:57 +00:00
return VideoShareModel.scope(ScopeNames.FULL).findAll(query)
2017-12-14 16:38:41 +00:00
.then(res => res.map(r => r.Actor))
2017-12-12 16:53:50 +00:00
}
2018-01-03 15:38:50 +00:00
static loadActorsByVideoOwner (actorOwnerId: number, t: Sequelize.Transaction) {
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
}
}
]
}
]
}
],
transaction: t
}
return VideoShareModel.scope(ScopeNames.FULL).findAll(query)
.then(res => res.map(r => r.Actor))
}
2017-11-16 14:55:01 +00:00
}