aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/mediatorApp/src/models/mediatorServer.ts
blob: ff084b0c1d531e3aebcc632027f6a89be33ec28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
export type MediatorServer = {
   _id: string;
   name: string;
   url: string;
} 

export type XmlFileInfo = {
   filename: string;
   version: string;
} 

export type MediatorServerVersionInfo = {
   mediator: string;
   server: string;
   nexmls: XmlFileInfo[]; 
} 

export type ODLConfig = {
   User: string;
   Password: string;
   Port: number;
   Protocol: "http" | "https";
   Server: string;
   Trustall: boolean;
}; 

export const BusySymbol = Symbol("Busy");

export type MediatorConfig = {
   Name: string;
   DeviceIp: string;
   DevicePort: number;
   DeviceType: number;
   TrapPort: number;
   NcUsername: string;
   NcPassword: string;
   NcPort: number;
   NeXMLFile: string;
   ODLConfig: ODLConfig[];
}

export type MediatorConfigResponse = MediatorConfig & {
   IsNCConnected: boolean;
   IsNeConnected: boolean;
   autorun: boolean;
   fwactive: boolean;
   islocked: boolean;
   ncconnections:{}[];
   pid: number;
   // extended properties
   [BusySymbol]: boolean;
} 

export type MediatorServerDevice = {
  id: number;       // DeviceType
  device: string; 
  vendor: string;
  version: string;
  xml: string;      // NeXMLFile
}