Init commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
import { doJSONRequest } from '@server/helpers/requests.js'
|
||||
import { ApplicationModel } from '@server/models/application/application.js'
|
||||
import { compareSemVer } from '@peertube/peertube-core-utils'
|
||||
import { JoinPeerTubeVersions } from '@peertube/peertube-models'
|
||||
import { logger, loggerTagsFactory } from '../../helpers/logger.js'
|
||||
import { CONFIG } from '../../initializers/config.js'
|
||||
import { PEERTUBE_VERSION, SCHEDULER_INTERVALS_MS } from '../../initializers/constants.js'
|
||||
import { Notifier } from '../notifier/index.js'
|
||||
import { AbstractScheduler } from './abstract-scheduler.js'
|
||||
|
||||
const lTags = loggerTagsFactory('schedulers')
|
||||
|
||||
export class PeerTubeVersionCheckScheduler extends AbstractScheduler {
|
||||
private static instance: AbstractScheduler
|
||||
|
||||
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.CHECK_PEERTUBE_VERSION
|
||||
|
||||
private constructor () {
|
||||
super({ randomRunOnEnable: true })
|
||||
}
|
||||
|
||||
protected async internalExecute () {
|
||||
return this.checkLatestVersion()
|
||||
}
|
||||
|
||||
private async checkLatestVersion () {
|
||||
if (CONFIG.PEERTUBE.CHECK_LATEST_VERSION.ENABLED === false) return
|
||||
|
||||
logger.info('Checking latest PeerTube version.', lTags())
|
||||
|
||||
const { body } = await doJSONRequest<JoinPeerTubeVersions>(CONFIG.PEERTUBE.CHECK_LATEST_VERSION.URL, { preventSSRF: false })
|
||||
|
||||
if (!body?.peertube?.latestVersion) {
|
||||
logger.warn('Cannot check latest PeerTube version: body is invalid.', { body, ...lTags() })
|
||||
return
|
||||
}
|
||||
|
||||
const latestVersion = body.peertube.latestVersion
|
||||
const application = await ApplicationModel.load()
|
||||
|
||||
// Already checked this version
|
||||
if (application.latestPeerTubeVersion === latestVersion) return
|
||||
|
||||
if (compareSemVer(PEERTUBE_VERSION, latestVersion) < 0) {
|
||||
application.latestPeerTubeVersion = latestVersion
|
||||
await application.save()
|
||||
|
||||
Notifier.Instance.notifyOfNewPeerTubeVersion(application, latestVersion)
|
||||
}
|
||||
}
|
||||
|
||||
static get Instance () {
|
||||
return this.instance || (this.instance = new this())
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user