uoa-repository-manager-ui/src/app/services/monitor.service.ts

45 lines
1.3 KiB
TypeScript
Executable File

/*
* Created by myrto on 12/05/2017
*/
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { environment } from '../../environments/environment';
import { Observable } from 'rxjs';
import { JobsOfUser, StoredJob } from '../domain/typeScriptClasses';
import { URLParameter } from '../domain/url-parameter';
const headerOptions = {
headers : new HttpHeaders().set('Content-Type', 'application/json')
.set('Accept', 'application/json'),
withCredentials: true
};
@Injectable ()
export class MonitorService {
private apiUrl = environment.API_ENDPOINT + '/monitor/';
constructor(private httpClient: HttpClient) { }
getJobSummary(jobId: string, groupBy: string): Observable<StoredJob> {
const url = `${this.apiUrl}getJobSummary?jobId=${jobId}&groupBy=${groupBy}`;
console.log(`knocking on: ${url}`);
return this.httpClient.get<StoredJob>(url, headerOptions);
}
getJobsOfUser(params: URLParameter[]): Observable<JobsOfUser> {
let url = `${this.apiUrl}getJobsOfUser`;
if ( params.length > 0 ) {
url += `?`
for (const param of params) {
url += `${param.key}=${param.value[0]}&`; // An ending "&" in the url does no cause any issues.
}
}
console.log(`knocking on: ${url}`);
return this.httpClient.get<JobsOfUser>(url, headerOptions);
}
}