aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/header/header.component.ts
blob: 5fd1229307a9207a8870e3dc1cf99f39803fb3c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import { filter, first, map, tap } from 'rxjs/operators'
import { Component, OnInit } from '@angular/core'
import { ActivatedRoute, NavigationEnd, Params, Router } from '@angular/router'
import { getParameterByName } from '../shared/misc/utils'
import { AuthService, ServerService, Notifier } from '@app/core'
import { of } from 'rxjs'
import { ServerConfig } from '@shared/models'
import { I18n } from '@ngx-translate/i18n-polyfill'

@Component({
  selector: 'my-header',
  templateUrl: './header.component.html',
  styleUrls: [ './header.component.scss' ]
})

export class HeaderComponent implements OnInit {
  searchValue = ''
  ariaLabelTextForSearch = ''

  private serverConfig: ServerConfig

  constructor (
    private router: Router,
    private route: ActivatedRoute,
    private auth: AuthService,
    private serverService: ServerService,
    private authService: AuthService,
    private notifier: Notifier,
    private i18n: I18n
  ) {}

  ngOnInit () {
    this.ariaLabelTextForSearch = this.i18n('Search videos, channels')

    this.router.events
        .pipe(
          filter(e => e instanceof NavigationEnd),
          map(() => getParameterByName('search', window.location.href))
        )
        .subscribe(searchQuery => this.searchValue = searchQuery || '')

    this.serverConfig = this.serverService.getTmpConfig()
    this.serverService.getConfig().subscribe(
      config => this.serverConfig = config,

      err => this.notifier.error(err.message)
    )
  }

  get routerLink () {
    if (this.isUserLoggedIn()) {
      return [ '/videos/upload' ]
    } else if (this.isRegistrationAllowed()) {
      return [ '/signup' ]
    } else {
      return [ '/login', { fromUpload: true } ]
    }
  }

  doSearch () {
    const queryParams: Params = {}

    if (window.location.pathname === '/search' && this.route.snapshot.queryParams) {
      Object.assign(queryParams, this.route.snapshot.queryParams)
    }

    Object.assign(queryParams, { search: this.searchValue })

    const o = this.auth.isLoggedIn()
      ? this.loadUserLanguagesIfNeeded(queryParams)
      : of(true)

    o.subscribe(() => this.router.navigate([ '/search' ], { queryParams }))
  }

  isUserLoggedIn () {
    return this.authService.isLoggedIn()
  }

  isRegistrationAllowed () {
    return this.serverConfig.signup.allowed &&
           this.serverConfig.signup.allowedForCurrentIP
  }

  private loadUserLanguagesIfNeeded (queryParams: any) {
    if (queryParams && queryParams.languageOneOf) return of(queryParams)

    return this.auth.userInformationLoaded
               .pipe(
                 first(),
                 tap(() => Object.assign(queryParams, { languageOneOf: this.auth.getUser().videoLanguages }))
               )
  }
}