pdnsmanager/frontend/src/app/services/http.service.ts
2018-04-08 13:02:00 +02:00

85 lines
2.2 KiB
TypeScript

import { Injectable } from '@angular/core';
import { AxiosInstance, AxiosResponse } from 'axios';
import axios from 'axios';
import { StateService } from './state.service';
@Injectable()
export class HttpService {
http: AxiosInstance;
constructor(private gs: StateService) {
this.http = axios.create({
baseURL: 'api/v1/'
});
}
public async get(url: string, params: Object = {}): Promise<any> {
console.log('Get request');
const parts = [];
for (const [k, v] of Object.entries(params)) {
let value;
if (v instanceof Array) {
value = v.join(',');
} else {
value = v.toString();
}
parts.push(k + '=' + value);
}
const queryStr = parts.join('&');
const reqUrl = queryStr.length > 0 ? this.makeUrl(url) + '?' + queryStr : url;
return (await this.http({
url: reqUrl,
method: 'get',
headers: this.buildHeaders()
})).data;
}
public async post(url: string | Array<string>, data: Object = {}): Promise<any> {
return (await this.http({
url: this.makeUrl(url),
method: 'post',
data: data,
headers: this.buildHeaders()
})).data;
}
public async put(url: string | Array<string>, data: Object = {}): Promise<any> {
return (await this.http({
url: this.makeUrl(url),
method: 'put',
data: data,
headers: this.buildHeaders()
})).data;
}
public async delete(url: string | Array<string>): Promise<any> {
return (await this.http({
url: this.makeUrl(url),
method: 'delete',
headers: this.buildHeaders()
})).data;
}
private buildHeaders(): Object {
if (this.gs.apiToken !== null) {
return {
'X-Authentication': this.gs.apiToken
};
}
}
private makeUrl(url: string | Array<string>): string {
if (url instanceof Array) {
return url.join('/');
} else {
return url;
}
}
}