-
Notifications
You must be signed in to change notification settings - Fork 0
/
opsiconnection.pas
548 lines (497 loc) · 16.5 KB
/
opsiconnection.pas
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
unit opsiconnection;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
oslog,
oswebservice,
Process,
lazfileutils,
inifiles,
Variants,
lazproginfo,
fpjson,
jsonParser,
dialogs;
type
{ TOpsiConnection }
TOpsiConnection = class(TObject)
private
//opsiProducts:ISuperObject;
JSONDataForClient : TJSONData;
JSONConfigDataFromOpsiclientd: TJSONData;
JSONObjectProducts:TJSONObject;
JSONObjectProduct:TJSONObject;
JSONObjectConfigStates:TJSONObject;
function MyOpsiMethodCall(const method: string; parameters: array of string): string;
function MyOpsiMethodCall2(const method: string; parameters: array of string): string;
//opsiProduct:ISuperObject;
function GetDataFromNewDataStructure:boolean;
function GetDataFromOldDataStructure:boolean;
procedure GetConfigDataFromOPsiclientd;
procedure GetDepotID; deprecated;
procedure SetConfigdMode; //configd mode
procedure SetClientdMode(ClientID:string); //clientd mode
//function initConnection(const seconds: integer; var ConnectionInfo:string): boolean;
//procedure closeConnection;
public
MyClientID,
MyHostkey,
MyError,
MyDepotID,
MyService_URL: string;
MyExitcode,
MyLoglevel: integer;
ClientdMode : boolean;
OpsiData: TOpsi4Data;
procedure SetActionRequest(pid: string; request: string);
procedure SetRights(Path:String);
function GetActionRequests: TStringList;
function DoActionsOnDemand(var aErrorMessage: string):boolean;
function GetConfigState(ConfigProperty:String):TStringList;
procedure GetProductInfosFromServer;
procedure SelectProduct(Index:integer);
function GetProductValueAsString(key:string):string;
function GetProductValueAsInteger(key:string):integer;
function GetProductValueAsBoolean(key:string):boolean;
function ProductCount:integer;
constructor Create(fClientdMode:boolean; const ClientID:string = ''; fagent:String = '');overload;
destructor Destroy;override;
end;
var
OCKOpsiConnection:TOpsiConnection;
resourcestring
rsErrorIntConnection = 'Error while initializing opsiconnection';
rsNoValueFound = 'No value found! Set%sto';
rsKioskModeOld = 'Kiosk mode: old. Update to newer opsi version to get full'
+' functionality (e.g. disable software on demand) of Opsi Kiosk.';
rsNoDataFromServer = 'Could not get data from server.';
rsCouldNotSetRights = 'Could not set rights.';
implementation
const
{$IFDEF Windows}
opsiclientdconf =
'C:\Program Files (x86)\opsi.org\opsi-client-agent\opsiclientd\opsiclientd.conf';
{$ENDIF Windows}
{$IFDEF Unix}
//change this for UNIX!!!
opsiclientdconf =
'C:\Program Files (x86)\opsi.org\opsi-client-agent\opsiclientd\opsiclientd.conf';
{$ENDIF Unix}
procedure TOpsiConnection.SetConfigdMode;
var
MyInifile: TInifile;
begin
//opsiconfd mode
try
MyInifile := TIniFile.Create(opsiclientdconf);
MyService_URL := MyIniFile.ReadString('config_service', 'url', '');
MyClientID := MyIniFile.ReadString('global', 'host_id', '');
MyHostkey := MyIniFile.ReadString('global', 'opsi_host_key', '');
MyLoglevel := MyIniFile.ReadInteger('global', 'log_level', 5);
if MyService_URL = '' then LogDatei.log('Error while reading file: ' + opsiclientdconf,LLDebug);
//myloglevel := 7;
finally
MyInifile.Free;
end;
end;
procedure TOpsiConnection.SetClientdMode(ClientID: string);
begin
// opsiclientd mode
MyClientID := ClientID;
if MyClientID = '' then LogDatei.log('Error could not get ClientID.' ,LLDebug);
//MyClientID := oslog.getComputerName;
MyService_URL := 'https://localhost:4441/kiosk';
MyHostkey := '';
MyLoglevel := 7;
MyDepotID := '';
end;
function TOpsiConnection.MyOpsiMethodCall(const method: string; parameters: array of string): string;
var
omc: TOpsiMethodCall;
ErrorOccured: boolean;
resultstring: string;
begin
Result := '';
try
omc := TOpsiMethodCall.Create(method, parameters);
resultstring := OpsiData.checkAndRetrieve(omc, ErrorOccured);
Result := resultstring;
except
on e: Exception do
begin
LogDatei.log('Exception calling method: ' + method, LLerror);
logdatei.log('Exception: ' + E.message, LLError);
logdatei.log('Exception handled at: ' + getCallAddrStr, LLError);
logdatei.log_exception(E,LLError);
end;
end;
end;
function TOpsiConnection.MyOpsiMethodCall2(const method: string; parameters: array of string): string;
var
omc: TOpsiMethodCall;
errorOccured: boolean;
//resultstring: string;
resultstringlist: TStringList;
i: integer;
begin
try
omc := TOpsiMethodCall.Create(method, parameters);
resultstringlist := TStringList.Create;
resultstringlist := OpsiData.checkAndRetrieveList(omc, errorOccured);
for i := 0 to resultstringlist.Count - 1 do
Result := resultstringlist[i];
except
on e: Exception do
begin
LogDatei.log('Exception calling method: ' + method, LLerror);
logdatei.log('Exception: ' + E.message, LLError);
logdatei.log('Exception handled at: ' + getCallAddrStr, LLError);
logdatei.log_exception(E,LLError);
end;
end;
end;
{procedure TOpsiConnection.closeConnection;
var
StringJSON: string;
//new_obj: ISuperObject;
begin
try
StringJSON := MyOpsiMethodCall('backend_exit', []);
//new_obj := SO(resultstring).O['result'];
//JSONData := GetJSON(StringJSON).FindPath('result');
except
on e: Exception do
begin
logdatei.log('Exception closeConnection', LLError);
logdatei.log('Exception: ' + E.message, LLError);
logdatei.log('Exception handled at: ' + getCallAddrStr, LLError);
logdatei.log_exception(E,LLError);
end;
end;
end;}
function TOpsiConnection.GetDataFromNewDataStructure:boolean;
var
StringJSON,StringResult:string;
count :integer;
begin
try
{ new data structur }
StringJSON := MyOpsiMethodCall('getKioskProductInfosForClient', [myclientid, 'True']);
JSONDataForClient := GetJSON(StringJSON).FindPath('result');
//count := JSONDataProductInfos.Count;
//StringResult := JSONDataForClient.AsJSON;
JSONObjectProducts := TJSONObject(JSONDataForClient.FindPath('products'));
//count:= JSONObjectProducts.Count;
//StringResult := JSONObjectProducts.AsJSON;
JSONObjectConfigStates := TJSONObject(JSONDataForClient.FindPath('configStates'));
if (JSONObjectProducts <> nil) and (JSONObjectConfigStates <> nil) then
begin
Result := True;
LogDatei.log('Kiosk mode: new', LLInfo);
end
else
begin
Result := False;
LogDatei.log('Could not get data from new data structur.', LLInfo)
end;
except
LogDatei.log('Error using Kiosk mode: new', LLError);
end;
end;
function TOpsiConnection.GetDataFromOldDataStructure:boolean;
var
StringJSON:String;
//StringResult:string;
//count :integer;
begin
try
{ old data structur }
StringJSON := MyOpsiMethodCall('getKioskProductInfosForClient', [myclientid]);
JSONDataForClient := GetJSON(StringJSON).FindPath('result');
//count := JSONDataProductInfos.Count;
//StringResult := JSONDataForClient.AsJSON;
JSONObjectProducts := TJSONObject(JSONDataForClient);
//count:= JSONObjectProducts.Count;
//StringResult := JSONObjectProducts.AsJSON;
//StringResult := JSONData.Items[0].FindPath('configStates').AsJSON;
//count := JSONData.Items[0].FindPath('configStates').Count;
JSONObjectConfigStates := nil;
if (JSONObjectProducts) <> nil then
begin
Result := True;
ShowMessage(rsKioskModeOld);
LogDatei.log('Old kiosk mode', LLInfo);
end
else
begin
Result := False;
LogDatei.log('Could not get data from old data structur.', LLInfo)
end;
except
LogDatei.log('Error using Kiosk mode: old', LLError);
ShowMessage(rsNoDataFromServer)
end;
end;
procedure TOpsiConnection.GetConfigDataFromOpsiclientd;
var
JSONResponse: string;
begin
//JSONResponse := MyOpsiMethodCall('getDepotId', [myclientid]);
JSONResponse := '';
JSONResponse := MyOpsiMethodCall('getConfigDataFromOpsiclientd', []);
if JSONResponse <> '' then
begin
JSONConfigDataFromOpsiclientd := GetJSON(JSONResponse);
if JSONConfigDataFromOpsiclientd.FindPath('error').IsNull then
begin
MyDepotID := JSONConfigDataFromOpsiclientd.FindPath('result').FindPath('depot_id').AsString;
{parse here further config data from opsiclientd}
end;
end;
end;
procedure TOpsiConnection.GetDepotID; deprecated;
var
JSONResponse: string;
begin
JSONResponse := MyOpsiMethodCall('getDepotId', [MyClientID]);
if JSONResponse <> '' then
begin
if GetJSON(JSONResponse).FindPath('error').IsNull then
MyDepotID := GetJSON(JSONResponse).FindPath('result').AsString;
end;
end;
procedure TOpsiConnection.GetProductInfosFromServer;
begin
try
if not GetDataFromNewDataStructure then GetDataFromOldDataStructure;
except
on EExternalException do
begin
//GetDataFromOldDataStructure;
end;
end;
end;
procedure TOpsiConnection.SelectProduct(Index: integer);
begin
JSONObjectProduct := TJSONObject(JSONObjectProducts.Items[index]);
logdatei.log('Selected Product: ' + JSONObjectProduct.Strings['productId'], LLDebug2);
end;
function TOpsiConnection.GetProductValueAsString(key: string): string;
begin
if not JSONObjectProduct.Nulls[key] then
Result := JSONObjectProduct.Strings[key]
else Result := '';
//logdatei.log('read ' + key + ': ' + Result, LLDebug3);
end;
function TOpsiConnection.GetProductValueAsInteger(key: string): integer;
begin
if not JSONObjectProduct.Nulls[key] then
Result := JSONObjectProduct.Integers[key]
else
begin
ShowMessage(Format(rsNoValueFound, [key]) + ' 0.');
Result := 0;
end;
end;
function TOpsiConnection.GetProductValueAsBoolean(key: string): boolean;
begin
if not JSONObjectProduct.Nulls[key] then
Result := JSONObjectProduct.Booleans[key]
else
begin
ShowMessage(Format(rsNoValueFound, [key]) + ' false.');
Result := False;
end;
end;
function TOpsiConnection.ProductCount: integer;
begin
Result := JSONObjectProducts.Count;
end;
constructor TOpsiConnection.Create(fClientdMode: boolean;
const ClientID: string; fagent: String);
begin
inherited Create;
ClientdMode := fClientdMode;
MyExitcode := 0;
MyError := '';
try
if ClientdMode then SetClientdMode(ClientID)
else SetConfigdMode;
LogDatei.log('service_url=' + myservice_url, LLDebug2);
//LogDatei.log('service_pass=' + myhostkey, LLDebug2);
LogDatei.log('clientid=' + myclientid, LLDebug2);
LogDatei.log('service_user=' + myclientid, LLNotice);
LogDatei.AddToConfidentials(myhostkey);
LogDatei.log('host_key=' + myhostkey, LLdebug3);
OpsiData := TOpsi4Data.Create;
LogDatei.log('opsidata created', LLInfo);
//OpsiData.SetActualClient(myclientid);
OpsiData.InitOpsiConf(myservice_url, myclientid,
myhostkey, '', '', '', fagent);
LogDatei.log('opsidata initialized', LLNotice);
//TODO: change GetDepotID to GetConfigDataFromOpsiclientd if webservice can handle error cases
//GetConfigDataFromOpsiclientd;
GetDepotID; //deprecated
except
LogDatei.log('Error while initializing opsiconnection', LLError);
ShowMessage(rsErrorIntConnection);
end;
end;
destructor TOpsiConnection.Destroy;
begin
JSONDataForClient.Free;
JSONConfigDataFromOpsiclientd.Free;
if OpsiData <> nil then FreeAndNil(OpsiData);
inherited Destroy;
end;
procedure TOpsiConnection.SetActionRequest(pid: string; request: string);
var
resultstring: string;
begin
resultstring := MyOpsiMethodCall('setProductActionRequestWithDependencies',
[pid, MyClientID, request]);
end;
procedure TOpsiConnection.SetRights(Path: String);
var
resultstring: String;
begin
if ClientdMode then
begin
ShowMessage(rsCouldNotSetRights);
LogDatei.log('Could not set rights. Change ClientdMode to false. Current ClientdMode:'
+ BoolToStr(ClientdMode), LLDebug);
end
else
begin
resultstring := MyOpsiMethodCall('setRights', [Path]);
end;
end;
function TOpsiConnection.GetActionRequests: TStringList;
var
StringJSON, str: string;
//new_obj, opsiProduct: ISuperObject;
opsiProducts :TJSONData;
opsiProduct: TJSONObject;
i: integer;
begin
Result := TStringList.Create;
StringJSON := MyOpsiMethodCall('productOnClient_getObjects',
['[]', '{"clientId":"' + myclientid + '","actionRequest":["setup","uninstall"]}']);
//new_obj := SO(resultstring).O['result'];
opsiProducts := GetJSON(StringJSON).FindPath('result');
str := opsiProducts.AsJSON;
for i := 0 to opsiProducts.Count - 1 do
begin
opsiProduct := opsiProducts.Items[i] as TJSONObject;
Result.Add(opsiProduct.Strings['productId'] + '=' + opsiProduct.Strings['actionRequest']);//['actionRequest"'] ?
end;
opsiProducts.Free;
end;
function TOpsiConnection.DoActionsOnDemand(var aErrorMessage:string):boolean;
var
resultstring:String;
JSONResponse: TJSONData;
JSONError: TJSONData;
begin
Result := False;
resultstring := MyOpsiMethodCall('processActionRequests', []); //former 'fireEvent_software_on_demand'
LogDatei.log('DoActionsOnDemand: ' + resultstring, LLInfo);
JSONResponse := GetJSON(resultstring); //GetJSON(StringJSON).FindPath('result')
try
if Assigned(JSONResponse) then
begin
JSONError := JSONResponse.FindPath('error');
if JSONError.IsNull then
begin
aErrorMessage := '';
Result := True;
end
else
begin
aErrorMessage := JSONError.AsString;
Result := False;
end;
end;
finally
if Assigned(JSONResponse) then FreeAndNil(JSONResponse);
end;
end;
function TOpsiConnection.GetConfigState(ConfigProperty:String): TStringList;
var
i : integer;
begin
Result := TStringList.Create;
if JSONObjectConfigStates <> nil then
begin
if JSONObjectConfigStates.Find(ConfigProperty) <> nil then
begin
for i := 0 to JSONObjectConfigStates.Arrays[ConfigProperty].Count -1 do
Result.Add(JSONObjectConfigStates.Arrays[ConfigProperty].Items[i].AsString)
end
else
begin
Result.Add('False');
LogDatei.log('Could not find Host-Parameter/Config: "' + ConfigProperty + '" ! Please create the Host-Parameter/Config on the opsi-config-server.', LLWarning);
ShowMessage('Could not find Host-Parameter/Config:' + LineEnding + '"' + ConfigProperty + '"' + LineEnding + LineEnding + 'Please contact your administrator.')
end;
end
else
begin
Result.Add('False');
LogDatei.log('No ConfigState set for ' + ConfigProperty + ' !',LLInfo);
end;
end;
{function TOpsiConnection.initConnection(const seconds: integer; var ConnectionInfo:string): boolean;
var
networkup, timeout: boolean;
myseconds: integer;
resultstring: string;
begin
//FormProgressWindow.LabelDataLoad.Caption := 'Connecting to OPSI web service';
//FormProgressWindow.ProgressBar1.StepIt;
//FormOpsiClientKiosk.Cursor := crHourGlass;
//FormProgressWindow.ProcessMess;
Result := False;
networkup := False;
timeout := False;
myseconds := seconds;
repeat
try
if myseconds > 0 then
begin
resultstring := MyOpsiMethodCall('getDepotId', [myclientid]);
networkup := True;
end
else
timeout := True;
except
LogDatei.log('opsidata not connected - retry', LLInfo);
myseconds := myseconds - 1;
//FormProgressWindow.ProgressBar1.StepIt;
Sleep(1000);
end;
//FormProgressWindow.ProgressBar1.StepIt;
//FormProgressWindow.ProcessMess;
until networkup or timeout;
if networkup then
begin
LogDatei.log('opsidata connected', LLInfo);
//FormProgressWindow.ProgressBar1.StepIt;
//FormProgressWindow.ProcessMess;
//FormProgressWindow.LabelDataLoad.Caption := 'Connection done';
ConnectionInfo := 'Connected to ' + myservice_url + ' as ' + myclientid;
Result := True;
end
else
begin
LogDatei.log('init connection failed (timeout after ' + IntToStr(seconds) +
' seconds/retries.', LLError);
ConnectionInfo := 'Connection failed';
end;
//FormOpsiClientKiosk.Cursor := crArrow;
end;}
//initialization
//OckOpsiConnection := TOpsiConnection.Create(True);
end.