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