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

159 lines
3.1 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'
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: 200
})
}
function getAbout (url: string) {
const path = '/api/v1/config/about'
return makeGetRequest({
url,
path,
statusCodeExpected: 200
})
2017-09-04 19:21:47 +00:00
}
function getCustomConfig (url: string, token: string, statusCodeExpected = 200) {
const path = '/api/v1/config/custom'
return makeGetRequest({
url,
token,
path,
statusCodeExpected
})
}
function updateCustomConfig (url: string, token: string, newCustomConfig: CustomConfig, statusCodeExpected = 200) {
const path = '/api/v1/config/custom'
return makePutBodyRequest({
url,
token,
path,
fields: newCustomConfig,
statusCodeExpected
})
}
2018-08-03 14:23:45 +00:00
function updateCustomSubConfig (url: string, token: string, newConfig: any) {
const updateParams: CustomConfig = {
instance: {
name: 'PeerTube updated',
shortDescription: 'my short description',
description: 'my super description',
terms: 'my super terms',
defaultClientRoute: '/videos/recently-added',
2019-02-20 14:36:43 +00:00
isNSFW: true,
2018-08-03 14:23:45 +00:00
defaultNSFWPolicy: 'blur',
customizations: {
javascript: 'alert("coucou")',
css: 'body { background-color: red; }'
}
},
services: {
twitter: {
username: '@MySuperUsername',
whitelisted: true
}
},
cache: {
previews: {
size: 2
},
captions: {
size: 3
}
},
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,
resolutions: {
'240p': false,
'360p': true,
'480p': true,
'720p': false,
2019-06-12 15:33:29 +00:00
'1080p': false,
'2160p': false
2019-01-29 07:37:25 +00:00
},
hls: {
enabled: false
2018-08-03 14:23:45 +00:00
}
},
import: {
videos: {
http: {
enabled: false
2018-08-07 08:07:53 +00:00
},
torrent: {
enabled: false
2018-08-03 14:23:45 +00:00
}
}
},
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
}
2018-08-03 14:23:45 +00:00
}
}
Object.assign(updateParams, newConfig)
return updateCustomConfig(url, token, updateParams)
}
function deleteCustomConfig (url: string, token: string, statusCodeExpected = 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,
updateCustomSubConfig
2017-09-04 19:21:47 +00:00
}