aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/users/shared/user.service.ts
blob: be433f0a12113dc4e0111c9ec12e8be077445b64 (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
import { Injectable } from '@angular/core';
import { Response } from '@angular/http';
import { Observable } from 'rxjs/Observable';

import { AuthHttp, User } from '../../../shared';

@Injectable()
export class UserService {
  // TODO: merge this constant with account
  private static BASE_USERS_URL = '/api/v1/users/';

  constructor(private authHttp: AuthHttp) {}

  addUser(username: string, password: string) {
    const body = {
      username,
      password
    };

    return this.authHttp.post(UserService.BASE_USERS_URL, body);
  }

  getUsers() {
    return this.authHttp.get(UserService.BASE_USERS_URL)
                 .map(res => res.json())
                 .map(this.extractUsers)
                 .catch(this.handleError);
  }

  removeUser(user: User) {
    return this.authHttp.delete(UserService.BASE_USERS_URL + user.id);
  }

  private extractUsers(body: any) {
    const usersJson = body.data;
    const totalUsers = body.total;
    const users = [];
    for (const userJson of usersJson) {
      users.push(new User(userJson));
    }

    return { users, totalUsers };
  }

  private handleError(error: Response) {
    console.error(error);
    return Observable.throw(error.json().error || 'Server error');
  }
}