PeerTube/client/src/app/shared/video-abuse/video-abuse.service.ts

43 lines
1.6 KiB
TypeScript
Raw Normal View History

import { HttpClient, HttpParams } from '@angular/common/http'
2017-12-11 10:36:46 -06:00
import { Injectable } from '@angular/core'
import { SortMeta } from 'primeng/components/common/sortmeta'
import 'rxjs/add/operator/catch'
import 'rxjs/add/operator/map'
import { Observable } from 'rxjs/Observable'
2017-12-11 10:36:46 -06:00
import { ResultList, VideoAbuse } from '../../../../../shared'
import { environment } from '../../../environments/environment'
2018-01-31 03:41:44 -06:00
import { RestExtractor, RestPagination, RestService } from '../rest'
@Injectable()
export class VideoAbuseService {
2017-12-11 10:36:46 -06:00
private static BASE_VIDEO_ABUSE_URL = environment.apiUrl + '/api/v1/videos/'
constructor (
private authHttp: HttpClient,
private restService: RestService,
private restExtractor: RestExtractor
) {}
getVideoAbuses (pagination: RestPagination, sort: SortMeta): Observable<ResultList<VideoAbuse>> {
const url = VideoAbuseService.BASE_VIDEO_ABUSE_URL + 'abuse'
let params = new HttpParams()
params = this.restService.addRestGetParams(params, pagination, sort)
return this.authHttp.get<ResultList<VideoAbuse>>(url, { params })
.map(res => this.restExtractor.convertResultListDateToHuman(res))
.catch(res => this.restExtractor.handleError(res))
}
reportVideo (id: number, reason: string) {
const url = VideoAbuseService.BASE_VIDEO_ABUSE_URL + id + '/abuse'
const body = {
reason
}
return this.authHttp.post(url, body)
.map(this.restExtractor.extractDataBool)
.catch(res => this.restExtractor.handleError(res))
}
}