1
0
Fork 0
peertube/shared/models/server/server-config.model.ts

138 lines
1.9 KiB
TypeScript
Raw Normal View History

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2019-07-08 13:54:08 +00:00
import { ClientScript } from '../plugins/plugin-package-json.model'
2019-07-10 12:06:19 +00:00
export interface ServerConfigPlugin {
2019-07-08 13:54:08 +00:00
name: string
version: string
description: string
2019-07-22 14:04:44 +00:00
clientScripts: { [name: string]: ClientScript }
2019-07-08 13:54:08 +00:00
}
2019-07-10 12:06:19 +00:00
export interface ServerConfigTheme extends ServerConfigPlugin {
css: string[]
}
2017-06-17 09:28:11 +00:00
export interface ServerConfig {
2018-01-31 16:47:36 +00:00
serverVersion: string
serverCommit?: string
2018-01-31 16:47:36 +00:00
instance: {
2018-03-01 12:57:29 +00:00
name: string
2018-03-15 13:31:08 +00:00
shortDescription: string
2018-03-01 12:57:29 +00:00
defaultClientRoute: string
2019-02-20 14:36:43 +00:00
isNSFW: boolean
defaultNSFWPolicy: NSFWPolicyType
customizations: {
javascript: string
css: string
}
2018-01-31 16:47:36 +00:00
}
2019-07-09 09:45:19 +00:00
plugin: {
registered: ServerConfigPlugin[]
}
theme: {
2019-07-10 12:06:19 +00:00
registered: ServerConfigTheme[]
2019-07-09 09:45:19 +00:00
default: string
}
2019-07-08 13:54:08 +00:00
email: {
enabled: boolean
}
2019-01-09 14:14:29 +00:00
contactForm: {
enabled: boolean
}
2017-06-17 09:28:11 +00:00
signup: {
allowed: boolean,
2019-01-29 07:37:25 +00:00
allowedForCurrentIP: boolean
requiresEmailVerification: boolean
2017-06-17 09:28:11 +00:00
}
2018-01-31 16:47:36 +00:00
transcoding: {
2019-01-29 07:37:25 +00:00
hls: {
enabled: boolean
}
webtorrent: {
enabled: boolean
}
enabledResolutions: number[]
}
2018-01-31 16:47:36 +00:00
2018-08-03 09:10:31 +00:00
import: {
2018-08-03 15:00:19 +00:00
videos: {
2018-08-03 09:10:31 +00:00
http: {
enabled: boolean
}
2018-08-07 08:07:53 +00:00
torrent: {
enabled: boolean
}
2018-08-03 09:10:31 +00:00
}
}
autoBlacklist: {
videos: {
ofUsers: {
enabled: boolean
}
}
}
2018-01-03 10:10:40 +00:00
avatar: {
file: {
size: {
max: number
2019-01-29 07:37:25 +00:00
}
2018-01-03 10:10:40 +00:00
extensions: string[]
}
}
2018-01-31 16:47:36 +00:00
2018-01-03 10:10:40 +00:00
video: {
image: {
size: {
max: number
}
extensions: string[]
},
2018-01-03 10:10:40 +00:00
file: {
extensions: string[]
}
}
2018-07-12 17:02:00 +00:00
videoCaption: {
file: {
size: {
max: number
},
extensions: string[]
}
}
user: {
videoQuota: number
videoQuotaDaily: number
}
trending: {
videos: {
intervalDays: number
}
}
2019-04-10 07:23:18 +00:00
tracker: {
enabled: boolean
}
followings: {
instance: {
autoFollowIndex: {
indexUrl: string
}
}
}
2017-06-17 09:28:11 +00:00
}