PeerTube/client/src/app/+admin/follows/shared/follow.service.ts

56 lines
2.1 KiB
TypeScript
Raw Normal View History

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'
2016-08-12 18:22:58 +02:00
import { SortMeta } from 'primeng/primeng'
import { RestExtractor, RestPagination, RestService } from '../../../shared'
2017-11-15 11:00:25 +01:00
import { AccountFollow, ResultList } from '../../../../../../shared'
2016-08-12 18:22:58 +02:00
@Injectable()
export class FollowService {
2017-11-16 17:16:42 +01:00
private static BASE_APPLICATION_URL = API_URL + '/api/v1/server'
2016-08-12 18:22:58 +02:00
constructor (
private authHttp: HttpClient,
private restService: RestService,
private restExtractor: RestExtractor
2016-08-12 18:22:58 +02:00
) {}
2017-11-15 11:00:25 +01:00
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))
2016-08-12 18:22:58 +02:00
}
2017-11-15 11:00:25 +01:00
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))
}
2017-11-20 11:19:23 +01:00
follow (notEmptyHosts: string[]) {
const body = {
hosts: notEmptyHosts
}
2017-11-17 15:20:42 +01:00
return this.authHttp.post(FollowService.BASE_APPLICATION_URL + '/following', body)
.map(this.restExtractor.extractDataBool)
.catch(res => this.restExtractor.handleError(res))
}
2017-11-20 11:19:23 +01:00
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))
}
2016-08-12 18:22:58 +02:00
}