PeerTube/server/models/application/application.ts

56 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-05-12 14:09:04 +02:00
import * as memoizee from 'memoizee'
2017-12-14 17:38:41 +01:00
import { AllowNull, Column, Default, DefaultScope, HasOne, IsInt, Model, Table } from 'sequelize-typescript'
2021-05-12 14:09:04 +02:00
import { AttributesOnly } from '@shared/core-utils'
2017-12-14 17:38:41 +01:00
import { AccountModel } from '../account/account'
2020-04-23 09:32:53 +02:00
export const getServerActor = memoizee(async function () {
const application = await ApplicationModel.load()
if (!application) throw Error('Could not load Application from database.')
const actor = application.Account.Actor
actor.Account = application.Account
return actor
}, { promise: true })
2017-12-12 17:53:50 +01:00
2019-04-23 09:50:57 +02:00
@DefaultScope(() => ({
2017-12-14 17:38:41 +01:00
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel,
2017-12-14 17:38:41 +01:00
required: true
}
]
2019-04-23 09:50:57 +02:00
}))
2017-12-12 17:53:50 +01:00
@Table({
2019-04-26 09:16:43 +02:00
tableName: 'application',
timestamps: false
2017-12-12 17:53:50 +01:00
})
2021-05-12 14:09:04 +02:00
export class ApplicationModel extends Model<Partial<AttributesOnly<ApplicationModel>>> {
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Default(0)
@IsInt
@Column
migrationVersion: number
2021-03-11 16:54:52 +01:00
@AllowNull(true)
@Column
latestPeerTubeVersion: string
2017-12-14 17:38:41 +01:00
@HasOne(() => AccountModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
Account: AccountModel
2017-12-12 17:53:50 +01:00
static countTotal () {
return ApplicationModel.count()
}
2017-12-14 17:38:41 +01:00
static load () {
return ApplicationModel.findOne()
}
}