aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/follows/shared/follow.service.ts
blob: 0bfbe8eb60e4437297dd400a87ab0a2a9f9c9fe5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                          

                                                             

                                
 


                                                                            
                                                                    

             
                            
                                                                  

               
                                 
                                     
                                        

      
                                                                                                    


                                                                        
                                                                                                                

                                                                                         

   
                                                                                                    







                                                                                                                
                                    
                  
                          
     
 
                                                                                      
                                                                
                                                                          
   





                                                                                                         
 
import { Injectable } from '@angular/core'
import { HttpClient, HttpParams } from '@angular/common/http'
import { Observable } from 'rxjs/Observable'
import 'rxjs/add/operator/catch'
import 'rxjs/add/operator/map'

import { SortMeta } from 'primeng/primeng'

import { RestExtractor, RestPagination, RestService } from '../../../shared'
import { AccountFollow, ResultList } from '../../../../../../shared'

@Injectable()
export class FollowService {
  private static BASE_APPLICATION_URL = API_URL + '/api/v1/server'

  constructor (
    private authHttp: HttpClient,
    private restService: RestService,
    private restExtractor: RestExtractor
  ) {}

  getFollowing (pagination: RestPagination, sort: SortMeta): Observable<ResultList<AccountFollow>> {
    let params = new HttpParams()
    params = this.restService.addRestGetParams(params, pagination, sort)

    return this.authHttp.get<ResultList<Account>>(FollowService.BASE_APPLICATION_URL + '/following', { params })
                        .map(res => this.restExtractor.convertResultListDateToHuman(res))
                        .catch(res => this.restExtractor.handleError(res))
  }

  getFollowers (pagination: RestPagination, sort: SortMeta): Observable<ResultList<AccountFollow>> {
    let params = new HttpParams()
    params = this.restService.addRestGetParams(params, pagination, sort)

    return this.authHttp.get<ResultList<Account>>(FollowService.BASE_APPLICATION_URL + '/followers', { params })
      .map(res => this.restExtractor.convertResultListDateToHuman(res))
      .catch(res => this.restExtractor.handleError(res))
  }

  follow (notEmptyHosts: string[]) {
    const body = {
      hosts: notEmptyHosts
    }

    return this.authHttp.post(FollowService.BASE_APPLICATION_URL + '/following', body)
                        .map(this.restExtractor.extractDataBool)
                        .catch(res => this.restExtractor.handleError(res))
  }

  unfollow (follow: AccountFollow) {
    return this.authHttp.delete(FollowService.BASE_APPLICATION_URL + '/following/' + follow.following.id)
      .map(this.restExtractor.extractDataBool)
      .catch(res => this.restExtractor.handleError(res))
  }
}