PeerTube/server/core/models/application/application.ts

80 lines
1.7 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import memoizee from 'memoizee'
2024-02-22 10:12:04 +01:00
import { AllowNull, Column, Default, DefaultScope, HasOne, IsInt, Table } from 'sequelize-typescript'
import { getNodeABIVersion } from '@server/helpers/version.js'
import { AccountModel } from '../account/account.js'
2024-02-22 10:12:04 +01:00
import { SequelizeModel } from '../shared/index.js'
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
})
2024-02-22 10:12:04 +01:00
export class ApplicationModel extends SequelizeModel<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
@AllowNull(false)
@Column
nodeVersion: string
@AllowNull(false)
@Column
nodeABIVersion: number
2017-12-14 17:38:41 +01:00
@HasOne(() => AccountModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
Account: Awaited<AccountModel>
2017-12-14 17:38:41 +01:00
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()
}
static async nodeABIChanged () {
const application = await this.load()
return application.nodeABIVersion !== getNodeABIVersion()
}
static async updateNodeVersions () {
const application = await this.load()
application.nodeABIVersion = getNodeABIVersion()
application.nodeVersion = process.version
2022-08-03 15:16:56 +02:00
await application.save()
}
}