import { Injectable, isDevMode } from '@angular/core'; import {HttpClient, HttpHeaders} from '@angular/common/http'; import {LocalStorageService} from 'angular-2-local-storage'; import {Observable} from 'rxjs'; import {ErrorComponent} from '../error/error.component'; import {ModalService} from '@inst-iot/bosch-angular-ui-components'; @Injectable({ providedIn: 'root' }) export class ApiService { private host = isDevMode() ? '/api' : 'https://definma-api.apps.de1.bosch-iot-cloud.com'; constructor( private http: HttpClient, private storage: LocalStorageService, private modalService: ModalService ) { } get hostName() { return this.host; } get(url, f: (data?: T, err?, headers?) => void = () => {}) { this.requestErrorHandler(this.http.get(this.host + url, this.options()), f); } post(url, data = null, f: (data?: T, err?, headers?) => void = () => {}) { this.requestErrorHandler(this.http.post(this.host + url, data, this.options()), f); } put(url, data = null, f: (data?: T, err?, headers?) => void = () => {}) { this.requestErrorHandler(this.http.put(this.host + url, data, this.options()), f); } delete(url, f: (data?: T, err?, headers?) => void = () => {}) { this.requestErrorHandler(this.http.delete(this.host + url, this.options()), f); } private requestErrorHandler(observable: Observable, f: (data?: T, err?, headers?) => void) { observable.subscribe(data => { f(data.body, undefined, data.headers.keys().reduce((s, e) => {s[e.toLowerCase()] = data.headers.get(e); return s; }, {})); }, err => { if (f.length === 2) { f(undefined, err); } else { const modalRef = this.modalService.openComponent(ErrorComponent); modalRef.instance.message = 'Network request failed!'; } }); } private options(): {headers: HttpHeaders, observe: 'body'} { return {headers: this.authOptions(), observe: 'response' as 'body'}; } private authOptions(): HttpHeaders { const auth = this.storage.get('basicAuth'); if (auth) { return new HttpHeaders({Authorization: 'Basic ' + auth}); } else { return new HttpHeaders(); } } }