blob: 234335585941e1a70892c78d19da5f68c41d3718 [file] [log] [blame]
import { Injectable, OnInit } from '@angular/core';
import { Http, Response, RequestOptions, URLSearchParams } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/do';
import { TreeService } from './tree.service';
import { Device } from '../inventory/device';
import { Session } from './session';
@Injectable()
export class SessionsService implements OnInit {
public sessions: Session[];
public activeSession: string;
constructor(private http: Http, private treeService: TreeService) {
this.activeSession = localStorage.getItem('activeSession');
if (!this.activeSession) {
this.activeSession = "";
}
}
ngOnInit(): void {
this.checkSessions();
}
storeData() {
localStorage.setItem('sessions', JSON.stringify(this.sessions));
}
loadData() {
this.sessions = JSON.parse(localStorage.getItem('sessions'));
if (!this.sessions) {
this.sessions = [];
}
for (let session of this.sessions) {
/* fix links in modifications data to link the currently reloaded objects */
for (let mod in session.modifications) {
if ('data' in session.modifications[mod]) {
session.modifications[mod]['data'] = this.treeService.pathNode(session, mod);
}
}
}
}
getActiveSession(key: string = this.activeSession): Session {
if (key) {
for (let i = this.sessions.length; i > 0; i--) {
if (this.sessions[i - 1].key == key) {
return this.sessions[i - 1];
}
}
}
return null;
}
changeActiveSession(key: string): Session {
if (!this.activeSession) {
return null;
}
let result = this.getActiveSession(key);
if (result) {
this.activeSession = key;
localStorage.setItem('activeSession', this.activeSession);
}
return result;
}
checkSessionIndex(i: number) {
this.alive(this.sessions[i].key).then(resp => {
if (!resp['success']) {
if (this.activeSession && this.sessions[i].key == this.activeSession) {
/* active session is not alive - select new active session
* as the one on the left from the current one, if there
* is no one, choose the one on the right */
if (i > 0) {
this.activeSession = this.sessions[i - 1].key;
} else if (i + 1 < this.sessions.length) {
this.activeSession = this.sessions[i + 1].key;
} else {
this.activeSession = "";
}
localStorage.setItem('activeSession', this.activeSession);
}
this.sessions.splice(i, 1);
this.storeData();
}
});
}
checkSession(key: string) {
for (let i in this.sessions) {
if (this.sessions[i].key == key) {
this.checkSessionIndex(Number(i));
break;
}
}
}
checkSessions() {
this.loadData();
/* verify that the sessions are still active */
for (let i = this.sessions.length; i > 0; i--) {
this.checkSessionIndex(i - 1);
}
}
collapse( activeSession, node = null ) {
if ( node ) {
delete node['children'];
activeSession.dataVisibility = 'mixed';
} else {
for ( let root of activeSession.data['children'] ) {
delete root['children'];
}
activeSession.dataVisibility = 'root';
}
this.treeService.updateHiddenFlags( activeSession );
this.storeData();
}
expand( activeSession, node, all: boolean ) {
node['loading'] = true;
this.rpcGetSubtree( activeSession.key, all, node['path'] ).subscribe( result => {
if ( result['success'] ) {
for ( let iter of result['data']['children'] ) {
this.treeService.setDirty( activeSession, iter );
}
node['children'] = result['data']['children'];
this.treeService.updateHiddenFlags( activeSession );
delete node['loading'];
this.storeData();
}
} );
}
checkValue(key: string, path: string, value: string): Observable<string[]> {
let params = new URLSearchParams();
params.set('key', key);
params.set('path', path);
params.set('value', value);
let options = new RequestOptions({ search: params });
return this.http.get('/netopeer/session/schema/checkvalue', options)
.map((resp: Response) => resp.json())
.catch((err: Response | any) => Observable.throw(err));
}
private filterSchemas(node, schemas) {
if (node['deleted'] || (node['info']['type'] & 0x18)) {
/* ignore deleted nodes and nodes that can be instantiated multiple times */
return;
}
for (let index in schemas) {
if (!schemas[index]['config'] ||
(schemas[index]['name'] == node['info']['name'] && schemas[index]['module'] == node['info']['module'])) {
/* 1. read-only node */
/* 2. the node is already instantiated */
schemas.splice(index, 1);
}
}
}
childrenSchemas(key: string, path: string, node = null) {
let params = new URLSearchParams();
params.set('key', key);
params.set('path', path);
params.set('relative', 'children');
let options = new RequestOptions({ search: params });
return this.http.get('/netopeer/session/schema', options)
.map((resp: Response) => {
let result = resp.json();
//console.log(result)
if (result['success'] && node) {
if ('children' in node) {
for (let iter of node['children']) {
this.filterSchemas(iter, result['data']);
}
}
if ('newChildren' in node) {
for (let iter of node['newChildren']) {
this.filterSchemas(iter, result['data']);
}
}
}
if (result['success']) {
return result['data'];
} else {
return [];
}
}).toPromise();
}
schemaValues(key: string, path: string) {
let params = new URLSearchParams();
params.set('key', key);
params.set('path', path);
let options = new RequestOptions({ search: params });
return this.http.get('/netopeer/session/schema/values', options)
.map((resp: Response) => resp.json()).toPromise();
}
alive(key: string): Promise<string[]> {
let params = new URLSearchParams();
params.set('key', key);
let options = new RequestOptions({ search: params });
return this.http.get('/netopeer/session/alive', options)
.map((resp: Response) => resp.json()).toPromise();
}
getCpblts(key: string): Observable<string[]> {
let params = new URLSearchParams();
params.set('key', key);
let options = new RequestOptions({ search: params });
return this.http.get('/netopeer/session/capabilities', options)
.map((resp: Response) => resp.json())
.catch((err: Response | any) => Observable.throw(err));
}
setDirty(node) {
let activeSession = this.getActiveSession();
if (!activeSession.modifications) {
return;
}
if (node['path'] in activeSession.modifications) {
node['dirty'] = true;
if (activeSession.modifications[node['path']]['type'] == 'change') {
activeSession.modifications[node['path']]['original'] = node['value'];
}
node['value'] = activeSession.modifications[node['path']]['value'];
}
/* recursion */
if ('children' in node) {
for (let child of node['children']) {
this.setDirty(child);
}
}
}
rpcGetSubtree(key: string, all: boolean, path: string = ""): Observable<string[]> {
let params = new URLSearchParams();
params.set('key', key);
params.set('recursive', String(all));
if (path.length) {
params.set('path', path);
}
let options = new RequestOptions({ search: params });
return this.http.get('/netopeer/session/rpcGet', options)
.map((resp: Response) => {
console.log(resp);
let result = resp.json();
if (!result['success']) {
this.checkSession(key);
}
return result;
})
.catch((err: Response | any) => Observable.throw(err));
}
rpcGet( activeSession: Session, all: boolean ) {
if ( activeSession.data ) {
if ( ( all && activeSession.dataVisibility == 'all' ) ||
( !all && activeSession.dataVisibility == 'root' ) ) {
return;
}
}
activeSession.loading = true;
delete activeSession.data;
this.rpcGetSubtree( activeSession.key, all ).subscribe( result => {
if ( result['success'] ) {
for ( let iter of result['data'] ) {
this.treeService.setDirty( activeSession, iter );
}
activeSession.data = {};
activeSession.data['path'] = '/';
activeSession.data['info'] = {};
activeSession.data['info']['config'] = true;
activeSession.data['info']['path'] = '/';
activeSession.data['children'] = result['data'];
if ( all ) {
activeSession.dataVisibility = 'all';
} else {
activeSession.dataVisibility = 'root';
}
}
activeSession.loading = false;
this.storeData();
} );
}
commit(key: string) {
let activeSession = this.getActiveSession(key);
let options = new RequestOptions({body: JSON.stringify({'key': key, 'modifications': activeSession.modifications})});
return this.http.post('/netopeer/session/commit', null, options)
.map((resp: Response) => resp.json()).toPromise();
}
close(key: string) {
let params = new URLSearchParams();
params.set('key', key);
let options = new RequestOptions({search: params});
return this.http.delete('/netopeer/session', options)
.map((resp: Response) => resp.json())
.do(resp => {
if (resp['success']) {
let index = this.sessions.findIndex((s: Session) => s.key == key);
this.sessions.splice(index, 1);
if (key == this.activeSession) {
if (index > 0) {
this.activeSession = this.sessions[index - 1].key;
} else if (this.sessions.length) {
this.activeSession = this.sessions[0].key;
} else {
this.activeSession = ""
}
}
this.storeData();
localStorage.setItem('activeSession', this.activeSession);
}
})
.catch((err: Response | any) => Observable.throw(err));
}
connect(dev: Device) {
let options = null; // = new RequestOptions({body: JSON.stringify({'id': dev.id})});
if (dev.id) {
options = new RequestOptions({body: JSON.stringify({'id': dev.id})});
} else {
options = new RequestOptions({body: JSON.stringify({'device': {'hostname': dev.hostname, 'port': dev.port, 'username': dev.username, 'password': dev.password}})});
}
return this.http.post('/netopeer/session', null, options)
.map((resp: Response) => resp.json())
.do(resp => {
if (resp['success']) {
this.sessions.push(new Session(resp['session-key'], dev));
this.activeSession = resp['session-key'];
this.storeData();
localStorage.setItem('activeSession', this.activeSession);
}
})
.catch((err: Response | any) => Observable.throw(err))
}
}