aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/app/friends/friend.service.ts
blob: d3684f08db021785e4780b7fd2eca268496fd5d9 (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
import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs/Rx';

import { AuthService } from '../shared/index';

@Injectable()
export class FriendService {
  private static BASE_FRIEND_URL: string = '/api/v1/pods/';

  constructor (private http: Http, private authService: AuthService) {}

  makeFriends() {
    const headers = this.authService.getRequestHeader();
    return this.http.get(FriendService.BASE_FRIEND_URL + 'makefriends', { headers })
                    .map(res => res.status)
                    .catch(this.handleError);
  }

  quitFriends() {
    const headers = this.authService.getRequestHeader();
    return this.http.get(FriendService.BASE_FRIEND_URL + 'quitfriends', { headers })
                    .map(res => res.status)
                    .catch(this.handleError);
  }

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