2021-05-12 08:09:04 -04:00
|
|
|
import { DestroyOptions, Op, Transaction } from 'sequelize'
|
2018-12-17 09:52:38 -05:00
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, IsInt, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
2021-05-12 08:09:04 -04:00
|
|
|
import { MUserAccountId, MUserId } from '@server/types/models'
|
2021-12-16 12:04:16 -05:00
|
|
|
import { AttributesOnly } from '@shared/typescript-utils'
|
2018-10-05 05:15:06 -04:00
|
|
|
import { VideoModel } from '../video/video'
|
|
|
|
import { UserModel } from './user'
|
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'userVideoHistory',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'userId', 'videoId' ],
|
|
|
|
unique: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'userId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoId' ]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
2021-05-12 08:09:04 -04:00
|
|
|
export class UserVideoHistoryModel extends Model<Partial<AttributesOnly<UserVideoHistoryModel>>> {
|
2018-10-05 05:15:06 -04: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
|
2018-12-17 09:52:38 -05:00
|
|
|
|
2022-01-10 10:40:56 -05:00
|
|
|
static listForApi (user: MUserAccountId, start: number, count: number, search?: string) {
|
2018-12-17 09:52:38 -05:00
|
|
|
return VideoModel.listForApi({
|
|
|
|
start,
|
|
|
|
count,
|
2021-01-13 03:16:15 -05:00
|
|
|
search,
|
2020-03-09 09:44:44 -04:00
|
|
|
sort: '-"userVideoHistory"."updatedAt"',
|
2018-12-17 09:52:38 -05:00
|
|
|
nsfw: null, // All
|
2022-01-10 10:40:56 -05:00
|
|
|
displayOnlyForFollower: null,
|
2018-12-17 09:52:38 -05:00
|
|
|
user,
|
|
|
|
historyOfUser: user
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-01-18 05:23:41 -05:00
|
|
|
static removeUserHistoryElement (user: MUserId, videoId: number) {
|
|
|
|
const query: DestroyOptions = {
|
|
|
|
where: {
|
|
|
|
userId: user.id,
|
|
|
|
videoId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserVideoHistoryModel.destroy(query)
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
static removeUserHistoryBefore (user: MUserId, beforeDate: string, t: Transaction) {
|
2018-12-17 09:52:38 -05:00
|
|
|
const query: DestroyOptions = {
|
|
|
|
where: {
|
|
|
|
userId: user.id
|
|
|
|
},
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
|
|
|
if (beforeDate) {
|
2019-04-18 05:28:17 -04:00
|
|
|
query.where['updatedAt'] = {
|
2018-12-17 09:52:38 -05:00
|
|
|
[Op.lt]: beforeDate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserVideoHistoryModel.destroy(query)
|
|
|
|
}
|
2019-04-11 09:38:53 -04:00
|
|
|
|
|
|
|
static removeOldHistory (beforeDate: string) {
|
|
|
|
const query: DestroyOptions = {
|
|
|
|
where: {
|
|
|
|
updatedAt: {
|
|
|
|
[Op.lt]: beforeDate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserVideoHistoryModel.destroy(query)
|
|
|
|
}
|
2018-10-05 05:15:06 -04:00
|
|
|
}
|