]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/custom-validators/plugins.ts
Merge branch 'release/1.4.0' into develop
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / plugins.ts
1 import { exists, isArray, isSafePath } from './misc'
2 import * as validator from 'validator'
3 import { PluginType } from '../../../shared/models/plugins/plugin.type'
4 import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
5 import { PluginPackageJson } from '../../../shared/models/plugins/plugin-package-json.model'
6 import { isUrlValid } from './activitypub/misc'
7
8 const PLUGINS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.PLUGINS
9
10 function isPluginTypeValid (value: any) {
11 return exists(value) && validator.isInt('' + value) && PluginType[value] !== undefined
12 }
13
14 function isPluginNameValid (value: string) {
15 return exists(value) &&
16 validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
17 validator.matches(value, /^[a-z\-]+$/)
18 }
19
20 function isNpmPluginNameValid (value: string) {
21 return exists(value) &&
22 validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
23 validator.matches(value, /^[a-z\-]+$/) &&
24 (value.startsWith('peertube-plugin-') || value.startsWith('peertube-theme-'))
25 }
26
27 function isPluginDescriptionValid (value: string) {
28 return exists(value) && validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.DESCRIPTION)
29 }
30
31 function isPluginVersionValid (value: string) {
32 if (!exists(value)) return false
33
34 const parts = (value + '').split('.')
35
36 return parts.length === 3 && parts.every(p => validator.isInt(p))
37 }
38
39 function isPluginEngineValid (engine: any) {
40 return exists(engine) && exists(engine.peertube)
41 }
42
43 function isPluginHomepage (value: string) {
44 return exists(value) && (!value || isUrlValid(value))
45 }
46
47 function isPluginBugs (value: string) {
48 return exists(value) && (!value || isUrlValid(value))
49 }
50
51 function areStaticDirectoriesValid (staticDirs: any) {
52 if (!exists(staticDirs) || typeof staticDirs !== 'object') return false
53
54 for (const key of Object.keys(staticDirs)) {
55 if (!isSafePath(staticDirs[key])) return false
56 }
57
58 return true
59 }
60
61 function areClientScriptsValid (clientScripts: any[]) {
62 return isArray(clientScripts) &&
63 clientScripts.every(c => {
64 return isSafePath(c.script) && isArray(c.scopes)
65 })
66 }
67
68 function areTranslationPathsValid (translations: any) {
69 if (!exists(translations) || typeof translations !== 'object') return false
70
71 for (const key of Object.keys(translations)) {
72 if (!isSafePath(translations[key])) return false
73 }
74
75 return true
76 }
77
78 function areCSSPathsValid (css: any[]) {
79 return isArray(css) && css.every(c => isSafePath(c))
80 }
81
82 function isThemeNameValid (name: string) {
83 return isPluginNameValid(name)
84 }
85
86 function isPackageJSONValid (packageJSON: PluginPackageJson, pluginType: PluginType) {
87 return isNpmPluginNameValid(packageJSON.name) &&
88 isPluginDescriptionValid(packageJSON.description) &&
89 isPluginEngineValid(packageJSON.engine) &&
90 isPluginHomepage(packageJSON.homepage) &&
91 exists(packageJSON.author) &&
92 isPluginBugs(packageJSON.bugs) &&
93 (pluginType === PluginType.THEME || isSafePath(packageJSON.library)) &&
94 areStaticDirectoriesValid(packageJSON.staticDirs) &&
95 areCSSPathsValid(packageJSON.css) &&
96 areClientScriptsValid(packageJSON.clientScripts) &&
97 areTranslationPathsValid(packageJSON.translations)
98 }
99
100 function isLibraryCodeValid (library: any) {
101 return typeof library.register === 'function'
102 && typeof library.unregister === 'function'
103 }
104
105 export {
106 isPluginTypeValid,
107 isPackageJSONValid,
108 isThemeNameValid,
109 isPluginHomepage,
110 isPluginVersionValid,
111 isPluginNameValid,
112 isPluginDescriptionValid,
113 isLibraryCodeValid,
114 isNpmPluginNameValid
115 }