diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-06-03 22:08:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-06-03 22:08:03 +0200 |
commit | 4a6995be18b15de1834a39c8921a0e4109671bb6 (patch) | |
tree | b659661cea33687fcc6bd8fc2251cb7a15ab9f9d /client/src/app/friends | |
parent | 468892541175f9662f8b1b977e819dc1a496f282 (diff) | |
download | PeerTube-4a6995be18b15de1834a39c8921a0e4109671bb6.tar.gz PeerTube-4a6995be18b15de1834a39c8921a0e4109671bb6.tar.zst PeerTube-4a6995be18b15de1834a39c8921a0e4109671bb6.zip |
First draft to use webpack instead of systemjs
Diffstat (limited to 'client/src/app/friends')
-rw-r--r-- | client/src/app/friends/friend.service.ts | 31 | ||||
-rw-r--r-- | client/src/app/friends/index.ts | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/client/src/app/friends/friend.service.ts b/client/src/app/friends/friend.service.ts new file mode 100644 index 000000000..a8b1a1bd3 --- /dev/null +++ b/client/src/app/friends/friend.service.ts | |||
@@ -0,0 +1,31 @@ | |||
1 | import { Injectable } from '@angular/core'; | ||
2 | import { Http, Response } from '@angular/http'; | ||
3 | import { Observable } from 'rxjs/Rx'; | ||
4 | |||
5 | import { AuthService } from '../shared'; | ||
6 | |||
7 | @Injectable() | ||
8 | export class FriendService { | ||
9 | private static BASE_FRIEND_URL: string = '/api/v1/pods/'; | ||
10 | |||
11 | constructor (private http: Http, private authService: AuthService) {} | ||
12 | |||
13 | makeFriends() { | ||
14 | const headers = this.authService.getRequestHeader(); | ||
15 | return this.http.get(FriendService.BASE_FRIEND_URL + 'makefriends', { headers }) | ||
16 | .map(res => res.status) | ||
17 | .catch(this.handleError); | ||
18 | } | ||
19 | |||
20 | quitFriends() { | ||
21 | const headers = this.authService.getRequestHeader(); | ||
22 | return this.http.get(FriendService.BASE_FRIEND_URL + 'quitfriends', { headers }) | ||
23 | .map(res => res.status) | ||
24 | .catch(this.handleError); | ||
25 | } | ||
26 | |||
27 | private handleError (error: Response): Observable<number> { | ||
28 | console.error(error); | ||
29 | return Observable.throw(error.json().error || 'Server error'); | ||
30 | } | ||
31 | } | ||
diff --git a/client/src/app/friends/index.ts b/client/src/app/friends/index.ts new file mode 100644 index 000000000..0adc256c4 --- /dev/null +++ b/client/src/app/friends/index.ts | |||
@@ -0,0 +1 @@ | |||
export * from './friend.service'; | |||