]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts
Don't break install plugin on failure
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-basic-configuration.component.ts
CommitLineData
5f46d28c 1import { pairwise } from 'rxjs/operators'
2539932e
C
2import { SelectOptionsItem } from 'src/types/select-options-item.model'
3import { Component, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core'
5f46d28c 4import { FormGroup } from '@angular/forms'
5e93a6d1 5import { MenuService, ThemeService } from '@app/core'
2989628b 6import { HTMLServerConfig } from '@shared/models'
5f46d28c
C
7import { ConfigService } from '../shared/config.service'
8
9@Component({
10 selector: 'my-edit-basic-configuration',
11 templateUrl: './edit-basic-configuration.component.html',
12 styleUrls: [ './edit-custom-config.component.scss' ]
13})
2539932e 14export class EditBasicConfigurationComponent implements OnInit, OnChanges {
5f46d28c
C
15 @Input() form: FormGroup
16 @Input() formErrors: any
17
2989628b 18 @Input() serverConfig: HTMLServerConfig
5f46d28c
C
19
20 signupAlertMessage: string
2539932e 21 defaultLandingPageOptions: SelectOptionsItem[] = []
00fe5d61 22 availableThemes: SelectOptionsItem[]
5f46d28c
C
23
24 constructor (
2539932e 25 private configService: ConfigService,
5e93a6d1
C
26 private menuService: MenuService,
27 private themeService: ThemeService
2a491182 28 ) {}
5f46d28c
C
29
30 ngOnInit () {
2539932e 31 this.buildLandingPageOptions()
5f46d28c 32 this.checkSignupField()
2a491182 33 this.checkImportSyncField()
00fe5d61
C
34
35 this.availableThemes = this.themeService.buildAvailableThemes()
5f46d28c
C
36 }
37
2539932e
C
38 ngOnChanges (changes: SimpleChanges) {
39 if (changes['serverConfig']) {
40 this.buildLandingPageOptions()
41 }
42 }
43
0bc53e20
C
44 countExternalAuth () {
45 return this.serverConfig.plugin.registeredExternalAuths.length
46 }
47
5f46d28c
C
48 getVideoQuotaOptions () {
49 return this.configService.videoQuotaOptions
50 }
51
52 getVideoQuotaDailyOptions () {
53 return this.configService.videoQuotaDailyOptions
54 }
55
5f46d28c
C
56 doesTrendingVideosAlgorithmsEnabledInclude (algorithm: string) {
57 const enabled = this.form.value['trending']['videos']['algorithms']['enabled']
58 if (!Array.isArray(enabled)) return false
59
60 return !!enabled.find((e: string) => e === algorithm)
61 }
62
63 isSignupEnabled () {
64 return this.form.value['signup']['enabled'] === true
65 }
66
70e33515
C
67 getDisabledSignupClass () {
68 return { 'disabled-checkbox-extra': !this.isSignupEnabled() }
69 }
70
2a491182
F
71 isImportVideosHttpEnabled (): boolean {
72 return this.form.value['import']['videos']['http']['enabled'] === true
73 }
74
75 importSynchronizationChecked () {
76 return this.isImportVideosHttpEnabled() && this.form.value['import']['videoChannelSynchronization']['enabled']
77 }
78
70e33515
C
79 hasUnlimitedSignup () {
80 return this.form.value['signup']['limit'] === -1
81 }
82
5f46d28c
C
83 isSearchIndexEnabled () {
84 return this.form.value['search']['searchIndex']['enabled'] === true
85 }
86
70e33515
C
87 getDisabledSearchIndexClass () {
88 return { 'disabled-checkbox-extra': !this.isSearchIndexEnabled() }
89 }
90
5f46d28c
C
91 isAutoFollowIndexEnabled () {
92 return this.form.value['followings']['instance']['autoFollowIndex']['enabled'] === true
93 }
94
2539932e
C
95 buildLandingPageOptions () {
96 this.defaultLandingPageOptions = this.menuService.buildCommonLinks(this.serverConfig)
8beea2d3 97 .links
2539932e
C
98 .map(o => ({
99 id: o.path,
100 label: o.label,
101 description: o.path
102 }))
103 }
104
5e93a6d1
C
105 getDefaultThemeLabel () {
106 return this.themeService.getDefaultThemeLabel()
107 }
108
2a491182
F
109 private checkImportSyncField () {
110 const importSyncControl = this.form.get('import.videoChannelSynchronization.enabled')
111 const importVideosHttpControl = this.form.get('import.videos.http.enabled')
112
113 importVideosHttpControl.valueChanges
114 .subscribe((httpImportEnabled) => {
115 importSyncControl.setValue(httpImportEnabled && importSyncControl.value)
116 if (httpImportEnabled) {
117 importSyncControl.enable()
118 } else {
119 importSyncControl.disable()
120 }
121 })
122 }
123
5f46d28c
C
124 private checkSignupField () {
125 const signupControl = this.form.get('signup.enabled')
126
127 signupControl.valueChanges
128 .pipe(pairwise())
129 .subscribe(([ oldValue, newValue ]) => {
8224e13d 130 if (oldValue === false && newValue === true) {
9df52d66 131 /* eslint-disable max-len */
5f46d28c
C
132 this.signupAlertMessage = $localize`You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.`
133
134 this.form.patchValue({
135 autoBlacklist: {
136 videos: {
137 ofUsers: {
138 enabled: true
139 }
140 }
141 }
142 })
143 }
144 })
8224e13d
C
145
146 signupControl.updateValueAndValidity()
5f46d28c
C
147 }
148}