aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/angular/users/components/login/login.component.ts
blob: cecf5d2fd741c50b1d03e3c19e589e219f217855 (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
import { Component } from 'angular2/core';
import { Router } from 'angular2/router';

import { AuthService } from '../../services/auth.service';
import { AuthStatus } from '../../models/authStatus';
import { User } from '../../models/user';

@Component({
  selector: 'my-user-login',
  styleUrls: [ 'app/angular/users/components/login/login.component.css' ],
  templateUrl: 'app/angular/users/components/login/login.component.html'
})

export class UserLoginComponent {
  constructor(private _authService: AuthService, private _router: Router) {}

  login(username: string, password: string) {
    this._authService.login(username, password).subscribe(
      result => {
        const user = new User(username, result);
        user.save();

        this._authService.setStatus(AuthStatus.LoggedIn);

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