You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
TypeScript
71 lines
1.4 KiB
TypeScript
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Table, UpdatedAt } from 'sequelize-typescript'
|
|||
import { CustomPage } from '@peertube/peertube-models'
|
|||
import { ActorModel } from '../actor/actor.js'
|
|||
import { getServerActor } from '../application/application.js'
|
|||
import { SequelizeModel } from '../shared/index.js'
|
|||
|
|||
@Table({
|
|||
tableName: 'actorCustomPage',
|
|||
indexes: [
|
|||
{
|
|||
fields: [ 'actorId', 'type' ],
|
|||
unique: true
|
|||
}
|
|||
]
|
|||
})
|
|||
export class ActorCustomPageModel extends SequelizeModel<ActorCustomPageModel> {
|
|||
|
|||
@AllowNull(true)
|
|||
@Column(DataType.TEXT)
|
|||
content: string
|
|||
|
|||
@AllowNull(false)
|
|||
@Column
|
|||
type: 'homepage'
|
|||
|
|||
@CreatedAt
|
|||
createdAt: Date
|
|||
|
|||
@UpdatedAt
|
|||
updatedAt: Date
|
|||
|
|||
@ForeignKey(() => ActorModel)
|
|||
@Column
|
|||
actorId: number
|
|||
|
|||
@BelongsTo(() => ActorModel, {
|
|||
foreignKey: {
|
|||
name: 'actorId',
|
|||
allowNull: false
|
|||
},
|
|||
onDelete: 'cascade'
|
|||
})
|
|||
Actor: Awaited<ActorModel>
|
|||
|
|||
static async updateInstanceHomepage (content: string) {
|
|||
const serverActor = await getServerActor()
|
|||
|
|||
return ActorCustomPageModel.upsert({
|
|||
content,
|
|||
actorId: serverActor.id,
|
|||
type: 'homepage'
|
|||
})
|
|||
}
|
|||
|
|||
static async loadInstanceHomepage () {
|
|||
const serverActor = await getServerActor()
|
|||
|
|||
return ActorCustomPageModel.findOne({
|
|||
where: {
|
|||
actorId: serverActor.id
|
|||
}
|
|||
})
|
|||
}
|
|||
|
|||
toFormattedJSON (): CustomPage {
|
|||
return {
|
|||
content: this.content
|
|||
}
|
|||
}
|
|||
}
|