2019-07-05 07:54:32 -04:00
|
|
|
import { exists, isArray, isSafePath } from './misc'
|
|
|
|
import * as validator from 'validator'
|
|
|
|
import { PluginType } from '../../../shared/models/plugins/plugin.type'
|
|
|
|
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
|
|
|
|
import { PluginPackageJson } from '../../../shared/models/plugins/plugin-package-json.model'
|
|
|
|
import { isUrlValid } from './activitypub/misc'
|
|
|
|
|
|
|
|
const PLUGINS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.PLUGINS
|
|
|
|
|
|
|
|
function isPluginTypeValid (value: any) {
|
|
|
|
return exists(value) && validator.isInt('' + value) && PluginType[value] !== undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
function isPluginNameValid (value: string) {
|
|
|
|
return exists(value) &&
|
|
|
|
validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
|
|
|
|
validator.matches(value, /^[a-z\-]+$/)
|
|
|
|
}
|
|
|
|
|
2019-07-05 09:28:49 -04:00
|
|
|
function isNpmPluginNameValid (value: string) {
|
|
|
|
return exists(value) &&
|
|
|
|
validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
|
|
|
|
validator.matches(value, /^[a-z\-]+$/) &&
|
|
|
|
(value.startsWith('peertube-plugin-') || value.startsWith('peertube-theme-'))
|
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
function isPluginDescriptionValid (value: string) {
|
|
|
|
return exists(value) && validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.DESCRIPTION)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isPluginVersionValid (value: string) {
|
|
|
|
if (!exists(value)) return false
|
|
|
|
|
|
|
|
const parts = (value + '').split('.')
|
|
|
|
|
|
|
|
return parts.length === 3 && parts.every(p => validator.isInt(p))
|
|
|
|
}
|
|
|
|
|
|
|
|
function isPluginEngineValid (engine: any) {
|
|
|
|
return exists(engine) && exists(engine.peertube)
|
|
|
|
}
|
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
function isPluginHomepage (value: string) {
|
|
|
|
return isUrlValid(value)
|
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
function areStaticDirectoriesValid (staticDirs: any) {
|
2019-07-05 07:54:32 -04:00
|
|
|
if (!exists(staticDirs) || typeof staticDirs !== 'object') return false
|
|
|
|
|
|
|
|
for (const key of Object.keys(staticDirs)) {
|
|
|
|
if (!isSafePath(staticDirs[key])) return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
function areClientScriptsValid (clientScripts: any[]) {
|
2019-07-05 07:54:32 -04:00
|
|
|
return isArray(clientScripts) &&
|
|
|
|
clientScripts.every(c => {
|
|
|
|
return isSafePath(c.script) && isArray(c.scopes)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
function areTranslationPathsValid (translations: any) {
|
|
|
|
if (!exists(translations) || typeof translations !== 'object') return false
|
|
|
|
|
|
|
|
for (const key of Object.keys(translations)) {
|
|
|
|
if (!isSafePath(translations[key])) return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
function areCSSPathsValid (css: any[]) {
|
2019-07-05 07:54:32 -04:00
|
|
|
return isArray(css) && css.every(c => isSafePath(c))
|
|
|
|
}
|
|
|
|
|
2019-07-15 09:41:56 -04:00
|
|
|
function isThemeNameValid (name: string) {
|
|
|
|
return isPluginNameValid(name)
|
2019-07-09 05:45:19 -04:00
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
function isPackageJSONValid (packageJSON: PluginPackageJson, pluginType: PluginType) {
|
2019-07-05 09:28:49 -04:00
|
|
|
return isNpmPluginNameValid(packageJSON.name) &&
|
2019-07-05 07:54:32 -04:00
|
|
|
isPluginDescriptionValid(packageJSON.description) &&
|
|
|
|
isPluginEngineValid(packageJSON.engine) &&
|
2019-07-11 08:40:19 -04:00
|
|
|
isPluginHomepage(packageJSON.homepage) &&
|
2019-07-05 07:54:32 -04:00
|
|
|
exists(packageJSON.author) &&
|
|
|
|
isUrlValid(packageJSON.bugs) &&
|
|
|
|
(pluginType === PluginType.THEME || isSafePath(packageJSON.library)) &&
|
2019-07-26 08:44:50 -04:00
|
|
|
areStaticDirectoriesValid(packageJSON.staticDirs) &&
|
|
|
|
areCSSPathsValid(packageJSON.css) &&
|
|
|
|
areClientScriptsValid(packageJSON.clientScripts) &&
|
|
|
|
areTranslationPathsValid(packageJSON.translations)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function isLibraryCodeValid (library: any) {
|
|
|
|
return typeof library.register === 'function'
|
|
|
|
&& typeof library.unregister === 'function'
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
isPluginTypeValid,
|
|
|
|
isPackageJSONValid,
|
2019-07-15 09:41:56 -04:00
|
|
|
isThemeNameValid,
|
2019-07-11 08:40:19 -04:00
|
|
|
isPluginHomepage,
|
2019-07-05 07:54:32 -04:00
|
|
|
isPluginVersionValid,
|
|
|
|
isPluginNameValid,
|
|
|
|
isPluginDescriptionValid,
|
2019-07-05 09:28:49 -04:00
|
|
|
isLibraryCodeValid,
|
|
|
|
isNpmPluginNameValid
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|