PeerTube/server/models/user/user-video-history.ts

101 lines
2.0 KiB
TypeScript
Raw Normal View History

import { AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, IsInt, Model, Table, UpdatedAt } from 'sequelize-typescript'
2018-10-05 11:15:06 +02:00
import { VideoModel } from '../video/video'
import { UserModel } from './user'
2019-08-15 11:53:26 +02:00
import { DestroyOptions, Op, Transaction } from 'sequelize'
2020-06-18 10:45:25 +02:00
import { MUserAccountId, MUserId } from '@server/types/models'
2018-10-05 11:15:06 +02:00
@Table({
tableName: 'userVideoHistory',
indexes: [
{
fields: [ 'userId', 'videoId' ],
unique: true
},
{
fields: [ 'userId' ]
},
{
fields: [ 'videoId' ]
}
]
})
2020-12-08 14:30:29 +01:00
export class UserVideoHistoryModel extends Model {
2018-10-05 11:15:06 +02:00
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@AllowNull(false)
@IsInt
@Column
currentTime: number
@ForeignKey(() => VideoModel)
@Column
videoId: number
@BelongsTo(() => VideoModel, {
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
Video: VideoModel
@ForeignKey(() => UserModel)
@Column
userId: number
@BelongsTo(() => UserModel, {
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
User: UserModel
static listForApi (user: MUserAccountId, start: number, count: number, search?: string) {
return VideoModel.listForApi({
start,
count,
search,
2020-03-09 14:44:44 +01:00
sort: '-"userVideoHistory"."updatedAt"',
nsfw: null, // All
includeLocalVideos: true,
withFiles: false,
user,
historyOfUser: user
})
}
2019-08-15 11:53:26 +02:00
static removeUserHistoryBefore (user: MUserId, beforeDate: string, t: Transaction) {
const query: DestroyOptions = {
where: {
userId: user.id
},
transaction: t
}
if (beforeDate) {
2019-04-18 11:28:17 +02:00
query.where['updatedAt'] = {
[Op.lt]: beforeDate
}
}
return UserVideoHistoryModel.destroy(query)
}
static removeOldHistory (beforeDate: string) {
const query: DestroyOptions = {
where: {
updatedAt: {
[Op.lt]: beforeDate
}
}
}
return UserVideoHistoryModel.destroy(query)
}
2018-10-05 11:15:06 +02:00
}