1
0
Fork 0
peertube/shared/extra-utils/server/config.ts

260 lines
5.4 KiB
TypeScript
Raw Normal View History

2018-11-19 16:08:18 +00:00
import { makeDeleteRequest, makeGetRequest, makePutBodyRequest } from '../requests/requests'
2018-10-29 17:06:09 +00:00
import { CustomConfig } from '../../models/server/custom-config.model'
import { DeepPartial, HttpStatusCode } from '@shared/core-utils'
import { merge } from 'lodash'
2017-09-04 19:21:47 +00:00
function getConfig (url: string) {
const path = '/api/v1/config'
2018-01-31 16:47:36 +00:00
return makeGetRequest({
url,
path,
statusCodeExpected: HttpStatusCode.OK_200
2018-01-31 16:47:36 +00:00
})
}
function getAbout (url: string) {
const path = '/api/v1/config/about'
return makeGetRequest({
url,
path,
statusCodeExpected: HttpStatusCode.OK_200
2018-01-31 16:47:36 +00:00
})
2017-09-04 19:21:47 +00:00
}
function getCustomConfig (url: string, token: string, statusCodeExpected = HttpStatusCode.OK_200) {
const path = '/api/v1/config/custom'
return makeGetRequest({
url,
token,
path,
statusCodeExpected
})
}
function updateCustomConfig (url: string, token: string, newCustomConfig: CustomConfig, statusCodeExpected = HttpStatusCode.OK_200) {
const path = '/api/v1/config/custom'
return makePutBodyRequest({
url,
token,
path,
fields: newCustomConfig,
statusCodeExpected
})
}
function updateCustomSubConfig (url: string, token: string, newConfig: DeepPartial<CustomConfig>) {
2018-08-03 14:23:45 +00:00
const updateParams: CustomConfig = {
instance: {
name: 'PeerTube updated',
shortDescription: 'my short description',
description: 'my super description',
terms: 'my super terms',
2019-08-23 13:23:27 +00:00
codeOfConduct: 'my super coc',
2019-09-03 07:49:04 +00:00
creationReason: 'my super creation reason',
2019-08-23 13:23:27 +00:00
moderationInformation: 'my super moderation information',
administrator: 'Kuja',
maintenanceLifetime: 'forever',
businessModel: 'my super business model',
hardwareInformation: '2vCore 3GB RAM',
2019-08-23 13:23:27 +00:00
languages: [ 'en', 'es' ],
categories: [ 1, 2 ],
2019-02-20 14:36:43 +00:00
isNSFW: true,
2018-08-03 14:23:45 +00:00
defaultNSFWPolicy: 'blur',
defaultClientRoute: '/videos/recently-added',
2018-08-03 14:23:45 +00:00
customizations: {
javascript: 'alert("coucou")',
css: 'body { background-color: red; }'
}
},
2019-07-09 09:45:19 +00:00
theme: {
default: 'default'
},
2018-08-03 14:23:45 +00:00
services: {
twitter: {
username: '@MySuperUsername',
whitelisted: true
}
},
cache: {
previews: {
size: 2
},
captions: {
size: 3
},
torrents: {
size: 4
2018-08-03 14:23:45 +00:00
}
},
signup: {
enabled: false,
limit: 5,
requiresEmailVerification: false
2018-08-03 14:23:45 +00:00
},
admin: {
email: 'superadmin1@example.com'
},
2019-01-09 14:14:29 +00:00
contactForm: {
enabled: true
},
2018-08-03 14:23:45 +00:00
user: {
videoQuota: 5242881,
videoQuotaDaily: 318742
2018-08-03 14:23:45 +00:00
},
transcoding: {
enabled: true,
2018-12-11 13:52:50 +00:00
allowAdditionalExtensions: true,
2019-05-16 14:55:34 +00:00
allowAudioFiles: true,
2018-08-03 14:23:45 +00:00
threads: 1,
concurrency: 3,
profile: 'default',
2018-08-03 14:23:45 +00:00
resolutions: {
'0p': false,
2018-08-03 14:23:45 +00:00
'240p': false,
'360p': true,
'480p': true,
'720p': false,
2019-06-12 15:33:29 +00:00
'1080p': false,
'1440p': false,
2019-06-12 15:33:29 +00:00
'2160p': false
2019-01-29 07:37:25 +00:00
},
webtorrent: {
enabled: true
},
2019-01-29 07:37:25 +00:00
hls: {
enabled: false
2018-08-03 14:23:45 +00:00
}
},
live: {
enabled: true,
2020-09-25 14:19:35 +00:00
allowReplay: false,
2020-12-15 08:23:28 +00:00
maxDuration: -1,
2020-10-28 14:24:40 +00:00
maxInstanceLives: -1,
maxUserLives: 50,
transcoding: {
enabled: true,
threads: 4,
profile: 'default',
resolutions: {
'240p': true,
'360p': true,
'480p': true,
'720p': true,
'1080p': true,
'1440p': true,
'2160p': true
}
}
},
2018-08-03 14:23:45 +00:00
import: {
videos: {
concurrency: 3,
2018-08-03 14:23:45 +00:00
http: {
enabled: false
2018-08-07 08:07:53 +00:00
},
torrent: {
enabled: false
2018-08-03 14:23:45 +00:00
}
}
},
2021-01-27 16:15:21 +00:00
trending: {
videos: {
algorithms: {
enabled: [ 'best', 'hot', 'most-viewed', 'most-liked' ],
2021-01-27 16:15:21 +00:00
default: 'hot'
}
}
},
autoBlacklist: {
videos: {
ofUsers: {
enabled: false
}
}
2019-04-08 12:04:57 +00:00
},
followers: {
instance: {
enabled: true,
manualApproval: false
2019-04-08 12:04:57 +00:00
}
},
followings: {
instance: {
autoFollowBack: {
enabled: false
},
autoFollowIndex: {
2020-05-13 09:57:34 +00:00
indexUrl: 'https://instances.joinpeertube.org/api/v1/instances/hosts',
enabled: false
}
}
2020-05-28 09:15:38 +00:00
},
broadcastMessage: {
enabled: true,
level: 'warning',
message: 'hello',
dismissable: true
2020-05-29 14:16:24 +00:00
},
search: {
remoteUri: {
users: true,
anonymous: true
},
searchIndex: {
enabled: true,
url: 'https://search.joinpeertube.org',
disableLocalSearch: true,
isDefaultSearch: true
}
2018-08-03 14:23:45 +00:00
}
}
merge(updateParams, newConfig)
2018-08-03 14:23:45 +00:00
return updateCustomConfig(url, token, updateParams)
}
2021-05-07 09:53:46 +00:00
function getCustomConfigResolutions (enabled: boolean) {
return {
'240p': enabled,
'360p': enabled,
'480p': enabled,
'720p': enabled,
'1080p': enabled,
'1440p': enabled,
'2160p': enabled
}
}
function deleteCustomConfig (url: string, token: string, statusCodeExpected = HttpStatusCode.OK_200) {
const path = '/api/v1/config/custom'
return makeDeleteRequest({
url,
token,
path,
statusCodeExpected
})
}
2017-09-04 19:21:47 +00:00
// ---------------------------------------------------------------------------
export {
getConfig,
getCustomConfig,
updateCustomConfig,
2018-01-31 16:47:36 +00:00
getAbout,
2018-08-03 14:23:45 +00:00
deleteCustomConfig,
2021-05-07 09:53:46 +00:00
updateCustomSubConfig,
getCustomConfigResolutions
2017-09-04 19:21:47 +00:00
}