]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/friends/friend.service.ts
Client: Add authHttp service that authentificates the http request and
[github/Chocobozzz/PeerTube.git] / client / src / app / friends / friend.service.ts
1 import { Injectable } from '@angular/core';
2 import { Response } from '@angular/http';
3 import { Observable } from 'rxjs/Observable';
4
5 import { AuthHttp, AuthService } from '../shared';
6
7 @Injectable()
8 export class FriendService {
9 private static BASE_FRIEND_URL: string = '/api/v1/pods/';
10
11 constructor (private authHttp: AuthHttp, private authService: AuthService) {}
12
13 makeFriends() {
14 return this.authHttp.get(FriendService.BASE_FRIEND_URL + 'makefriends')
15 .map(res => res.status)
16 .catch(this.handleError);
17 }
18
19 quitFriends() {
20 return this.authHttp.get(FriendService.BASE_FRIEND_URL + 'quitfriends')
21 .map(res => res.status)
22 .catch(this.handleError);
23 }
24
25 private handleError (error: Response): Observable<number> {
26 console.error(error);
27 return Observable.throw(error.json().error || 'Server error');
28 }
29 }