2019-07-05 07:54:32 -04:00
|
|
|
import { exists, isArray, isSafePath } from './misc'
|
2020-01-07 08:56:07 -05:00
|
|
|
import validator from 'validator'
|
2019-07-05 07:54:32 -04:00
|
|
|
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) {
|
2020-08-06 08:58:01 -04:00
|
|
|
return exists(value) &&
|
|
|
|
(value === PluginType.PLUGIN || value === PluginType.THEME)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function isPluginNameValid (value: string) {
|
|
|
|
return exists(value) &&
|
|
|
|
validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
|
2020-04-30 10:32:24 -04:00
|
|
|
validator.matches(value, /^[a-z-0-9]+$/)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2019-07-05 09:28:49 -04:00
|
|
|
function isNpmPluginNameValid (value: string) {
|
|
|
|
return exists(value) &&
|
|
|
|
validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
|
2020-01-06 10:20:01 -05:00
|
|
|
validator.matches(value, /^[a-z\-._0-9]+$/) &&
|
2019-07-05 09:28:49 -04:00
|
|
|
(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) {
|
2019-08-22 03:41:49 -04:00
|
|
|
return exists(value) && (!value || isUrlValid(value))
|
|
|
|
}
|
|
|
|
|
|
|
|
function isPluginBugs (value: string) {
|
|
|
|
return exists(value) && (!value || isUrlValid(value))
|
2019-07-11 08:40:19 -04:00
|
|
|
}
|
|
|
|
|
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-09-11 04:19:03 -04:00
|
|
|
let result = true
|
|
|
|
const badFields: string[] = []
|
|
|
|
|
|
|
|
if (!isNpmPluginNameValid(packageJSON.name)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('name')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isPluginDescriptionValid(packageJSON.description)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('description')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isPluginEngineValid(packageJSON.engine)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('engine')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isPluginHomepage(packageJSON.homepage)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('homepage')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!exists(packageJSON.author)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('author')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isPluginBugs(packageJSON.bugs)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('bugs')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pluginType === PluginType.PLUGIN && !isSafePath(packageJSON.library)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('library')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!areStaticDirectoriesValid(packageJSON.staticDirs)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('staticDirs')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!areCSSPathsValid(packageJSON.css)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('css')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!areClientScriptsValid(packageJSON.clientScripts)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('clientScripts')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!areTranslationPathsValid(packageJSON.translations)) {
|
|
|
|
result = false
|
|
|
|
badFields.push('translations')
|
|
|
|
}
|
|
|
|
|
|
|
|
return { result, badFields }
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function isLibraryCodeValid (library: any) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return typeof library.register === 'function' &&
|
|
|
|
typeof library.unregister === 'function'
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|