5541f555822d2fcf4ea495ac632959c42e48106b
[oweals/peertube.git] / client / src / app / app.component.ts
1 import { Component, OnInit, ViewChild, AfterViewInit, Inject, LOCALE_ID } from '@angular/core'
2 import { DomSanitizer, SafeHtml } from '@angular/platform-browser'
3 import { Event, GuardsCheckStart, NavigationEnd, Router, Scroll } from '@angular/router'
4 import { AuthService, RedirectService, ServerService, ThemeService } from '@app/core'
5 import { is18nPath, getShortLocale } from '../../../shared/models/i18n'
6 import { ScreenService } from '@app/shared/misc/screen.service'
7 import { filter, map, pairwise, first } from 'rxjs/operators'
8 import { Hotkey, HotkeysService } from 'angular2-hotkeys'
9 import { I18n } from '@ngx-translate/i18n-polyfill'
10 import { PlatformLocation, ViewportScroller, DOCUMENT } from '@angular/common'
11 import { PluginService } from '@app/core/plugins/plugin.service'
12 import { HooksService } from '@app/core/plugins/hooks.service'
13 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
14 import { POP_STATE_MODAL_DISMISS } from '@app/shared/misc/constants'
15 import { WelcomeModalComponent } from '@app/modal/welcome-modal.component'
16 import { InstanceConfigWarningModalComponent } from '@app/modal/instance-config-warning-modal.component'
17 import { CustomModalComponent } from '@app/modal/custom-modal.component'
18 import { ServerConfig, UserRole } from '@shared/models'
19 import { User } from '@app/shared'
20 import { InstanceService } from '@app/shared/instance/instance.service'
21 import { MenuService } from './core/menu/menu.service'
22 import { BroadcastMessageLevel } from '@shared/models/server'
23 import { MarkdownService } from './shared/renderer'
24 import { concat } from 'rxjs'
25 import { peertubeLocalStorage } from './shared/misc/peertube-web-storage'
26
27 @Component({
28   selector: 'my-app',
29   templateUrl: './app.component.html',
30   styleUrls: [ './app.component.scss' ]
31 })
32 export class AppComponent implements OnInit, AfterViewInit {
33   private static BROADCAST_MESSAGE_KEY = 'app-broadcast-message-dismissed'
34
35   @ViewChild('welcomeModal') welcomeModal: WelcomeModalComponent
36   @ViewChild('instanceConfigWarningModal') instanceConfigWarningModal: InstanceConfigWarningModalComponent
37   @ViewChild('customModal') customModal: CustomModalComponent
38
39   customCSS: SafeHtml
40   broadcastMessage: { message: string, dismissable: boolean, class: string } | null = null
41
42   private serverConfig: ServerConfig
43
44   constructor (
45     @Inject(DOCUMENT) private document: Document,
46     @Inject(LOCALE_ID) private localeId: string,
47     private i18n: I18n,
48     private viewportScroller: ViewportScroller,
49     private router: Router,
50     private authService: AuthService,
51     private serverService: ServerService,
52     private pluginService: PluginService,
53     private instanceService: InstanceService,
54     private domSanitizer: DomSanitizer,
55     private redirectService: RedirectService,
56     private screenService: ScreenService,
57     private hotkeysService: HotkeysService,
58     private themeService: ThemeService,
59     private hooks: HooksService,
60     private location: PlatformLocation,
61     private modalService: NgbModal,
62     private markdownService: MarkdownService,
63     public menu: MenuService
64   ) { }
65
66   get instanceName () {
67     return this.serverConfig.instance.name
68   }
69
70   get defaultRoute () {
71     return RedirectService.DEFAULT_ROUTE
72   }
73
74   ngOnInit () {
75     document.getElementById('incompatible-browser').className += ' browser-ok'
76
77     this.serverConfig = this.serverService.getTmpConfig()
78     this.serverService.getConfig()
79         .subscribe(config => this.serverConfig = config)
80
81     this.loadPlugins()
82     this.themeService.initialize()
83
84     this.authService.loadClientCredentials()
85
86     if (this.isUserLoggedIn()) {
87       // The service will automatically redirect to the login page if the token is not valid anymore
88       this.authService.refreshUserInformation()
89     }
90
91     this.initRouteEvents()
92     this.injectJS()
93     this.injectCSS()
94     this.injectBroadcastMessage()
95
96     this.initHotkeys()
97
98     this.location.onPopState(() => this.modalService.dismissAll(POP_STATE_MODAL_DISMISS))
99
100     this.openModalsIfNeeded()
101
102     this.document.documentElement.lang = getShortLocale(this.localeId)
103   }
104
105   ngAfterViewInit () {
106     this.pluginService.initializeCustomModal(this.customModal)
107   }
108
109   isUserLoggedIn () {
110     return this.authService.isLoggedIn()
111   }
112
113   hideBroadcastMessage () {
114     peertubeLocalStorage.setItem(AppComponent.BROADCAST_MESSAGE_KEY, this.serverConfig.broadcastMessage.message)
115
116     this.broadcastMessage = null
117   }
118
119   private initRouteEvents () {
120     let resetScroll = true
121     const eventsObs = this.router.events
122
123     const scrollEvent = eventsObs.pipe(filter((e: Event): e is Scroll => e instanceof Scroll))
124
125     scrollEvent.subscribe(e => {
126       console.log(e)
127       if (e.position) {
128         return this.viewportScroller.scrollToPosition(e.position)
129       }
130
131       if (e.anchor) {
132         return this.viewportScroller.scrollToAnchor(e.anchor)
133       }
134
135       if (resetScroll) {
136         return this.viewportScroller.scrollToPosition([ 0, 0 ])
137       }
138     })
139
140     const navigationEndEvent = eventsObs.pipe(filter((e: Event): e is NavigationEnd => e instanceof NavigationEnd))
141
142     // When we add the a-state parameter, we don't want to alter the scroll
143     navigationEndEvent.pipe(pairwise())
144                       .subscribe(([ e1, e2 ]) => {
145                         try {
146                           resetScroll = false
147
148                           const previousUrl = new URL(window.location.origin + e1.urlAfterRedirects)
149                           const nextUrl = new URL(window.location.origin + e2.urlAfterRedirects)
150
151                           if (previousUrl.pathname !== nextUrl.pathname) {
152                             resetScroll = true
153                             return
154                           }
155
156                           const nextSearchParams = nextUrl.searchParams
157                           nextSearchParams.delete('a-state')
158
159                           const previousSearchParams = previousUrl.searchParams
160
161                           nextSearchParams.sort()
162                           previousSearchParams.sort()
163
164                           if (nextSearchParams.toString() !== previousSearchParams.toString()) {
165                             resetScroll = true
166                           }
167                         } catch (e) {
168                           console.error('Cannot parse URL to check next scroll.', e)
169                           resetScroll = true
170                         }
171                       })
172
173     navigationEndEvent.pipe(
174       map(() => window.location.pathname),
175       filter(pathname => !pathname || pathname === '/' || is18nPath(pathname))
176     ).subscribe(() => this.redirectService.redirectToHomepage(true))
177
178     navigationEndEvent.subscribe(e => {
179       this.hooks.runAction('action:router.navigation-end', 'common', { path: e.url })
180     })
181
182     eventsObs.pipe(
183       filter((e: Event): e is GuardsCheckStart => e instanceof GuardsCheckStart),
184       filter(() => this.screenService.isInSmallView())
185     ).subscribe(() => this.menu.isMenuDisplayed = false) // User clicked on a link in the menu, change the page
186   }
187
188   private injectBroadcastMessage () {
189     concat(
190       this.serverService.getConfig().pipe(first()),
191       this.serverService.configReloaded
192     ).subscribe(async config => {
193       this.broadcastMessage = null
194
195       const messageConfig = config.broadcastMessage
196
197       if (messageConfig.enabled) {
198         // Already dismissed this message?
199         if (messageConfig.dismissable && localStorage.getItem(AppComponent.BROADCAST_MESSAGE_KEY) === messageConfig.message) {
200           return
201         }
202
203         const classes: { [id in BroadcastMessageLevel]: string } = {
204           info: 'alert-info',
205           warning: 'alert-warning',
206           error: 'alert-danger'
207         }
208
209         this.broadcastMessage = {
210           message: await this.markdownService.completeMarkdownToHTML(messageConfig.message),
211           dismissable: messageConfig.dismissable,
212           class: classes[messageConfig.level]
213         }
214       }
215     })
216   }
217
218   private injectJS () {
219     // Inject JS
220     this.serverService.getConfig()
221         .subscribe(config => {
222           if (config.instance.customizations.javascript) {
223             try {
224               // tslint:disable:no-eval
225               eval(config.instance.customizations.javascript)
226             } catch (err) {
227               console.error('Cannot eval custom JavaScript.', err)
228             }
229           }
230         })
231   }
232
233   private injectCSS () {
234     // Inject CSS if modified (admin config settings)
235     concat(
236       this.serverService.getConfig().pipe(first()),
237       this.serverService.configReloaded
238     ).subscribe(config => {
239       const headStyle = document.querySelector('style.custom-css-style')
240       if (headStyle) headStyle.parentNode.removeChild(headStyle)
241
242       // We test customCSS if the admin removed the css
243       if (this.customCSS || config.instance.customizations.css) {
244         const styleTag = '<style>' + config.instance.customizations.css + '</style>'
245         this.customCSS = this.domSanitizer.bypassSecurityTrustHtml(styleTag)
246       }
247     })
248   }
249
250   private async loadPlugins () {
251     this.pluginService.initializePlugins()
252
253     this.hooks.runAction('action:application.init', 'common')
254   }
255
256   private async openModalsIfNeeded () {
257     this.authService.userInformationLoaded
258         .pipe(
259           map(() => this.authService.getUser()),
260           filter(user => user.role === UserRole.ADMINISTRATOR)
261         ).subscribe(user => setTimeout(() => this._openAdminModalsIfNeeded(user))) // setTimeout because of ngIf in template
262   }
263
264   private async _openAdminModalsIfNeeded (user: User) {
265     if (user.noWelcomeModal !== true) return this.welcomeModal.show()
266
267     if (user.noInstanceConfigWarningModal === true || !this.serverConfig.signup.allowed) return
268
269     this.instanceService.getAbout()
270       .subscribe(about => {
271         if (
272           this.serverConfig.instance.name.toLowerCase() === 'peertube' ||
273           !about.instance.terms ||
274           !about.instance.administrator ||
275           !about.instance.maintenanceLifetime
276         ) {
277           this.instanceConfigWarningModal.show(about)
278         }
279       })
280   }
281
282   private initHotkeys () {
283     this.hotkeysService.add([
284       new Hotkey(['/', 's'], (event: KeyboardEvent): boolean => {
285         document.getElementById('search-video').focus()
286         return false
287       }, undefined, this.i18n('Focus the search bar')),
288
289       new Hotkey('b', (event: KeyboardEvent): boolean => {
290         this.menu.toggleMenu()
291         return false
292       }, undefined, this.i18n('Toggle the left menu')),
293
294       new Hotkey('g o', (event: KeyboardEvent): boolean => {
295         this.router.navigate([ '/videos/overview' ])
296         return false
297       }, undefined, this.i18n('Go to the discover videos page')),
298
299       new Hotkey('g t', (event: KeyboardEvent): boolean => {
300         this.router.navigate([ '/videos/trending' ])
301         return false
302       }, undefined, this.i18n('Go to the trending videos page')),
303
304       new Hotkey('g r', (event: KeyboardEvent): boolean => {
305         this.router.navigate([ '/videos/recently-added' ])
306         return false
307       }, undefined, this.i18n('Go to the recently added videos page')),
308
309       new Hotkey('g l', (event: KeyboardEvent): boolean => {
310         this.router.navigate([ '/videos/local' ])
311         return false
312       }, undefined, this.i18n('Go to the local videos page')),
313
314       new Hotkey('g u', (event: KeyboardEvent): boolean => {
315         this.router.navigate([ '/videos/upload' ])
316         return false
317       }, undefined, this.i18n('Go to the videos upload page'))
318     ])
319   }
320 }