aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/admin/friends/shared/friend.service.ts
blob: 75826fc17bccac2e7c2388d7997a5aa42db4e1fa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                           


                                             
                                                          






                                                           
                                        



                                                           



                                                                             

   





                                                                                  

                                                                             




                                                                           
                                                                             

   
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';

import { Friend } from './friend.model';
import { AuthHttp, RestExtractor } from '../../../shared';

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

  constructor (
    private authHttp: AuthHttp,
    private restExtractor: RestExtractor
  ) {}

  getFriends(): Observable<Friend[]> {
    return this.authHttp.get(FriendService.BASE_FRIEND_URL)
                        // Not implemented as a data list by the server yet
                        // .map(this.restExtractor.extractDataList)
                        .map((res) => res.json())
                        .catch((res) => this.restExtractor.handleError(res));
  }

  makeFriends(notEmptyUrls) {
    const body = {
      urls: notEmptyUrls
    };

    return this.authHttp.post(FriendService.BASE_FRIEND_URL + 'makefriends', body)
                        .map(this.restExtractor.extractDataBool)
                        .catch((res) => this.restExtractor.handleError(res));
  }

  quitFriends() {
    return this.authHttp.get(FriendService.BASE_FRIEND_URL + 'quitfriends')
                        .map(res => res.status)
                        .catch((res) => this.restExtractor.handleError(res));
  }
}