aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/users/shared/user.service.ts
blob: d9005b213e510a75ce1aa8e886eef0006ae58baa (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 'rxjs/add/operator/catch';
import 'rxjs/add/operator/map';

import { AuthHttp, RestExtractor, ResultList, 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,
    private restExtractor: RestExtractor
  ) {}

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

    return this.authHttp.post(UserService.BASE_USERS_URL, body)
                        .map(this.restExtractor.extractDataBool)
                        .catch(this.restExtractor.handleError);
  }

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

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

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

    return { users, totalUsers };
  }
}