aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators')
-rw-r--r--server/helpers/custom-validators/misc.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/misc.ts b/server/helpers/custom-validators/misc.ts
index b3ab3ac64..ebab4c6b2 100644
--- a/server/helpers/custom-validators/misc.ts
+++ b/server/helpers/custom-validators/misc.ts
@@ -15,6 +15,10 @@ function isSafePath (p: string) {
15 }) 15 })
16} 16}
17 17
18function isSafePeerTubeFilenameWithoutExtension (filename: string) {
19 return filename.match(/^[a-z0-9-]+$/)
20}
21
18function isArray (value: any): value is any[] { 22function isArray (value: any): value is any[] {
19 return Array.isArray(value) 23 return Array.isArray(value)
20} 24}
@@ -172,5 +176,6 @@ export {
172 areUUIDsValid, 176 areUUIDsValid,
173 toIntArray, 177 toIntArray,
174 isFileValid, 178 isFileValid,
179 isSafePeerTubeFilenameWithoutExtension,
175 checkMimetypeRegex 180 checkMimetypeRegex
176} 181}