123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- import { AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
- import { AccountModel } from '../account/account'
- import { ScopeNames as VideoScopeNames, VideoModel } from './video'
- import { VideoChangeOwnership, VideoChangeOwnershipStatus } from '../../../shared/models/videos'
- import { getSort } from '../utils'
- enum ScopeNames {
- WITH_ACCOUNTS = 'WITH_ACCOUNTS',
- WITH_VIDEO = 'WITH_VIDEO'
- }
- @Table({
- tableName: 'videoChangeOwnership',
- indexes: [
- {
- fields: [ 'videoId' ]
- },
- {
- fields: [ 'initiatorAccountId' ]
- },
- {
- fields: [ 'nextOwnerAccountId' ]
- }
- ]
- })
- @Scopes(() => ({
- [ScopeNames.WITH_ACCOUNTS]: {
- include: [
- {
- model: AccountModel,
- as: 'Initiator',
- required: true
- },
- {
- model: AccountModel,
- as: 'NextOwner',
- required: true
- }
- ]
- },
- [ScopeNames.WITH_VIDEO]: {
- include: [
- {
- model: VideoModel.scope([ VideoScopeNames.WITH_THUMBNAILS, VideoScopeNames.WITH_FILES ]),
- required: true
- }
- ]
- }
- }))
- export class VideoChangeOwnershipModel extends Model<VideoChangeOwnershipModel> {
- @CreatedAt
- createdAt: Date
- @UpdatedAt
- updatedAt: Date
- @AllowNull(false)
- @Column
- status: VideoChangeOwnershipStatus
- @ForeignKey(() => AccountModel)
- @Column
- initiatorAccountId: number
- @BelongsTo(() => AccountModel, {
- foreignKey: {
- name: 'initiatorAccountId',
- allowNull: false
- },
- onDelete: 'cascade'
- })
- Initiator: AccountModel
- @ForeignKey(() => AccountModel)
- @Column
- nextOwnerAccountId: number
- @BelongsTo(() => AccountModel, {
- foreignKey: {
- name: 'nextOwnerAccountId',
- allowNull: false
- },
- onDelete: 'cascade'
- })
- NextOwner: AccountModel
- @ForeignKey(() => VideoModel)
- @Column
- videoId: number
- @BelongsTo(() => VideoModel, {
- foreignKey: {
- allowNull: false
- },
- onDelete: 'cascade'
- })
- Video: VideoModel
- static listForApi (nextOwnerId: number, start: number, count: number, sort: string) {
- const query = {
- offset: start,
- limit: count,
- order: getSort(sort),
- where: {
- nextOwnerAccountId: nextOwnerId
- }
- }
- return Promise.all([
- VideoChangeOwnershipModel.scope(ScopeNames.WITH_ACCOUNTS).count(query),
- VideoChangeOwnershipModel.scope([ ScopeNames.WITH_ACCOUNTS, ScopeNames.WITH_VIDEO ]).findAll(query)
- ]).then(([ count, rows ]) => ({ total: count, data: rows }))
- }
- static load (id: number) {
- return VideoChangeOwnershipModel.scope([ ScopeNames.WITH_ACCOUNTS, ScopeNames.WITH_VIDEO ])
- .findByPk(id)
- }
- toFormattedJSON (): VideoChangeOwnership {
- return {
- id: this.id,
- status: this.status,
- initiatorAccount: this.Initiator.toFormattedJSON(),
- nextOwnerAccount: this.NextOwner.toFormattedJSON(),
- video: {
- id: this.Video.id,
- uuid: this.Video.uuid,
- url: this.Video.url,
- name: this.Video.name
- },
- createdAt: this.createdAt
- }
- }
- }
|