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