import { HttpClient, HttpParams } from '@angular/common/http' import { Observable } from 'rxjs' import { ObjectWithId } from 'src/app/data/object-with-id' import { Results } from 'src/app/data/results' import { environment } from 'src/environments/environment' export abstract class AbstractPaperlessService { protected baseUrl: string = environment.apiBaseUrl constructor(protected http: HttpClient, private resourceName: string) { } protected getResourceUrl(id?: number, action?: string): string { let url = `${this.baseUrl}${this.resourceName}/` if (id) { url += `${id}/` } if (action) { url += `${action}/` } return url } private getOrderingQueryParam(sortField: string, sortDirection: string) { if (sortField && sortDirection) { return (sortDirection == 'des' ? '-' : '') + sortField } else if (sortField) { return sortField } else { return null } } list(page?: number, pageSize?: number, sortField?: string, sortDirection?: string, extraParams?): Observable> { let httpParams = new HttpParams() if (page) { httpParams = httpParams.set('page', page.toString()) } if (pageSize) { httpParams = httpParams.set('page_size', pageSize.toString()) } let ordering = this.getOrderingQueryParam(sortField, sortDirection) if (ordering) { httpParams = httpParams.set('ordering', ordering) } for (let extraParamKey in extraParams) { if (extraParams[extraParamKey] != null) { httpParams = httpParams.set(extraParamKey, extraParams[extraParamKey]) } } return this.http.get>(this.getResourceUrl(), {params: httpParams}) } listAll(ordering?: string, extraParams?): Observable> { return this.list(1, 100000, ordering, extraParams) } get(id: number): Observable { return this.http.get(this.getResourceUrl(id)) } create(o: T): Observable { return this.http.post(this.getResourceUrl(), o) } delete(o: T): Observable { return this.http.delete(this.getResourceUrl(o.id)) } update(o: T): Observable { return this.http.put(this.getResourceUrl(o.id), o) } }