aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/app/friends/friend.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/app/friends/friend.service.ts')
-rw-r--r--client/app/friends/friend.service.ts27
1 files changed, 27 insertions, 0 deletions
diff --git a/client/app/friends/friend.service.ts b/client/app/friends/friend.service.ts
new file mode 100644
index 000000000..d143ec40d
--- /dev/null
+++ b/client/app/friends/friend.service.ts
@@ -0,0 +1,27 @@
1import { Injectable } from '@angular/core';
2import { Http, Response } from '@angular/http';
3import { Observable } from 'rxjs/Rx';
4
5@Injectable()
6export class FriendService {
7 private _baseFriendsUrl = '/api/v1/pods/';
8
9 constructor (private http: Http) {}
10
11 makeFriends() {
12 return this.http.get(this._baseFriendsUrl + 'makefriends')
13 .map(res => <number> res.status)
14 .catch(this.handleError);
15 }
16
17 quitFriends() {
18 return this.http.get(this._baseFriendsUrl + 'quitfriends')
19 .map(res => <number> res.status)
20 .catch(this.handleError);
21 }
22
23 private handleError (error: Response) {
24 console.error(error);
25 return Observable.throw(error.json().error || 'Server error');
26 }
27}