/** | |
* Author: Jakub Man <xmanja00@stud.fit.vutbr.cz> | |
* Service for handling profile operations | |
*/ | |
import { Injectable } from '@angular/core'; | |
import { HttpClient, HttpParams } from '@angular/common/http'; | |
import { Observable } from 'rxjs'; | |
import { ProfileDevice } from "../classes/ProfileDevice"; | |
import {ProfileItem} from '../classes/ProfileItem'; | |
import {GenericServerResponse} from '../classes/GenericServerResponse'; | |
// TODO: Caching to prevent multiple unnecessary HTTP requests | |
@Injectable({ | |
providedIn: 'root' | |
}) | |
export class ProfileService { | |
constructor( | |
private http: HttpClient | |
) {} | |
/** | |
* Get all devices from profile, that uses sets as a default profile | |
*/ | |
public getOnLoginProfile(): Observable<{devices: ProfileDevice[], name: string, connectOnLogin: boolean}> { | |
return this.http.get<{devices: ProfileDevice[], name: string, connectOnLogin: boolean}>('/netconf/profileOnLogin'); | |
} | |
public getProfileDevices(profileName: string): Observable<ProfileDevice[]> { | |
return this.http.get<ProfileDevice[]>('/netconf/profile/' + profileName); | |
} | |
public getAllProfileNames(): Observable<string[]> { | |
return this.http.get<string[]>('/netconf/profiles'); | |
} | |
public addProfile(name: string): Observable<object> { | |
return this.http.post<object>('/netconf/profile', {profile: name}); | |
} | |
public removeProfile(name: string): Observable<object> { | |
return this.http.post<object>('/netconf/removeProfile', {profile: name}); | |
} | |
public setActiveProfile(profileName: string): Observable<object> { | |
return this.http.post<object>('/netconf/activateProfile', {profile: profileName}); | |
} | |
public saveProfile(profileName: string, profiles: ProfileItem[]): Observable<GenericServerResponse> { | |
return this.http.post<GenericServerResponse>('/netconf/profileSet', {profile: profileName, value: profiles}); | |
} | |
public setProfileConnectOnLogin(profileName: string, value: boolean): Observable<GenericServerResponse> { | |
return this.http.post<GenericServerResponse>('/netconf/profile/setConnectOnLogin', {profile: profileName, value}); | |
} | |
} |