]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
Add creation reason
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-custom-config.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { ConfigService } from '@app/+admin/config/shared/config.service'
3 import { ServerService } from '@app/core/server/server.service'
4 import { CustomConfigValidatorsService, FormReactive, UserValidatorsService } from '@app/shared'
5 import { Notifier } from '@app/core'
6 import { CustomConfig } from '../../../../../../shared/models/server/custom-config.model'
7 import { I18n } from '@ngx-translate/i18n-polyfill'
8 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
9 import { SelectItem } from 'primeng/api'
10 import { forkJoin } from 'rxjs'
11 import { first } from 'rxjs/operators'
12
13 @Component({
14 selector: 'my-edit-custom-config',
15 templateUrl: './edit-custom-config.component.html',
16 styleUrls: [ './edit-custom-config.component.scss' ]
17 })
18 export class EditCustomConfigComponent extends FormReactive implements OnInit {
19 customConfig: CustomConfig
20
21 resolutions: { id: string, label: string }[] = []
22 transcodingThreadOptions: { label: string, value: number }[] = []
23
24 languageItems: SelectItem[] = []
25 categoryItems: SelectItem[] = []
26
27 constructor (
28 protected formValidatorService: FormValidatorService,
29 private customConfigValidatorsService: CustomConfigValidatorsService,
30 private userValidatorsService: UserValidatorsService,
31 private notifier: Notifier,
32 private configService: ConfigService,
33 private serverService: ServerService,
34 private i18n: I18n
35 ) {
36 super()
37
38 this.resolutions = [
39 {
40 id: '240p',
41 label: this.i18n('240p')
42 },
43 {
44 id: '360p',
45 label: this.i18n('360p')
46 },
47 {
48 id: '480p',
49 label: this.i18n('480p')
50 },
51 {
52 id: '720p',
53 label: this.i18n('720p')
54 },
55 {
56 id: '1080p',
57 label: this.i18n('1080p')
58 },
59 {
60 id: '2160p',
61 label: this.i18n('2160p')
62 }
63 ]
64
65 this.transcodingThreadOptions = [
66 { value: 0, label: this.i18n('Auto (via ffmpeg)') },
67 { value: 1, label: '1' },
68 { value: 2, label: '2' },
69 { value: 4, label: '4' },
70 { value: 8, label: '8' }
71 ]
72 }
73
74 get videoQuotaOptions () {
75 return this.configService.videoQuotaOptions
76 }
77
78 get videoQuotaDailyOptions () {
79 return this.configService.videoQuotaDailyOptions
80 }
81
82 get availableThemes () {
83 return this.serverService.getConfig().theme.registered
84 .map(t => t.name)
85 }
86
87 getResolutionKey (resolution: string) {
88 return 'transcoding.resolutions.' + resolution
89 }
90
91 ngOnInit () {
92 const formGroupData: { [key in keyof CustomConfig ]: any } = {
93 instance: {
94 name: this.customConfigValidatorsService.INSTANCE_NAME,
95 shortDescription: this.customConfigValidatorsService.INSTANCE_SHORT_DESCRIPTION,
96 description: null,
97
98 isNSFW: false,
99 defaultNSFWPolicy: null,
100
101 terms: null,
102 codeOfConduct: null,
103
104 creationReason: null,
105 moderationInformation: null,
106 administrator: null,
107 maintenanceLifetime: null,
108 businessModel: null,
109
110 categories: null,
111 languages: null,
112
113 defaultClientRoute: null,
114
115 customizations: {
116 javascript: null,
117 css: null
118 }
119 },
120 theme: {
121 default: null
122 },
123 services: {
124 twitter: {
125 username: this.customConfigValidatorsService.SERVICES_TWITTER_USERNAME,
126 whitelisted: null
127 }
128 },
129 cache: {
130 previews: {
131 size: this.customConfigValidatorsService.CACHE_PREVIEWS_SIZE
132 },
133 captions: {
134 size: this.customConfigValidatorsService.CACHE_CAPTIONS_SIZE
135 }
136 },
137 signup: {
138 enabled: null,
139 limit: this.customConfigValidatorsService.SIGNUP_LIMIT,
140 requiresEmailVerification: null
141 },
142 import: {
143 videos: {
144 http: {
145 enabled: null
146 },
147 torrent: {
148 enabled: null
149 }
150 }
151 },
152 admin: {
153 email: this.customConfigValidatorsService.ADMIN_EMAIL
154 },
155 contactForm: {
156 enabled: null
157 },
158 user: {
159 videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
160 videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY
161 },
162 transcoding: {
163 enabled: null,
164 threads: this.customConfigValidatorsService.TRANSCODING_THREADS,
165 allowAdditionalExtensions: null,
166 allowAudioFiles: null,
167 resolutions: {}
168 },
169 autoBlacklist: {
170 videos: {
171 ofUsers: {
172 enabled: null
173 }
174 }
175 },
176 followers: {
177 instance: {
178 enabled: null,
179 manualApproval: null
180 }
181 },
182 followings: {
183 instance: {
184 autoFollowBack: {
185 enabled: null
186 },
187 autoFollowIndex: {
188 enabled: null,
189 indexUrl: this.customConfigValidatorsService.INDEX_URL
190 }
191 }
192 }
193 }
194
195 const defaultValues = {
196 transcoding: {
197 resolutions: {}
198 }
199 }
200 for (const resolution of this.resolutions) {
201 defaultValues.transcoding.resolutions[resolution.id] = 'false'
202 formGroupData.transcoding.resolutions[resolution.id] = null
203 }
204
205 this.buildForm(formGroupData)
206
207 forkJoin([
208 this.configService.getCustomConfig(),
209 this.serverService.videoLanguagesLoaded.pipe(first()), // First so the observable completes
210 this.serverService.videoCategoriesLoaded.pipe(first())
211 ]).subscribe(
212 ([ config ]) => {
213 this.customConfig = config
214
215 const languages = this.serverService.getVideoLanguages()
216 this.languageItems = languages.map(l => ({ label: l.label, value: l.id }))
217
218 const categories = this.serverService.getVideoCategories()
219 this.categoryItems = categories.map(l => ({ label: l.label, value: l.id }))
220
221 this.updateForm()
222 // Force form validation
223 this.forceCheck()
224 },
225
226 err => this.notifier.error(err.message)
227 )
228 }
229
230 isTranscodingEnabled () {
231 return this.form.value['transcoding']['enabled'] === true
232 }
233
234 isSignupEnabled () {
235 return this.form.value['signup']['enabled'] === true
236 }
237
238 async formValidated () {
239 this.configService.updateCustomConfig(this.form.value)
240 .subscribe(
241 res => {
242 this.customConfig = res
243
244 // Reload general configuration
245 this.serverService.loadConfig()
246
247 this.updateForm()
248
249 this.notifier.success(this.i18n('Configuration updated.'))
250 },
251
252 err => this.notifier.error(err.message)
253 )
254 }
255
256 getSelectedLanguageLabel () {
257 return this.i18n('{{\'{0} languages selected')
258 }
259
260 getDefaultLanguageLabel () {
261 return this.i18n('No language')
262 }
263
264 getSelectedCategoryLabel () {
265 return this.i18n('{{\'{0} categories selected')
266 }
267
268 getDefaultCategoryLabel () {
269 return this.i18n('No category')
270 }
271
272 private updateForm () {
273 this.form.patchValue(this.customConfig)
274 }
275 }