Chocobozzz/PeerTube

View on GitHub
server/core/lib/schedulers/peertube-version-check-scheduler.ts

Summary

Maintainability
A
0 mins
Test Coverage
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, { preventSSRF: false })

    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())
  }
}