mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
server/server -> server/core
This commit is contained in:
parent
114327d4ce
commit
5a3d0650c9
838 changed files with 111 additions and 111 deletions
|
@ -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 } 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'
|
||||
|
||||
export class PeerTubeVersionCheckScheduler extends AbstractScheduler {
|
||||
|
||||
private static instance: AbstractScheduler
|
||||
|
||||
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.CHECK_PEERTUBE_VERSION
|
||||
|
||||
private constructor () {
|
||||
super()
|
||||
}
|
||||
|
||||
protected async internalExecute () {
|
||||
return this.checkLatestVersion()
|
||||
}
|
||||
|
||||
private async checkLatestVersion () {
|
||||
if (CONFIG.PEERTUBE.CHECK_LATEST_VERSION.ENABLED === false) return
|
||||
|
||||
logger.info('Checking latest PeerTube version.')
|
||||
|
||||
const { body } = await doJSONRequest<JoinPeerTubeVersions>(CONFIG.PEERTUBE.CHECK_LATEST_VERSION.URL)
|
||||
|
||||
if (!body?.peertube?.latestVersion) {
|
||||
logger.warn('Cannot check latest PeerTube version: body is invalid.', { body })
|
||||
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())
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue