mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
Reorganize plugin models
This commit is contained in:
parent
2b02c520e6
commit
428ccb8b7a
48 changed files with 113 additions and 112 deletions
|
@ -1,7 +1,7 @@
|
|||
import { ServerActionHookName, ServerFilterHookName } from '../../../shared/models/plugins/server-hook.model'
|
||||
import { PluginManager } from './plugin-manager'
|
||||
import { logger } from '../../helpers/logger'
|
||||
import * as Bluebird from 'bluebird'
|
||||
import { ServerActionHookName, ServerFilterHookName } from '../../../shared/models'
|
||||
import { logger } from '../../helpers/logger'
|
||||
import { PluginManager } from './plugin-manager'
|
||||
|
||||
type PromiseFunction <U, T> = (params: U) => Promise<T> | Bluebird<T>
|
||||
type RawFunction <U, T> = (params: U) => T
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
import { sanitizeUrl } from '@server/helpers/core-utils'
|
||||
import { ResultList } from '../../../shared/models'
|
||||
import { PeertubePluginIndexList } from '../../../shared/models/plugins/peertube-plugin-index-list.model'
|
||||
import { PeerTubePluginIndex } from '../../../shared/models/plugins/peertube-plugin-index.model'
|
||||
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'
|
||||
import {
|
||||
PeerTubePluginIndex,
|
||||
PeertubePluginIndexList,
|
||||
PeertubePluginLatestVersionRequest,
|
||||
PeertubePluginLatestVersionResponse
|
||||
} from '../../../shared/models/plugins/peertube-plugin-latest-version.model'
|
||||
import { logger } from '../../helpers/logger'
|
||||
import { doJSONRequest } from '../../helpers/requests'
|
||||
import { CONFIG } from '../../initializers/config'
|
||||
import { PEERTUBE_VERSION } from '../../initializers/constants'
|
||||
import { PluginModel } from '../../models/server/plugin'
|
||||
PeertubePluginLatestVersionResponse,
|
||||
ResultList
|
||||
} from '@shared/models'
|
||||
import { PluginManager } from './plugin-manager'
|
||||
|
||||
async function listAvailablePluginsFromIndex (options: PeertubePluginIndexList) {
|
||||
|
|
|
@ -4,16 +4,11 @@ import { createReadStream, createWriteStream } from 'fs'
|
|||
import { ensureDir, outputFile, readJSON } from 'fs-extra'
|
||||
import { basename, join } from 'path'
|
||||
import { MOAuthTokenUser, MUser } from '@server/types/models'
|
||||
import { RegisterServerHookOptions } from '@shared/models/plugins/register-server-hook.model'
|
||||
import { getCompleteLocale } from '@shared/core-utils'
|
||||
import { ClientScript, PluginPackageJson, PluginTranslation, PluginTranslationPaths, RegisterServerHookOptions } from '@shared/models'
|
||||
import { getHookType, internalRunHook } from '../../../shared/core-utils/plugins/hooks'
|
||||
import {
|
||||
ClientScript,
|
||||
PluginPackageJson,
|
||||
PluginTranslationPaths as PackagePluginTranslations
|
||||
} from '../../../shared/models/plugins/plugin-package-json.model'
|
||||
import { PluginTranslation } from '../../../shared/models/plugins/plugin-translation.model'
|
||||
import { PluginType } from '../../../shared/models/plugins/plugin.type'
|
||||
import { ServerHook, ServerHookName } from '../../../shared/models/plugins/server-hook.model'
|
||||
import { ServerHook, ServerHookName } from '../../../shared/models/plugins/server/server-hook.model'
|
||||
import { isLibraryCodeValid, isPackageJSONValid } from '../../helpers/custom-validators/plugins'
|
||||
import { logger } from '../../helpers/logger'
|
||||
import { CONFIG } from '../../initializers/config'
|
||||
|
@ -23,7 +18,6 @@ import { PluginLibrary, RegisterServerAuthExternalOptions, RegisterServerAuthPas
|
|||
import { ClientHtml } from '../client-html'
|
||||
import { RegisterHelpers } from './register-helpers'
|
||||
import { installNpmPlugin, installNpmPluginFromDisk, removeNpmPlugin } from './yarn'
|
||||
import { getCompleteLocale } from '@shared/core-utils'
|
||||
|
||||
export interface RegisteredPlugin {
|
||||
npmName: string
|
||||
|
@ -443,7 +437,7 @@ export class PluginManager implements ServerHook {
|
|||
|
||||
// ###################### Translations ######################
|
||||
|
||||
private async addTranslations (plugin: PluginModel, npmName: string, translationPaths: PackagePluginTranslations) {
|
||||
private async addTranslations (plugin: PluginModel, npmName: string, translationPaths: PluginTranslationPaths) {
|
||||
for (const locale of Object.keys(translationPaths)) {
|
||||
const path = translationPaths[locale]
|
||||
const json = await readJSON(join(this.getPluginPath(plugin.name, plugin.type), path))
|
||||
|
|
|
@ -26,9 +26,9 @@ import {
|
|||
PluginVideoLicenceManager,
|
||||
PluginVideoPrivacyManager,
|
||||
RegisterServerHookOptions,
|
||||
RegisterServerSettingOptions
|
||||
RegisterServerSettingOptions,
|
||||
serverHookObject
|
||||
} from '@shared/models'
|
||||
import { serverHookObject } from '@shared/models/plugins/server-hook.model'
|
||||
import { VideoTranscodingProfilesManager } from '../transcoding/video-transcoding-profiles'
|
||||
import { buildPluginHelpers } from './plugin-helpers-builder'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue