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

232 lines
3.4 KiB
TypeScript
Raw Normal View History

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2020-05-28 09:15:38 +00:00
import { BroadcastMessageLevel } from './broadcast-message-level.type'
export type ConfigResolutions = {
'144p': boolean
'240p': boolean
'360p': boolean
'480p': boolean
'720p': boolean
'1080p': boolean
'1440p': boolean
'2160p': boolean
}
export interface CustomConfig {
instance: {
name: string
2018-03-15 13:31:08 +00:00
shortDescription: string
description: string
terms: string
2019-08-23 13:23:27 +00:00
codeOfConduct: string
2019-09-03 07:49:04 +00:00
creationReason: string
2019-08-23 13:23:27 +00:00
moderationInformation: string
administrator: string
maintenanceLifetime: string
businessModel: string
hardwareInformation: string
2019-08-23 13:23:27 +00:00
languages: string[]
categories: number[]
2019-02-20 14:36:43 +00:00
isNSFW: boolean
defaultNSFWPolicy: NSFWPolicyType
defaultClientRoute: string
customizations: {
javascript?: string
css?: string
}
}
2019-07-09 09:45:19 +00:00
theme: {
default: string
}
services: {
twitter: {
username: string
whitelisted: boolean
}
}
client: {
videos: {
miniature: {
preferAuthorDisplayName: boolean
}
}
menu: {
login: {
redirectOnSingleExternalAuth: boolean
}
}
}
cache: {
previews: {
size: number
}
2018-07-12 17:02:00 +00:00
captions: {
size: number
}
torrents: {
size: number
}
}
signup: {
enabled: boolean
limit: number
requiresEmailVerification: boolean
minimumAge: number
}
admin: {
email: string
}
2019-01-09 14:14:29 +00:00
contactForm: {
enabled: boolean
}
user: {
videoQuota: number
videoQuotaDaily: number
}
videoChannels: {
maxPerUser: number
}
transcoding: {
enabled: boolean
2018-12-11 13:52:50 +00:00
allowAdditionalExtensions: boolean
2019-05-16 14:55:34 +00:00
allowAudioFiles: boolean
threads: number
concurrency: number
profile: string
resolutions: ConfigResolutions & { '0p': boolean }
alwaysTranscodeOriginalResolution: boolean
webtorrent: {
enabled: boolean
}
2019-01-29 07:37:25 +00:00
hls: {
enabled: boolean
}
}
2018-08-03 09:10:31 +00:00
live: {
enabled: boolean
2020-09-25 14:19:35 +00:00
allowReplay: boolean
2020-10-28 14:24:40 +00:00
2022-03-04 12:40:02 +00:00
latencySetting: {
enabled: boolean
}
2020-09-25 14:19:35 +00:00
maxDuration: number
2020-10-28 14:24:40 +00:00
maxInstanceLives: number
maxUserLives: number
2020-09-25 14:19:35 +00:00
transcoding: {
enabled: boolean
threads: number
profile: string
resolutions: ConfigResolutions
alwaysTranscodeOriginalResolution: boolean
}
}
2022-03-22 15:58:49 +00:00
videoStudio: {
2022-02-11 09:51:33 +00:00
enabled: boolean
}
2018-08-03 09:10:31 +00:00
import: {
videos: {
concurrency: number
2018-08-03 09:10:31 +00:00
http: {
enabled: boolean
2020-01-31 15:56:52 +00:00
}
2018-08-07 08:07:53 +00:00
torrent: {
enabled: boolean
2018-08-03 09:10:31 +00:00
}
}
Channel sync (#5135) * Add external channel URL for channel update / creation (#754) * Disallow synchronisation if user has no video quota (#754) * More constraints serverside (#754) * Disable sync if server configuration does not allow HTTP import (#754) * Working version synchronizing videos with a job (#754) TODO: refactoring, too much code duplication * More logs and try/catch (#754) * Fix eslint error (#754) * WIP: support synchronization time change (#754) * New frontend #754 * WIP: Create sync front (#754) * Enhance UI, sync creation form (#754) * Warning message when HTTP upload is disallowed * More consistent names (#754) * Binding Front with API (#754) * Add a /me API (#754) * Improve list UI (#754) * Implement creation and deletion routes (#754) * Lint (#754) * Lint again (#754) * WIP: UI for triggering import existing videos (#754) * Implement jobs for syncing and importing channels * Don't sync videos before sync creation + avoid concurrency issue (#754) * Cleanup (#754) * Cleanup: OpenAPI + API rework (#754) * Remove dead code (#754) * Eslint (#754) * Revert the mess with whitespaces in constants.ts (#754) * Some fixes after rebase (#754) * Several fixes after PR remarks (#754) * Front + API: Rename video-channels-sync to video-channel-syncs (#754) * Allow enabling channel sync through UI (#754) * getChannelInfo (#754) * Minor fixes: openapi + model + sql (#754) * Simplified API validators (#754) * Rename MChannelSync to MChannelSyncChannel (#754) * Add command for VideoChannelSync (#754) * Use synchronization.enabled config (#754) * Check parameters test + some fixes (#754) * Fix conflict mistake (#754) * Restrict access to video channel sync list API (#754) * Start adding unit test for synchronization (#754) * Continue testing (#754) * Tests finished + convertion of job to scheduler (#754) * Add lastSyncAt field (#754) * Fix externalRemoteUrl sort + creation date not well formatted (#754) * Small fix (#754) * Factorize addYoutubeDLImport and buildVideo (#754) * Check duplicates on channel not on users (#754) * factorize thumbnail generation (#754) * Fetch error should return status 400 (#754) * Separate video-channel-import and video-channel-sync-latest (#754) * Bump DB migration version after rebase (#754) * Prettier states in UI table (#754) * Add DefaultScope in VideoChannelSyncModel (#754) * Fix audit logs (#754) * Ensure user can upload when importing channel + minor fixes (#754) * Mark synchronization as failed on exception + typos (#754) * Change REST API for importing videos into channel (#754) * Add option for fully synchronize a chnanel (#754) * Return a whole sync object on creation to avoid tricks in Front (#754) * Various remarks (#754) * Single quotes by default (#754) * Rename synchronization to video_channel_synchronization * Add check.latest_videos_count and max_per_user options (#754) * Better channel rendering in list #754 * Allow sorting with channel name and state (#754) * Add missing tests for channel imports (#754) * Prefer using a parent job for channel sync * Styling * Client styling Co-authored-by: Chocobozzz <me@florianbigard.com>
2022-08-10 07:53:39 +00:00
videoChannelSynchronization: {
enabled: boolean
maxPerUser: number
}
2018-08-03 09:10:31 +00:00
}
2021-01-27 16:15:21 +00:00
trending: {
videos: {
algorithms: {
enabled: string[]
default: string
}
}
}
autoBlacklist: {
videos: {
ofUsers: {
enabled: boolean
}
}
}
2019-04-08 12:04:57 +00:00
followers: {
instance: {
2020-01-31 15:56:52 +00:00
enabled: boolean
manualApproval: boolean
2019-04-08 12:04:57 +00:00
}
}
followings: {
instance: {
autoFollowBack: {
enabled: boolean
}
autoFollowIndex: {
enabled: boolean
indexUrl: string
}
}
}
2020-05-28 09:15:38 +00:00
broadcastMessage: {
enabled: boolean
message: string
level: BroadcastMessageLevel
dismissable: boolean
}
2020-05-29 14:16:24 +00:00
search: {
remoteUri: {
users: boolean
anonymous: boolean
}
searchIndex: {
enabled: boolean
url: string
disableLocalSearch: boolean
isDefaultSearch: boolean
}
}
}