aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/plugins/plugin-index.ts
blob: 4a8a90ec8fe47bb3797811036a811b52f1b67f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
}