2021-03-08 08:24:11 -05:00
|
|
|
import { sanitizeUrl } from '@server/helpers/core-utils'
|
2021-05-11 06:04:47 -04:00
|
|
|
import { logger } from '@server/helpers/logger'
|
|
|
|
import { doJSONRequest } from '@server/helpers/requests'
|
|
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
import { PEERTUBE_VERSION } from '@server/initializers/constants'
|
|
|
|
import { PluginModel } from '@server/models/server/plugin'
|
2019-07-16 05:33:22 -04:00
|
|
|
import {
|
2021-05-11 06:04:47 -04:00
|
|
|
PeerTubePluginIndex,
|
|
|
|
PeertubePluginIndexList,
|
2019-07-16 05:33:22 -04:00
|
|
|
PeertubePluginLatestVersionRequest,
|
2021-05-11 06:04:47 -04:00
|
|
|
PeertubePluginLatestVersionResponse,
|
|
|
|
ResultList
|
|
|
|
} from '@shared/models'
|
2021-03-08 08:24:11 -05:00
|
|
|
import { PluginManager } from './plugin-manager'
|
2019-07-16 05:33:22 -04:00
|
|
|
|
|
|
|
async function listAvailablePluginsFromIndex (options: PeertubePluginIndexList) {
|
|
|
|
const { start = 0, count = 20, search, sort = 'npmName', pluginType } = options
|
|
|
|
|
2021-03-08 08:24:11 -05:00
|
|
|
const searchParams: PeertubePluginIndexList & Record<string, string | number> = {
|
2019-07-16 05:33:22 -04:00
|
|
|
start,
|
|
|
|
count,
|
|
|
|
sort,
|
|
|
|
pluginType,
|
|
|
|
search,
|
2019-07-19 08:36:04 -04:00
|
|
|
currentPeerTubeEngine: options.currentPeerTubeEngine || PEERTUBE_VERSION
|
2019-07-16 05:33:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const uri = CONFIG.PLUGINS.INDEX.URL + '/api/v1/plugins'
|
|
|
|
|
2019-07-16 08:52:24 -04:00
|
|
|
try {
|
2021-03-08 08:24:11 -05:00
|
|
|
const { body } = await doJSONRequest<any>(uri, { searchParams })
|
2019-07-16 05:33:22 -04:00
|
|
|
|
2019-07-16 08:52:24 -04:00
|
|
|
logger.debug('Got result from PeerTube index.', { body })
|
2019-07-16 05:33:22 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
addInstanceInformation(body)
|
2019-07-16 05:33:22 -04:00
|
|
|
|
2019-07-16 08:52:24 -04:00
|
|
|
return body as ResultList<PeerTubePluginIndex>
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot list available plugins from index %s.', uri, { err })
|
|
|
|
return undefined
|
|
|
|
}
|
2019-07-16 05:33:22 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
function addInstanceInformation (result: ResultList<PeerTubePluginIndex>) {
|
2019-07-16 05:33:22 -04:00
|
|
|
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,
|
2019-07-17 04:03:55 -04:00
|
|
|
currentPeerTubeEngine: PEERTUBE_VERSION
|
2019-07-16 05:33:22 -04:00
|
|
|
}
|
|
|
|
|
2020-05-29 10:16:24 -04:00
|
|
|
const uri = sanitizeUrl(CONFIG.PLUGINS.INDEX.URL) + '/api/v1/plugins/latest-version'
|
2019-07-16 05:33:22 -04:00
|
|
|
|
2021-03-08 08:24:11 -05:00
|
|
|
const options = {
|
|
|
|
json: bodyRequest,
|
|
|
|
method: 'POST' as 'POST'
|
|
|
|
}
|
|
|
|
const { body } = await doJSONRequest<PeertubePluginLatestVersionResponse>(uri, options)
|
2019-07-16 05:33:22 -04:00
|
|
|
|
|
|
|
return body
|
|
|
|
}
|
|
|
|
|
2021-04-12 04:10:48 -04:00
|
|
|
async function getLatestPluginVersion (npmName: string) {
|
|
|
|
const results = await getLatestPluginsVersion([ npmName ])
|
|
|
|
|
|
|
|
if (Array.isArray(results) === false || results.length !== 1) {
|
|
|
|
logger.warn('Cannot get latest supported plugin version of %s.', npmName)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
return results[0].latestVersion
|
|
|
|
}
|
|
|
|
|
2019-07-16 05:33:22 -04:00
|
|
|
export {
|
|
|
|
listAvailablePluginsFromIndex,
|
2021-04-12 04:10:48 -04:00
|
|
|
getLatestPluginVersion,
|
2019-07-16 05:33:22 -04:00
|
|
|
getLatestPluginsVersion
|
|
|
|
}
|