Add ability to search available plugins

This commit is contained in:
Chocobozzz
2019-07-16 11:33:22 +02:00
committed by Chocobozzz
parent 503c6f440a
commit 6702a1b2cc
27 changed files with 513 additions and 81 deletions

View File

@@ -0,0 +1,64 @@
import { doRequest } from '../../helpers/requests'
import { CONFIG } from '../../initializers/config'
import {
PeertubePluginLatestVersionRequest,
PeertubePluginLatestVersionResponse
} from '../../../shared/models/plugins/peertube-plugin-latest-version.model'
import { PeertubePluginIndexList } from '../../../shared/models/plugins/peertube-plugin-index-list.model'
import { ResultList } from '../../../shared/models'
import { PeerTubePluginIndex } from '../../../shared/models/plugins/peertube-plugin-index.model'
import { PluginModel } from '../../models/server/plugin'
import { PluginManager } from './plugin-manager'
import { logger } from '../../helpers/logger'
const packageJSON = require('../../../../package.json')
async function listAvailablePluginsFromIndex (options: PeertubePluginIndexList) {
const { start = 0, count = 20, search, sort = 'npmName', pluginType } = options
const qs: PeertubePluginIndexList = {
start,
count,
sort,
pluginType,
search,
currentPeerTubeEngine: packageJSON.version
}
const uri = CONFIG.PLUGINS.INDEX.URL + '/api/v1/plugins'
const { body } = await doRequest({ uri, qs, json: true })
logger.debug('Got result from PeerTube index.', { body })
await addInstanceInformation(body)
return body as ResultList<PeerTubePluginIndex>
}
async function addInstanceInformation (result: ResultList<PeerTubePluginIndex>) {
for (const d of result.data) {
d.installed = PluginManager.Instance.isRegistered(d.npmName)
d.name = PluginModel.normalizePluginName(d.npmName)
}
return result
}
async function getLatestPluginsVersion (npmNames: string[]): Promise<PeertubePluginLatestVersionResponse> {
const bodyRequest: PeertubePluginLatestVersionRequest = {
npmNames,
currentPeerTubeEngine: packageJSON.version
}
const uri = CONFIG.PLUGINS.INDEX.URL + '/api/v1/plugins/latest-version'
const { body } = await doRequest({ uri, body: bodyRequest })
return body
}
export {
listAvailablePluginsFromIndex,
getLatestPluginsVersion
}

View File

@@ -55,6 +55,10 @@ export class PluginManager {
// ###################### Getters ######################
isRegistered (npmName: string) {
return !!this.getRegisteredPluginOrTheme(npmName)
}
getRegisteredPluginOrTheme (npmName: string) {
return this.registeredPlugins[npmName]
}

View File

@@ -0,0 +1,60 @@
import { logger } from '../../helpers/logger'
import { AbstractScheduler } from './abstract-scheduler'
import { retryTransactionWrapper } from '../../helpers/database-utils'
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants'
import { CONFIG } from '../../initializers/config'
import { PluginModel } from '../../models/server/plugin'
import { chunk } from 'lodash'
import { getLatestPluginsVersion } from '../plugins/plugin-index'
import { compareSemVer } from '../../../shared/core-utils/miscs/miscs'
export class PluginsCheckScheduler extends AbstractScheduler {
private static instance: AbstractScheduler
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.checkPlugins
private constructor () {
super()
}
protected async internalExecute () {
return retryTransactionWrapper(this.checkLatestPluginsVersion.bind(this))
}
private async checkLatestPluginsVersion () {
if (CONFIG.PLUGINS.INDEX.ENABLED === false) return
logger.info('Checkin latest plugins version.')
const plugins = await PluginModel.listInstalled()
// Process 10 plugins in 1 HTTP request
const chunks = chunk(plugins, 10)
for (const chunk of chunks) {
// Find plugins according to their npm name
const pluginIndex: { [npmName: string]: PluginModel} = {}
for (const plugin of chunk) {
pluginIndex[PluginModel.buildNpmName(plugin.name, plugin.type)] = plugin
}
const npmNames = Object.keys(pluginIndex)
const results = await getLatestPluginsVersion(npmNames)
for (const result of results) {
const plugin = pluginIndex[result.npmName]
if (!result.latestVersion) continue
if (plugin.latestVersion !== result.latestVersion && compareSemVer(plugin.latestVersion, result.latestVersion) < 0) {
plugin.latestVersion = result.latestVersion
await plugin.save()
}
}
}
}
static get Instance () {
return this.instance || (this.instance = new this())
}
}