aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/login/login.component.ts
blob: 768594ac42a817d2952c785acfebfd4d1c87deee (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
import { Component } from '@angular/core';
import { Router } from '@angular/router-deprecated';

import { AuthService, AuthStatus, User } from '../shared';

@Component({
  selector: 'my-login',
  template: require('./login.component.html')
})

export class LoginComponent {
  error: string = null;

  constructor(
    private authService: AuthService,
    private router: Router
  ) {}

  login(username: string, password: string) {
    this.authService.login(username, password).subscribe(
      result => {
        this.error = null;

        const user = new User(username, result);
        user.save();

        this.authService.setStatus(AuthStatus.LoggedIn);

        this.router.navigate(['VideosList']);
      },
      error => {
        if (error.error === 'invalid_grant') {
          this.error = 'Credentials are invalid.';
        } else {
          this.error = `${error.error}: ${error.error_description}`;
        }
      }
    );
  }
}