main.pas
117 KB
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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
(**
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Copyright 2000, 2001, 2002, 2003, 2004, 2005 Dataprev - Empresa de Tecnologia e Informações da Previdência Social, Brasil
Este arquivo é parte do programa CACIC - Configurador Automático e Coletor de Informações Computacionais
O CACIC é um software livre; você pode redistribui-lo e/ou modifica-lo dentro dos termos da Licença Pública Geral GNU como
publicada pela Fundação do Software Livre (FSF); na versão 2 da Licença, ou (na sua opinião) qualquer versão.
Este programa é distribuido na esperança que possa ser util, mas SEM NENHUMA GARANTIA; sem uma garantia implicita de ADEQUAÇÂO a qualquer
MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU para maiores detalhes.
Você deve ter recebido uma cópia da Licença Pública Geral GNU, sob o título "LICENCA.txt", junto com este programa, se não, escreva para a Fundação do Software
Livre(FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
---------------------------------------------------------------------------------------------------------------------------------------------------------------
*)
unit main;
interface
uses
Windows,
Messages,
Forms,
Menus,
Classes,
SysUtils,
Controls,
StdCtrls,
ExtCtrls,
ShellAPI,
registry,
dialogs,
ComCtrls,
IdBaseComponent,
IdComponent,
Buttons,
CACIC_Library,
CACIC_WMI,
ImgList,
Graphics,
USBdetectClass,
WinSVC,
SHChangeNotify, TrayIcon, AppEvnts;
//IdTCPServer;
//IdFTPServer;
const
KBYTE = Sizeof(Byte) shl 10;
MBYTE = KBYTE shl 10;
GBYTE = MBYTE shl 10;
NORMAL = 0; // Normal
COLETANDO = 1; // Raio - Coletando
DESCONFIGURADO = 2; // Interrogação - Identificando Host
EM_SUPORTE = 3; // Telefone - Em Suporte Remoto
LEFT_MENU_ITEM = 13; // Coordenada X para escrita das opções do menu de contexto
// Declaração das variáveis globais.
var strConfigsPatrimonio,
strMenuCaptionLAT,
strMenuCaptionCON,
strMenuCaptionEXE,
strMenuCaptionINF,
strMenuCaptionSUP,
strMenuCaptionFIN : string;
g_intTaskBarAtual,
g_intTaskBarAnterior,
g_intDesktopWindow,
g_intStatus,
g_intStatusAnterior,
g_intIconIndex : integer;
objCACIC: TCACIC;
type
TFormularioGeral = class(TForm)
Pn_InfosGerais: TPanel;
Pn_SisMoni: TPanel;
Lb_SisMoni: TLabel;
Pn_TCPIP: TPanel;
Lb_TCPIP: TLabel;
GB_InfosTCPIP: TGroupBox;
ST_VL_MacAddress: TStaticText;
ST_LB_MacAddress: TStaticText;
ST_LB_NomeHost: TStaticText;
ST_VL_NomeHost: TStaticText;
ST_LB_IpEstacao: TStaticText;
ST_LB_IpRede: TStaticText;
ST_LB_DominioDNS: TStaticText;
ST_LB_DnsPrimario: TStaticText;
ST_LB_DnsSecundario: TStaticText;
ST_LB_Gateway: TStaticText;
ST_LB_Mascara: TStaticText;
ST_LB_ServidorDHCP: TStaticText;
ST_LB_WinsPrimario: TStaticText;
ST_LB_WinsSecundario: TStaticText;
ST_VL_IpEstacao: TStaticText;
ST_VL_DNSPrimario: TStaticText;
ST_VL_DNSSecundario: TStaticText;
ST_VL_Gateway: TStaticText;
ST_VL_Mascara: TStaticText;
ST_VL_ServidorDHCP: TStaticText;
ST_VL_WinsPrimario: TStaticText;
ST_VL_WinsSecundario: TStaticText;
ST_VL_DominioDNS: TStaticText;
ST_VL_IpRede: TStaticText;
Pn_Linha1_TCPIP: TPanel;
Pn_Linha2_TCPIP: TPanel;
Pn_Linha3_TCPIP: TPanel;
Pn_Linha4_TCPIP: TPanel;
Pn_Linha6_TCPIP: TPanel;
Pn_Linha5_TCPIP: TPanel;
timerNuIntervalo: TTimer;
timerNuExecApos: TTimer;
Popup_Menu_Contexto: TPopupMenu;
Mnu_LogAtividades: TMenuItem;
Mnu_Configuracoes: TMenuItem;
Mnu_ExecutarAgora: TMenuItem;
Mnu_InformacoesGerais: TMenuItem;
Mnu_FinalizarCacic: TMenuItem;
listSistemasMonitorados: TListView;
pnColetasRealizadasNestaData: TPanel;
lbColetasRealizadasNestaData: TLabel;
listaColetas: TListView;
teDataColeta: TLabel;
pnInformacoesPatrimoniais: TPanel;
lbInformacoesPatrimoniais: TLabel;
gpInfosPatrimoniais: TGroupBox;
st_lb_Etiqueta5: TStaticText;
st_lb_Etiqueta1: TStaticText;
st_vl_Etiqueta1: TStaticText;
st_lb_Etiqueta1a: TStaticText;
st_lb_Etiqueta2: TStaticText;
st_lb_Etiqueta7: TStaticText;
st_lb_Etiqueta6: TStaticText;
st_lb_Etiqueta8: TStaticText;
st_vl_Etiqueta1a: TStaticText;
st_vl_Etiqueta2: TStaticText;
Panel6: TPanel;
Panel7: TPanel;
Panel8: TPanel;
Panel9: TPanel;
Panel11: TPanel;
st_lb_Etiqueta4: TStaticText;
st_lb_Etiqueta3: TStaticText;
st_vl_Etiqueta3: TStaticText;
st_lb_Etiqueta9: TStaticText;
st_vl_etiqueta4: TStaticText;
st_vl_etiqueta5: TStaticText;
st_vl_etiqueta6: TStaticText;
st_vl_etiqueta7: TStaticText;
st_vl_etiqueta8: TStaticText;
st_vl_etiqueta9: TStaticText;
Mnu_SuporteRemoto: TMenuItem;
lbSemInformacoesPatrimoniais: TLabel;
pnServidores: TPanel;
lbServidores: TLabel;
GroupBox1: TGroupBox;
staticVlServidorUpdates: TStaticText;
staticNmServidorUpdates: TStaticText;
staticNmServidorAplicacao: TStaticText;
staticVlServidorAplicacao: TStaticText;
Panel4: TPanel;
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
pnVersao: TPanel;
bt_Fechar_Infos_Gerais: TBitBtn;
ST_LB_DominioWindows: TStaticText;
ST_VL_DominioWindows: TStaticText;
cn: TSHChangeNotify;
imgIconList: TImageList;
timerCheckNoMinuto: TTimer;
TrayIcon1: TTrayIcon;
ApplicationEvents1: TApplicationEvents;
procedure RemoveIconesMortos;
procedure ChecaCONFIGS;
procedure CriaFormSenha(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Sair(Sender: TObject);
procedure MinimizaParaTrayArea(Sender: TObject);
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
procedure ExecutaCACIC(Sender: TObject);
procedure SetaVariaveisGlobais;
procedure ExibirLogAtividades(Sender: TObject);
procedure ExibirConfiguracoes(Sender: TObject);
procedure HabilitaInformacoesGerais;
procedure HabilitaSuporteRemoto;
procedure Mnu_InformacoesGeraisClick(Sender: TObject);
procedure Bt_Fechar_InfosGeraisClick(Sender: TObject);
function ChecaGERCOLS : boolean;
function FindWindowByTitle(WindowTitle: string): Hwnd;
function ActualActivity : integer;
function Posso_Rodar : boolean;
{
procedure IdHTTPServerCACICCommandGet(AThread: TIdPeerThread;
ARequestInfo: TIdHTTPRequestInfo;
AResponseInfo: TIdHTTPResponseInfo);
procedure IdFTPServer1UserLogin(ASender: TIdFTPServerThread;
const AUsername, APassword: String; var AAuthenticated: Boolean);
}
procedure Mnu_SuporteRemotoClick(Sender: TObject);
procedure Popup_Menu_ContextoPopup(Sender: TObject);
procedure CNAssocChanged(Sender: TObject; Flags: Cardinal; Path1,
Path2: String);
procedure CNAttributes(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNCreate(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNDelete(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNDriveAdd(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNDriveAddGUI(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNDriveRemoved(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNEndSessionQuery(Sender: TObject;
var CanEndSession: Boolean);
procedure CNMediaInserted(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNMediaRemoved(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNMkDir(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNNetShare(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNNetUnshare(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNRenameFolder(Sender: TObject; Flags: Cardinal; Path1,
Path2: String);
procedure CNRenameItem(Sender: TObject; Flags: Cardinal; Path1,
Path2: String);
procedure CNRmDir(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNServerDisconnect(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNUpdateDir(Sender: TObject; Flags: Cardinal; Path1: String);
procedure CNUpdateImage(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure CNUpdateItem(Sender: TObject; Flags: Cardinal;
Path1: String);
procedure timerCheckNoMinutoTimer(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure Mnu_LogAtividadesDrawItem(Sender: TObject; ACanvas: TCanvas;
ARect: TRect; Selected: Boolean);
procedure Mnu_ConfiguracoesDrawItem(Sender: TObject; ACanvas: TCanvas;
ARect: TRect; Selected: Boolean);
procedure Mnu_ExecutarAgoraDrawItem(Sender: TObject; ACanvas: TCanvas;
ARect: TRect; Selected: Boolean);
procedure Mnu_InformacoesGeraisDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
procedure Mnu_SuporteRemotoDrawItem(Sender: TObject; ACanvas: TCanvas;
ARect: TRect; Selected: Boolean);
procedure Mnu_FinalizarCacicDrawItem(Sender: TObject; ACanvas: TCanvas;
ARect: TRect; Selected: Boolean);
procedure timerNuExecAposTimer(Sender: TObject);
procedure timerNuIntervaloTimer(Sender: TObject);
procedure ApplicationEvents1Message(var Msg: tagMSG;
var Handled: Boolean);
private
FUsb : TUsbClass;
ShutdownEmExecucao : Boolean;
tstrListRCActions : TStringList;
IsMenuOpen : Boolean;
procedure CheckRCActions(pStrRCAction : String = '');
procedure UsbIN(ASender : TObject; const ADevType,AVendorID,ADeviceID : string);
procedure UsbOUT(ASender : TObject; const ADevType,AVendorID,ADeviceID : string);
procedure InicializaTray;
procedure Finaliza(boolNormal : boolean = true);
// procedure MontaVetoresPatrimonio(p_strConfigs : String);
procedure Invoca_GerCols(p_acao:string; boolShowInfo : Boolean = true; boolCheckExecution : Boolean = false);
procedure CheckIfDownloadedVersion;
procedure WMSysCommand(var Msg: TWMSysCommand); message WM_SYSCOMMAND;
// A procedure WMQueryEndSession é usada para detectar o
// Shutdown do Windows e "derrubar" o Cacic.
procedure WMQueryEndSession(var Msg : TWMQueryEndSession); Message WM_QUERYENDSESSION;
procedure WMMENUSELECT(var msg: TWMMENUSELECT); message WM_MENUSELECT;
function getDesktopWindowHandle : integer;
function RetornaValorVetorUON1(id1 : string) : String;
function RetornaValorVetorUON1a(id1a : string) : String;
function RetornaValorVetorUON2(id2, idLocal: string) : String;
function ServiceStart(sMachine,sService : string ) : boolean;
protected
public
strMainProgramInfFileName,
strChkSisInfFileName,
strGerColsInfFileName : String;
function URLDecode(const S: string): string;
procedure DrawBar(ACanvas: TCanvas); // TrayIcon - Peterles
end;
var FormularioGeral : TFormularioGeral;
boolServerON : Boolean;
strWin32_ComputerSystem,
strWin32_NetworkAdapterConfiguration : String;
rmTaskbarCreated : DWord;
implementation
{$R *.dfm}
Uses StrUtils,
Inifiles,
frmConfiguracoes,
frmSenha,
frmLog,
Math;
// Estruturas de dados para armazenar os itens da uon1, uon1a e uon2
type
TRegistroUON1 = record
id1 : String;
nm1 : String;
end;
TVetorUON1 = array of TRegistroUON1;
TRegistroUON1a = record
id1 : String;
id1a : String;
nm1a : String;
id_local: String;
end;
TVetorUON1a = array of TRegistroUON1a;
TRegistroUON2 = record
id1a : String;
id2 : String;
nm2 : String;
id_local: String;
end;
TVetorUON2 = array of TRegistroUON2;
var VetorUON1 : TVetorUON1;
VetorUON1a : TVetorUON1a;
VetorUON2 : TVetorUON2;
Function TFormularioGeral.RetornaValorVetorUON1(id1 : string) : String;
var I : Integer;
begin
For I := 0 to (Length(VetorUON1)-1) Do
If (VetorUON1[I].id1 = id1) Then Result := VetorUON1[I].nm1;
end;
Function TFormularioGeral.RetornaValorVetorUON1a(id1a : string) : String;
var I : Integer;
begin
For I := 0 to (Length(VetorUON1a)-1) Do
If (VetorUON1a[I].id1a = id1a) Then Result := VetorUON1a[I].nm1a;
end;
Function TFormularioGeral.RetornaValorVetorUON2(id2, idLocal: string) : String;
var I : Integer;
begin
For I := 0 to (Length(VetorUON2)-1) Do
If (VetorUON2[I].id2 = id2) and
(VetorUON2[I].id_local = idLocal) Then Result := VetorUON2[I].nm2;
end;
procedure TFormularioGeral.DrawBar(ACanvas: TCanvas);
var
lf : TLogFont;
tf : TFont;
begin
with ACanvas do begin
Brush.Color := clGrayText;
FillRect(Rect(0, //ALeft
0, //ATop
12, //ARight
122));//ABottom
Font.Name := 'Arial';
Font.Size := 7;
Font.Style := [fsBold];
Font.Color := clWhite;
tf := TFont.Create;
try
tf.Assign(Font);
GetObject(tf.Handle, sizeof(lf), @lf);
lf.lfEscapement := 900;
lf.lfHeight := Font.Height ;
tf.Handle := CreateFontIndirect(lf);
Font.Assign(tf);
finally
tf.Free;
end;
TextOut( -1, // X
102, pnVersao.Caption);
end;
end;
function TFormularioGeral.ServiceStart(sMachine,sService : string ) : boolean;
var
schm, // Service Control Manager Handle
schs : SC_Handle; // Service Handle
ss : TServiceStatus; // Service Status
psTemp : PChar; // Temp Char Pointer
dwChkP : DWord; // Check Point
begin
// ss.dwCurrentState := -1;
objCACIC.writeDebugLog('ServiceStart: ' + sService + ' - Iniciando!');
ss.dwCurrentState := 0;
// connect to the Service Control Manager
schm := OpenSCManager(PChar(sMachine),Nil,SC_MANAGER_CONNECT);
// if successful...
if(schm > 0)then
begin
// open a handle to the specified service
schs := OpenService(schm,PChar(sService),SERVICE_START or SERVICE_QUERY_STATUS); // we want to start the service and query service status
// if successful...
if(schs > 0)then
begin
psTemp := Nil;
if(StartService(
schs,
0,
psTemp))then
begin
// check status
if(QueryServiceStatus(
schs,
ss))then
begin
while(SERVICE_RUNNING
<> ss.dwCurrentState)do
begin
//
// dwCheckPoint contains a value that the service
// increments periodically to report its progress
// during a lengthy operation.
//
// save current value
//
dwChkP := ss.dwCheckPoint;
//
// wait a bit before checking status again
//
// dwWaitHint is the estimated amount of time
// the calling program should wait before calling
// QueryServiceStatus() again
//
// idle events should be handled here...
//
Sleep(ss.dwWaitHint);
if(not QueryServiceStatus(
schs,
ss))then
begin
// couldn't check status break from the loop
break;
end;
if(ss.dwCheckPoint <
dwChkP)then
begin
// QueryServiceStatus didn't increment dwCheckPoint as it
// should have.
// avoid an infinite loop by breaking
break;
end;
end;
end;
end;
// close service handle
CloseServiceHandle(schs);
end;
// close service control manager handle
CloseServiceHandle(schm);
end;
// return TRUE if the service status is running
Result := SERVICE_RUNNING = ss.dwCurrentState;
if Result then
objCACIC.writeDebugLog('ServiceStart: ' + sService + ' - OK!')
else
objCACIC.writeDebugLog('ServiceStart: ' + sService + ' - Não Foi Possível Iniciar!');
end;
// Início de Procedimentos para monitoramento de dispositivos USB - Anderson Peterle - 02/2010
procedure TFormularioGeral.UsbIN(ASender : TObject; const ADevType,AVendorID,ADeviceID : string);
begin
// Envio de valores ao Gerente WEB
// Formato: USBinfo=I_ddmmyyyyhhnnss_ADeviceID
// Os valores serão armazenados localmente (cacic280.inf) se for impossível o envio.
objCACIC.writeDebugLog('UsbIN: << USB INSERIDO .:. Vendor ID => ' + AVendorID + ' .:. Device ID = ' + ADeviceID);
Invoca_GerCols('USBinfo=I_'+FormatDateTime('yyyymmddhhnnss', now) + '_' + AVendorID + '_' + ADeviceID, false, false);
end;
procedure TFormularioGeral.UsbOUT(ASender : TObject; const ADevType,AVendorID,ADeviceID : string);
begin
// Envio de valores ao Gerente WEB
// Formato: USBinfo=O_ddmmyyyyhhnnss_ADeviceID
// Os valores serão armazenados localmente (cacic280.inf) se for impossível o envio.
objCACIC.writeDebugLog('UsbOUT: >> USB REMOVIDO .:. Vendor ID => ' + AVendorID + ' .:. Device ID = ' + ADeviceID);
Invoca_GerCols('USBinfo=O_'+FormatDateTime('yyyymmddhhnnss', now) + '_' + AVendorID + '_' + ADeviceID, false, false);
end;
// Fim de Procedimentos para monitoramento de dispositivos USB - Anderson Peterle - 02/2010
{
procedure TFormularioGeral.MontaVetoresPatrimonio(p_strConfigs : String);
var Parser : TXmlParser;
i : integer;
strAux,
strAux1,
strTagName,
strItemName : string;
begin
Parser := TXmlParser.Create;
Parser.Normalize := True;
Parser.LoadFromBuffer(PAnsiChar(p_strConfigs));
objCACIC.writeDebugLog('MontaVetoresPatrimonio: p_strConfigs: '+p_strConfigs);
// Código para montar o vetor UON1
Parser.StartScan;
i := -1;
strItemName := '';
strTagName := '';
While Parser.Scan DO
Begin
strItemName := UpperCase(Parser.CurName);
if (Parser.CurPartType = ptStartTag) and (strItemName = 'IT1') Then
Begin
i := i + 1;
SetLength(VetorUON1, i + 1); // Aumento o tamanho da matriz dinamicamente de acordo com o número de itens recebidos.
strTagName := 'IT1';
end
else if (Parser.CurPartType = ptEndTag) and (strItemName = 'IT1') then
strTagName := ''
else if (Parser.CurPartType in [ptContent, ptCData]) and (strTagName='IT1')Then
Begin
strAux1 := objCACIC.deCrypt(Parser.CurContent);
if (strItemName = 'ID1') then
Begin
VetorUON1[i].id1 := strAux1;
objCACIC.writeDebugLog('MontaVetoresPatrimonio: Gravei VetorUON1.id1: "'+strAux1+'"');
End
else if (strItemName = 'NM1') then
Begin
VetorUON1[i].nm1 := strAux1;
objCACIC.writeDebugLog('MontaVetoresPatrimonio: Gravei VetorUON1.nm1: "'+strAux1+'"');
End;
End;
End;
// Código para montar o vetor UON1a
Parser.StartScan;
strTagName := '';
strAux1 := '';
i := -1;
While Parser.Scan DO
Begin
strItemName := UpperCase(Parser.CurName);
if (Parser.CurPartType = ptStartTag) and (strItemName = 'IT1A') Then
Begin
i := i + 1;
SetLength(VetorUON1a, i + 1); // Aumento o tamanho da matriz dinamicamente de acordo com o número de itens recebidos.
strTagName := 'IT1A';
end
else if (Parser.CurPartType = ptEndTag) and (strItemName = 'IT1A') then
strTagName := ''
else if (Parser.CurPartType in [ptContent, ptCData]) and (strTagName='IT1A')Then
Begin
strAux1 := objCACIC.deCrypt(Parser.CurContent);
if (strItemName = 'ID1') then
Begin
VetorUON1a[i].id1 := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON1a.id1: "'+strAux1+'"');
End
else if (strItemName = 'SG_LOC') then
Begin
strAux := ' ('+strAux1 + ')';
End
else if (strItemName = 'ID1A') then
Begin
VetorUON1a[i].id1a := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON1a.id1a: "'+strAux1+'"');
End
else if (strItemName = 'NM1A') then
Begin
VetorUON1a[i].nm1a := strAux1+strAux;
objCACIC.writeDebugLog('Gravei VetorUON1a.nm1a: "'+strAux1+strAux+'"');
End
else if (strItemName = 'ID_LOCAL') then
Begin
VetorUON1a[i].id_local := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON1a.id_local: "'+strAux1+'"');
End;
End;
end;
// Código para montar o vetor UON2
Parser.StartScan;
strTagName := '';
i := -1;
While Parser.Scan DO
Begin
strItemName := UpperCase(Parser.CurName);
if (Parser.CurPartType = ptStartTag) and (strItemName = 'IT2') Then
Begin
i := i + 1;
SetLength(VetorUON2, i + 1); // Aumento o tamanho da matriz dinamicamente de acordo com o número de itens recebidos.
strTagName := 'IT2';
end
else if (Parser.CurPartType = ptEndTag) and (strItemName = 'IT2') then
strTagName := ''
else if (Parser.CurPartType in [ptContent, ptCData]) and (strTagName='IT2')Then
Begin
strAux1 := objCACIC.deCrypt(Parser.CurContent);
if (strItemName = 'ID1A') then
Begin
VetorUON2[i].id1a := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON2.id1a: "'+strAux1+'"');
End
else if (strItemName = 'ID2') then
Begin
VetorUON2[i].id2 := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON2.id2: "'+strAux1+'"');
End
else if (strItemName = 'NM2') then
Begin
VetorUON2[i].nm2 := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON2.nm2: "'+strAux1+'"');
End
else if (strItemName = 'ID_LOCAL') then
Begin
VetorUON2[i].id_local := strAux1;
objCACIC.writeDebugLog('Gravei VetorUON2.id_local: "'+strAux1+'"');
End;
End;
end;
Parser.Free;
end;
}
function TFormularioGeral.ActualActivity : integer;
Begin
// Se eu conseguir matar os arquivos abaixo é porque srCACICsrv, GerCols e mapaCACIC já finalizaram suas atividades...
objCACIC.writeDebugLog('ActualActivity: BEGIN');
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\aguarde_GER.txt');
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\aguarde_SRCACIC.txt');
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\aguarde_MAPACACIC.txt');
if not FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_GER.txt') and
not FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_SRCACIC.txt') and
not FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_MAPACACIC.txt') then
Result := 0 // NORMAL
else if FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_GER.txt') then
Result := 1 // COLETANDO
else if FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_SRCACIC.txt') then
Result := 3; // EM SUPORTE REMOTO
objCACIC.writeDebugLog('ActualActivity: Retornando '+IntToStr(Result));
objCACIC.writeDebugLog('ActualActivity: END');
End;
function Pode_Coletar : boolean;
var v_JANELAS_EXCECAO,
v_plural1,
v_plural2 : string;
tstrJANELAS : TStrings;
h : hwnd;
v_contador, intContaJANELAS, intAux : integer;
Begin
intContaJANELAS := 0;
h := 0;
if (FormularioGeral.ActualActivity = 0) then
Begin
// Verificação das janelas abertas para que não aconteça coletas caso haja aplicações pesadas rodando (configurado no Módulo Gerente)
v_JANELAS_EXCECAO := objCACIC.GetValueFromFile('Configs','TeJanelasExcecao', FormularioGeral.strMainProgramInfFileName);
objCACIC.writeDebugLog('Pode_Coletar: Verificando Janelas para Exceção...');
tstrJANELAS := TStrings.Create;
if (v_JANELAS_EXCECAO <> '') then
Begin
tstrJANELAS := objCACIC.explode(trim(v_JANELAS_EXCECAO),',');
if (tstrJANELAS.Count > 0) then
for intAux := 0 to tstrJANELAS.Count-1 Do
Begin
h := FormularioGeral.FindWindowByTitle(tstrJANELAS[intAux]);
if h <> 0 then intContaJANELAS := 1;
break;
End;
End;
// Caso alguma janela tenha algum nome de aplicação cadastrada como "crítica" ou "pesada"...
if (intContaJANELAS > 0) then
Begin
objCACIC.writeDailyLog('EXECUÇÃO DE ATIVIDADES ADIADA!');
v_contador := 0;
v_plural1 := '';
v_plural2 := 'ÃO';
for intAux := 0 to tstrJANELAS.Count-1 Do
Begin
h := FormularioGeral.FindWindowByTitle(tstrJANELAS[intAux]);
if h <> 0 then
Begin
v_contador := v_contador + 1;
objCACIC.writeDailyLog('Aplicação/Janela ' + inttostr(v_contador) + ': ' + tstrJANELAS[intAux]);
End;
End;
if (v_contador > 1) then
Begin
v_plural1 := 'S';
v_plural2 := 'ÕES';
End;
objCACIC.writeDailyLog('-> PARA PROCEDER, FINALIZE A' + v_plural1 + ' APLICAÇ' + v_plural2 + ' LISTADA' + v_plural1 + ' ACIMA.');
End;
End;
if (intContaJANELAS = 0) and (h = 0) and (FormularioGeral.ActualActivity = 0) then
Result := true
else
Begin
objCACIC.writeDebugLog('Pode_Coletar: A Ação foi NEGADA!');
if (intContaJANELAS=0) then
Begin
if (FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_GER.txt')) then
objCACIC.writeDebugLog('Pode_Coletar: Gerente de Coletas em atividade.');
if (FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_SRCACIC.txt')) then
objCACIC.writeDebugLog('Pode_Coletar: Suporte Remoto em atividade.');
if (FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_MAPACACIC.txt')) then
objCACIC.writeDebugLog('Pode_Coletar: Módulo Avulso para Coleta de Patrimônio em atividade.');
End;
//else
// objCACIC.cipherClose(objCACIC.getLocalFolderName + objCACIC.getDatFileName,v_tstrCipherOpened);
Result := false;
End;
End;
Procedure TFormularioGeral.RemoveIconesMortos;
var
TrayWindow : HWnd;
WindowRect : TRect;
SmallIconWidth : Integer;
SmallIconHeight : Integer;
CursorPos : TPoint;
Row : Integer;
Col : Integer;
begin
{ Get tray window handle and bounding rectangle }
TrayWindow := FindWindowEx(FindWindow('Shell_TrayWnd',NIL),0,'TrayNotifyWnd',NIL);
if not GetWindowRect(TrayWindow,WindowRect) then
Exit;
{ Get small icon metrics }
SmallIconWidth := GetSystemMetrics(SM_CXSMICON);
SmallIconHeight := GetSystemMetrics(SM_CYSMICON);
{ Save current mouse position }
GetCursorPos(CursorPos);
{ Sweep the mouse cursor over each icon in the tray in both dimensions }
with WindowRect do
begin
for Row := 0 to (Bottom - Top) DIV SmallIconHeight do
begin
for Col := 0 to (Right - Left) DIV SmallIconWidth do
begin
SetCursorPos(Left + Col * SmallIconWidth, Top + Row * SmallIconHeight);
Sleep(0);
end;
end;
end;
{ Restore mouse position }
SetCursorPos(CursorPos.X,CursorPos.Y);
{ Redraw tray window (to fix bug in multi-line tray area) }
RedrawWindow(TrayWindow,NIL,0,RDW_INVALIDATE OR RDW_ERASE OR RDW_UPDATENOW);
End;
procedure TFormularioGeral.WMMENUSELECT(var msg: TWMMENUSELECT);
begin
inherited;
IsMenuOpen := not ((msg.MenuFlag and $FFFF > 0) and (msg.Menu = 0));
end;
// Verifico a existência do Gerente de Coletas, caso não exista, o chksis.exe fará download!
function TFormularioGeral.ChecaGERCOLS : boolean;
var strFileSize : String;
Begin
Result := true;
objCACIC.writeDebugLog('ChecaGERCOLS: Verificando existência e tamanho do Gerente de Coletas...');
strFileSize := objCACIC.getFileSize(objCACIC.getLocalFolderName + 'Modules\gercols.exe',true);
if (strFileSize = '0') or (strFileSize = '-1') then
Begin
Result := false;
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Modules\gercols.exe');
InicializaTray;
objCACIC.writeDailyLog('Acionando Recuperador de Módulo Gerente de Coletas.');
objCACIC.writeDebugLog('ChecaGERCOLS: Acionando Recuperador de Módulo Gerente de Coletas: '+objCACIC.getWinDir + 'chksis.exe');
objCACIC.createOneProcess(objCACIC.getWinDir + 'chksis.exe',false,SW_HIDE);
sleep(30000); // 30 segundos de espera para download do gercols.exe
objCacic.setBoolCipher(not objCacic.isInDebugMode);
strFileSize := objCACIC.getFileSize(objCACIC.getLocalFolderName + '\Modules\gercols.exe',true);
if not(strFileSize = '0') and not(strFileSize = '-1') then
Begin
objCACIC.writeDailyLog('Módulo Gerente de Coletas RECUPERADO COM SUCESSO!');
objCACIC.writeDebugLog('ChecaGERCOLS: Módulo Gerente de Coletas RECUPERADO COM SUCESSO!');
InicializaTray;
Result := True;
End
else
Begin
objCACIC.writeDailyLog('Módulo Gerente de Coletas NÃO RECUPERADO!');
objCACIC.writeDebugLog('ChecaGERCOLS: Módulo Gerente de Coletas NÃO RECUPERADO!');
End;
End;
objCACIC.writeDebugLog('ChecaGERCOLS: ' + DupeString('=',100));
End;
procedure ExibirConfiguracoes(Sender: TObject);
begin
// SJI = Senha Já Informada...
// Esse valor é inicializado com "N"
if (objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','SJI',FormularioGeral.strMainProgramInfFileName)) = '') and
(objCACIC.GetValueFromFile('Configs','WebManagerAddress',FormularioGeral.strChkSisInfFileName) <> '') then
begin
FormularioGeral.CriaFormSenha(nil);
formSenha.ShowModal;
end;
if (objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','SJI',FormularioGeral.strMainProgramInfFileName)) <> '') or
(objCACIC.GetValueFromFile('Configs','WebManagerAddress',FormularioGeral.strChkSisInfFileName) = '') then
begin
Application.CreateForm(TFormConfiguracoes, FormConfiguracoes);
FormConfiguracoes.ShowModal;
end;
end;
procedure TFormularioGeral.CriaFormSenha(Sender: TObject);
begin
// Caso ainda não exista senha para administração do CACIC, define ADMINCACIC como inicial.
if (objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','TeSenhaAdmAgente',FormularioGeral.strMainProgramInfFileName),false,true) = '') Then
objCACIC.setValueToFile('Configs','TeSenhaAdmAgente', objCACIC.enCrypt('ADMINCACIC'), FormularioGeral.strMainProgramInfFileName);
Application.CreateForm(TFormSenha, FormSenha);
end;
procedure TFormularioGeral.ChecaCONFIGS;
var strAux : string;
Begin
// Verifico se o endereço do servidor do cacic foi configurado.
if (objCACIC.GetValueFromFile('Configs','WebManagerAddress',strChkSisInfFileName) = '') then
Begin
strAux := objCACIC.fixWebAddress(objCACIC.GetValueFromFile('Configs','WebManagerAddress', strChkSisInfFileName));
if (strAux = '') then
begin
strAux := 'ATENÇÃO: Endereço do servidor do CACIC ainda não foi configurado.';
objCACIC.writeDailyLog(strAux);
objCACIC.writeDailyLog('Ativando módulo de configuração de endereço de servidor.');
MessageDlg(strAux + chr(13) + 'Por favor, informe o endereço do servidor do CACIC na tela que será exibida a seguir.', mtWarning, [mbOk], 0);
ExibirConfiguracoes(Nil);
end;
End;
end;
procedure TFormularioGeral.HabilitaInformacoesGerais;
Begin
// Desabilita/Habilita a opção de Informações Gerais
Mnu_InformacoesGerais.Enabled := (objCACIC.getValueFromTags('Caption' ,strWin32_ComputerSystem) +
objCACIC.getValueFromTags('IPAddress' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('DNSDomain' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('DNSHostName' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('DNSServerSearchOrder',strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('DefaultIPGateway' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('IPSubnet' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('DHCPServer' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('WINSPrimaryServer' ,strWin32_NetworkAdapterConfiguration) +
objCACIC.getValueFromTags('WINSSecondaryServer' ,strWin32_NetworkAdapterConfiguration) <> '');
End;
procedure TFormularioGeral.HabilitaSuporteRemoto;
Begin
// Desabilita/Habilita a opção de Suporte Remoto
Mnu_SuporteRemoto.Enabled := (objCACIC.GetValueFromFile('Configs','CsSuporteRemoto',strMainProgramInfFileName) = 'S') and (FileExists(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe'));
End;
function TFormularioGeral.Posso_Rodar : boolean;
Begin
result := false;
objCACIC.writeDebugLog('Posso_Rodar: Verificando concomitância de sessões');
// Se eu conseguir matar o arquivo abaixo é porque não há outra sessão deste agente aberta... (POG? Nããão! :) )
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'aguarde_CACIC.txt');
Result := not (FileExists(objCACIC.getLocalFolderName + 'aguarde_CACIC.txt'));
End;
procedure TFormularioGeral.FormCreate(Sender: TObject);
var textFileAguarde : TextFile;
begin
objCACIC := TCACIC.Create;
objCACIC.setLocalFolderName(ExtractFilePath(ParamStr(0)));
objCACIC.setMainProgramName(ExtractFileName(ParamStr(0)));
objCACIC.setBoolCipher(not objCACIC.isInDebugMode);
strMainProgramInfFileName := objCACIC.getLocalFolderName + ChangeFileExt(objCACIC.getMainProgramName,'.inf');
strGerColsInfFileName := objCACIC.getLocalFolderName + 'gercols.inf';
strChkSisInfFileName := objCACIC.getWinDir + 'chksis.inf';
// A verificação dupla é uma solução de contorno para o caso de o boolCipher ter sido setado após criptografia/deCriptografia do dado gravado
if (objCACIC.deCrypt( objCACIC.getValueFromFile('Hash-Codes',objCACIC.getMainProgramName,strChkSisInfFileName),false,true) = objCACIC.getFileHash(ParamStr(0))) then
Begin
objCACIC.setMainProgramHash(objCACIC.getFileHash(ParamStr(0)));
objCACIC.setWebManagerAddress(objCACIC.getValueFromFile('Configs','WebManagerAddress',strChkSisInfFileName));
objCACIC.setWebServicesFolderName(objCACIC.getValueFromFile('Configs','WebServicesFolderName',strChkSisInfFileName));
rmTaskbarCreated := RegisterWindowMessage('TaskbarCreated');
pnVersao.Caption := 'CACIC v:' + objCACIC.getVersionInfo(ParamStr(0));
g_intIconIndex := 0;
Popup_Menu_Contexto.OwnerDraw := True;
strWin32_NetworkAdapterConfiguration := fetchWMIvalues('Win32_NetworkAdapterConfiguration', objCACIC.getLocalFolderName);
strWin32_ComputerSystem := fetchWMIvalues('Win32_ComputerSystem', objCACIC.getLocalFolderName);
TrayIcon1 := TTrayIcon.Create(self);
TrayIcon1.Hint := pnVersao.Caption;
if not (objCACIC.getValueFromTags('IPAddress',strWin32_NetworkAdapterConfiguration) = '') then
TrayIcon1.Hint := pnVersao.Caption + chr(13) + 'IP: ' + objCACIC.getValueFromTags('IPAddress',strWin32_NetworkAdapterConfiguration);
TrayIcon1.PopupMenu := Popup_Menu_Contexto;
imgIconList.GetIcon(0,TrayIcon1.Icon);
TrayIcon1.Show;
// Criação do objeto para monitoramento de dispositivos USB
FUsb := TUsbClass.Create;
FUsb.OnUsbInsertion := UsbIN;
FUsb.OnUsbRemoval := UsbOUT;
// Essas variáveis ajudarão a controlar o redesenho do ícone no systray,
// evitando o "roubo" do foco.
g_intTaskBarAtual := 0;
g_intTaskBarAnterior := 0;
g_intDesktopWindow := 0;
// Não mostrar o formulário...
Application.ShowMainForm := false;
g_intStatusAnterior := -1;
// Aplicar traduções GetText,etc...
//
//
strMenuCaptionLAT := Mnu_LogAtividades.Caption;
strMenuCaptionCON := Mnu_Configuracoes.Caption;
strMenuCaptionEXE := Mnu_ExecutarAgora.Caption;
strMenuCaptionINF := Mnu_InformacoesGerais.Caption;
strMenuCaptionSUP := Mnu_SuporteRemoto.Caption;
strMenuCaptionFIN := Mnu_FinalizarCacic.Caption;
Try
// Apago o indicador de finalização normal
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'normal_CACIC.txt');
if not DirectoryExists(objCACIC.getLocalFolderName + 'Temp') then
begin
ForceDirectories(objCACIC.getLocalFolderName + 'Temp');
FileSetAttr (objCACIC.getLocalFolderName + 'Temp',0); // Retira os atributos para evitar o erro I/O 32
objCACIC.writeDailyLog('Criando pasta '+objCACIC.getLocalFolderName + 'Temp');
end;
if not DirectoryExists(objCACIC.getLocalFolderName + 'Modules') then
begin
ForceDirectories(objCACIC.getLocalFolderName + 'Modules');
FileSetAttr (objCACIC.getLocalFolderName + 'Modules',0); // Retira os atributos para evitar o erro I/O 32
objCACIC.writeDailyLog('Criando pasta '+objCACIC.getLocalFolderName + 'Modules');
end;
objCACIC.writeDebugLog('FormCreate: Pasta Local do Sistema: "' + objCACIC.getLocalFolderName + '"');
if Posso_Rodar then
Begin
// Uma forma fácil de evitar que outra sessão deste agente seja iniciada! (POG? Nããããooo!) :))))
AssignFile(textFileAguarde,objCACIC.getLocalFolderName + 'aguarde_CACIC.txt'); {Associa o arquivo a uma variável do tipo TextFile}
{$IOChecks off}
Reset(textFileAguarde); {Abre o arquivo texto}
{$IOChecks on}
if (IOResult <> 0) then // Arquivo não existe, será recriado.
Rewrite (textFileAguarde);
Append(textFileAguarde);
Writeln(textFileAguarde,'Apenas um pseudo-cookie para evitar sessões concomitantes...');
Append(textFileAguarde);
Writeln(textFileAguarde,'Futuramente penso em colocar aqui o pID, para possibilitar finalização via software externo...');
Append(textFileAguarde);
// Inicializo bloqueando o módulo de suporte remoto seguro na FireWall nativa.
if FileExists(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe') then
objCACIC.addApplicationToFirewall('srCACIC - Suporte Remoto Seguro do Sistema CACIC',objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe', false);
CheckIfDownloadedVersion;
If FindCmdLineSwitch('execute', True) or
FindCmdLineSwitch('atualizacao', True) Then
begin
if FindCmdLineSwitch('atualizacao', True) then
begin
objCACIC.writeDebugLog('FormCreate: Opção /atualizacao recebida...');
objCACIC.writeDailyLog('Reinicializando com versão '+ objCACIC.GetVersionInfo(ParamStr(0)));
end
else
begin
objCACIC.writeDebugLog('FormCreate: Opção /execute recebida...');
objCACIC.writeDailyLog('Opção para execução imediata encontrada...');
end;
ExecutaCACIC(nil);
end;
// Os timers iniciam-se desabilitados... Mais à frente receberão parâmetros de tempo para execução.
timerNuExecApos.Enabled := False;
timerNuIntervalo.Enabled := False;
// Derruba o cacic durante o shutdown do windows.
ShutdownEmExecucao := False;
// Não mostrar o formulário...
//Application.ShowMainForm:=false;
Try
// A chamada abaixo define os valores usados pelo agente principal.
SetaVariaveisGlobais;
Except
on E : Exception do
objCACIC.writeExceptionLog(E.Message,E.ClassName,'SETANDO VARIÁVEIS GLOBAIS!');
End;
timerNuExecApos.Enabled := True;
InicializaTray;
// String list e objeto para captura de ações durante suporte remoto
tstrListRCActions := TStringList.Create;
End
else
Begin
objCACIC.writeDebugLog('FormCreate: Agente finalizado devido a concomitância de sessões...');
Finaliza;
End;
Except
on E:Exception do
Begin
objCACIC.writeExceptionLog(E.Message,e.ClassName,'PROBLEMAS NA INICIALIZAÇÃO (2)');
Finaliza(false);
End;
End
End
else
Begin
objCACIC.writeDailyLog('Execução Impedida por Falta de Integridade do Agente Principal!');
Finaliza(false);
End;
end;
procedure TFormularioGeral.SetaVariaveisGlobais;
var v_aux : string;
Begin
Try
// Inicialização do indicador de SENHA JÁ INFORMADA
objCACIC.setValueToFile('Configs','SJI',objCACIC.enCrypt(''),strMainProgramInfFileName);
if (Trim(objCACIC.GetValueFromFile('Configs','InExibeBandeja' ,strMainProgramInfFileName)) = '') or
((Trim(objCACIC.GetValueFromFile('Configs','InExibeBandeja' ,strMainProgramInfFileName)) <> 'S')) then
objCACIC.setValueToFile('Configs','InExibeBandeja' , 'S' ,strMainProgramInfFileName);
if (objCACIC.GetValueFromFile('Configs','NuExecApos' ,strMainProgramInfFileName) = '') then
objCACIC.setValueToFile('Configs','NuExecApos' , '12345',strMainProgramInfFileName);
if (Trim(objCACIC.GetValueFromFile('Configs','NuIntervaloExec',strMainProgramInfFileName)) = '') then
objCACIC.setValueToFile('Configs','NuIntervaloExec', '4' ,strMainProgramInfFileName);
// IN_EXIBE_BANDEJA O valor padrão é mostrar o ícone na bandeja.
// NU_EXEC_APOS Assumirá o padrão de 0 minutos para execução imediata em caso de primeira execução (instalação).
// NU_INTERVALO_EXEC Assumirá o padrão de 4 horas para o intervalo, no caso de problemas.
// Número de horas do intervalo (3.600.000 milisegundos correspondem a 1 hora).
timerNuIntervalo.Interval := strtoint(objCACIC.GetValueFromFile('Configs','NuIntervaloExec',strMainProgramInfFileName)) * 3600000;
// Número de minutos para iniciar a execução (60.000 milisegundos correspondem a 1 minuto). Acrescento 1, pois se for zero ele não executa.
timerNuExecApos.Interval := (strtoint(objCACIC.GetValueFromFile('Configs','NuExecApos',strMainProgramInfFileName)) * 60000) + 1000;
// Se for a primeiríssima execução do agente naquela máquina (após sua instalação) já faz todas as coletas configuradas, sem esperar os minutos definidos pelo administrador.
// Também armazena os Hash-Codes dos módulos principais, evitando novo download...
If (objCACIC.GetValueFromFile('Configs','NuExecApos',strMainProgramInfFileName) = '12345') then // Flag usada na inicialização. Só entra nesse if se for a primeira execução do cacic após carregado.
begin
timerNuExecApos.Interval := 1000; // 1 minuto para chamar GerCols /coletas
objCACIC.setValueToFile('Configs','NuExecApos', '1',strMainProgramInfFileName);
end
else if (FileExists(objCACIC.getLocalFolderName + 'Temp\atualiza_CACIC.txt')) then
Begin
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\atualiza_CACIC.txt');
timerNuExecApos.Interval := 1000; // 1 minuto para chamar GerCols /coletas
objCACIC.writeDailyLog('Reinicializando com versão '+ objCACIC.GetVersionInfo(ParamStr(0)));
End
else
Begin
objCACIC.writeDailyLog('Inicio automático de coletas programado para ' + objCACIC.GetValueFromFile('Configs','NuExecApos',strMainProgramInfFileName) + ' minutos.');
objCACIC.writeDailyLog('Executar as ações de coletas automaticamente a cada ' + objCACIC.GetValueFromFile('Configs','NuIntervaloExec',strMainProgramInfFileName) + ' horas.');
objCACIC.writeDailyLog(DupeString('=',100));
End;
v_aux := Trim(objCACIC.GetValueFromFile('Configs','DtHrUltimaColeta',strGerColsInfFileName));
if (v_aux <> '') and (Copy(v_aux, 1, 8) <> FormatDateTime('YYYYmmdd', Now)) then timerNuExecApos.Enabled := True;
// Desabilita/Habilita a opção de Informações Gerais
HabilitaInformacoesGerais;
// Desabilita/Habilita a opção de Suporte Remoto
HabilitaSuporteRemoto;
InicializaTray;
Except
on E : Exception do
Begin
objCACIC.writeExceptionLog(E.Message,E.ClassName,'PROBLEMAS NA INICIALIZAÇÃO (1)');
Finaliza;
End;
End;
end;
procedure TFormularioGeral.Finaliza(boolNormal : boolean = true);
var txtFileNormal : TextFile;
Begin
Try
cn.Stop;
FreeAndNil(cn);
FreeAndNil(FUsb);
RemoveIconesMortos;
if (boolNormal) then
Begin
// Criando um indicador de finalização normal da aplicação,
// evitando que o chkSIS.exe baixe outra cópia do Agente Principal ao "achar" que o agente encontra-se com problema.
AssignFile(txtFileNormal,objCACIC.getLocalFolderName + 'normal_CACIC.txt'); {Associa o arquivo a uma variável do tipo TextFile}
{$IOChecks off}
Reset(txtFileNormal); {Abre o arquivo texto}
{$IOChecks on}
if (IOResult <> 0) then // Arquivo não existe, será recriado.
Rewrite (txtFileNormal);
Append(txtFileNormal);
Writeln(txtFileNormal,'O Agente Principal do CACIC foi finalizado normalmente.');
Append(txtFileNormal);
CloseFile(txtFileNormal);
End;
Except
on E : Exception do
objCACIC.writeExceptionLog(E.Message,E.ClassName,'PROBLEMAS NA FINALIZAÇÃO');
End;
objCACIC.Free;
Halt(0);
End;
procedure TFormularioGeral.Sair(Sender: TObject);
begin
CriaFormSenha(nil);
formSenha.ShowModal;
If (objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','SJI',strMainProgramInfFileName)) = 'S') Then Finaliza(true);
end;
procedure TFormularioGeral.Invoca_GerCols(p_acao:string; boolShowInfo : Boolean = true; boolCheckExecution : Boolean = false);
begin
if not boolCheckExecution or
(boolCheckExecution and
(ActualActivity = 0)) then
Begin
// Caso exista o Gerente de Coletas será verificada a versão e excluída caso antiga(Uma forma de ação pró-ativa)
if ChecaGERCOLS then
Begin
ChecaCONFIGS;
objCACIC.writeDebugLog('Invoca_GerCols: Invocando Gerente de Coletas com ação: "'+p_acao+'"');
if boolShowInfo then
objCACIC.writeDailyLog('Invocando Gerente de Coletas com ação: "'+p_acao+'"');
timerNuExecApos.Enabled := False;
objCACIC.writeDebugLog('Invoca_GerCols: Criando Processo GerCols => "'+objCACIC.getLocalFolderName + 'Modules\gercols.exe /'+p_acao+' /WebServicesFolderName='+objCACIC.getWebServicesFolderName +' /LocalFolderName='+objCACIC.getLocalFolderName + ' /WebManagerAddress=' + objCACIC.getWebManagerAddress + '"');
objCACIC.createOneProcess(objCACIC.getLocalFolderName + 'Modules\gercols.exe /'+p_acao+' /WebServicesFolderName='+objCACIC.getWebServicesFolderName +' /LocalFolderName='+objCACIC.getLocalFolderName + ' /WebManagerAddress=' + objCACIC.getWebManagerAddress + ' /MainProgramName=' + objCACIC.getMainProgramName + ' /MainProgramHash=' + objCACIC.getMainProgramHash,false,SW_HIDE);
g_intStatus := 1;
objCacic.setBoolCipher(not objCacic.isInDebugMode);
End
else
objCACIC.writeDailyLog('Não foi possível invocar o Gerente de Coletas!');
End;
end;
function TFormularioGeral.FindWindowByTitle(WindowTitle: string): Hwnd;
var
NextHandle: Hwnd;
NextTitle: array[0..260] of char;
begin
// Get the first window
NextHandle := GetWindow(Application.Handle, GW_HWNDFIRST);
while NextHandle > 0 do
begin
// retrieve its text
GetWindowText(NextHandle, NextTitle, 255);
if (trim(StrPas(NextTitle))<> '') and (Pos(strlower(pchar(WindowTitle)), strlower(PChar(StrPas(NextTitle)))) <> 0) then
begin
Result := NextHandle;
Exit;
end
else
// Get the next window
NextHandle := GetWindow(NextHandle, GW_HWNDNEXT);
end;
Result := 0;
end;
procedure TFormularioGeral.ExecutaCACIC(Sender: TObject);
var v_mensagem,
v_tipo_mensagem,
v_TE_FILA_FTP : string;
v_MsgDlgType : TMsgDlgType;
intTentativas : integer;
begin
try
if FindCmdLineSwitch('execute', True) or
FindCmdLineSwitch('atualizacao', True) or
Pode_Coletar or
(trim(objCACIC.getValueFromFile('Configs','DtHrUltimaColeta', strGerColsInfFileName))='') Then
Begin
timerCheckNoMinuto.Enabled := false;
objCACIC.writeDebugLog('ExecutaCACIC: Preparando chamada ao Gerente de Coletas...');
// Se foi gerado o arquivo ger_erro.txt o Log conterá a mensagem alí gravada como valor de chave
// O Gerente de Coletas deverá ser eliminado para que seja baixado novamente por ChecaGERCOLS
if (FileExists(objCACIC.getLocalFolderName + 'gererro.txt')) then
Begin
objCACIC.writeDailyLog('Gerente de Coletas eliminado devido a falha:');
objCACIC.writeDailyLog(objCACIC.GetValueFromFile('Mensagens','TeMensagem',strGerColsInfFileName));
SetaVariaveisGlobais;
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'gererro.txt');
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Modules\gercols.exe');
End;
if (FileExists(objCACIC.getLocalFolderName + 'Temp\reset.txt')) then
Begin
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\reset.txt');
objCACIC.writeDailyLog('Reinicializando...');
SetaVariaveisGlobais;
End;
objCACIC.writeDailyLog('Iniciando execução de atividades.');
objCACIC.writeDebugLog('ExecutaCACIC: Primeira chamada ao Gerente de Coletas...');
Invoca_GerCols('getConfigs');
sleep(3000); // Pausa para início do Gerente de Coletas e criação do arquivo temp\aguarde_GER.txt
Application.ProcessMessages;
InicializaTray;
// Pausas de 15 segundos para o caso de ser(em) baixada(s) nova(s) versão(ões) de GerCols e/ou Cacic280.
// Serão 4 tentativas por minuto
// Serão 30 minutos no máximo de tentativas, totalizando 120
intTentativas := 0;
while not Pode_Coletar and (intTentativas < 121) do
Begin
objCACIC.writeDebugLog('ExecutaCACIC: Aguardando 15 segundos...');
Application.ProcessMessages;
sleep(15000);
inc(intTentativas);
End;
// Neste caso o Gerente de Coletas deverá fazer novo contato devido à permissão de criptografia ter sido colocada em espera pelo próximo contato.
if (intTentativas > 120) or
(objCACIC.GetValueFromFile('Configs','CsCipher', strGerColsInfFileName) = '2') then
Begin
if not (intTentativas > 120) then
Begin
objCACIC.writeDebugLog('ExecutaCACIC: Reiniciando processo -> CsCipher=2');
ExecutaCACIC(nil);
End;
End
else
Begin
// Caso tenha sido baixada nova cópia do Gerente de Coletas, esta deverá ser movida para cima da atual
if (FileExists(objCACIC.getLocalFolderName + 'Temp\gercols.exe')) then
Begin
objCACIC.writeDailyLog('Atualizando versão do Gerente de Coletas para '+objCACIC.getVersionInfo(objCACIC.getLocalFolderName + 'Temp\gercols.exe'));
// O MoveFileEx não se deu bem no Win98! :|
// MoveFileEx(PChar(objCACIC.getLocalFolderName + 'Temp\gercols.exe'),PChar(objCACIC.getLocalFolderName + 'Modulos\gercols.exe'),MOVEFILE_REPLACE_EXISTING);
CopyFile(PChar(objCACIC.getLocalFolderName + 'Temp\gercols.exe'),PChar(objCACIC.getLocalFolderName + 'Modules\gercols.exe'),false);
sleep(2000); // 2 segundos de espera pela cópia! :) (Rwindows!)
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\gercols.exe');
sleep(2000); // 2 segundos de espera pela deleção!
ExecutaCACIC(nil); // Forçará uma reexecução de GerCols...
End;
// Verifico se foi gravada alguma mensagem pelo Gerente de Coletas e mostro caso a configuração permita
v_mensagem := objCACIC.GetValueFromFile('Mensagens','TeMensagem', strGerColsInfFileName);
if (v_mensagem <> '') and
(objCACIC.GetValueFromFile('Configs','InExibeErrosCriticos', strMainProgramInfFileName) = 'S') then
Begin
v_tipo_mensagem := objCACIC.GetValueFromFile('Mensagens','CsTipo', strGerColsInfFileName);
if (v_tipo_mensagem='mtError') then v_MsgDlgType := mtError
else if (v_tipo_mensagem='mtInformation') then v_MsgDlgType := mtInformation
else if (v_tipo_mensagem='mtWarning') then v_MsgDlgType := mtWarning;
MessageDlg(v_mensagem,v_MsgDlgType, [mbOk], 0);
objCACIC.setValueToFile('Mensagens','TeMensagem', '', strGerColsInfFileName);
objCACIC.setValueToFile('Mensagens','CsTipo' , '', strGerColsInfFileName);
// Para evitar uma reexecução de GerCols sem necessidade...
intTentativas := 121; // Apenas para ajudar na condição seguinte
End;
// Verifico se TE_FILA_FTP foi setado (por GerCols) e obedeço ao intervalo para nova tentativa de coletas
// Caso TE_FILA_FTP inicie com # é porque já passou nessa condição e deve iniciar nova tentativa de FTP...
v_TE_FILA_FTP := objCACIC.GetValueFromFile('Configs','TeFilaFTP', strGerColsInfFileName);
if (intTentativas <> 121) and
(Copy(v_TE_FILA_FTP,1,1) <> '#') and
(v_TE_FILA_FTP <> '0') and
(v_TE_FILA_FTP <> '') then
Begin
// Busquei o número de milisegundos setados em TeFilaFTP e o obedeço...
// 60.000 milisegundos correspondem a 60 segundos (1 minuto).
// Acrescento 1, pois se for zero ele não executa.
timerNuExecApos.Enabled := False;
timerNuExecApos.Interval := strtoint(v_TE_FILA_FTP) * 60000;
timerNuExecApos.Enabled := True;
objCACIC.writeDailyLog('FTP de coletores adiado pelo Módulo Gerente.');
objCACIC.writeDailyLog('Nova tentativa em aproximadamente ' + v_TE_FILA_FTP+ ' minuto(s).');
objCACIC.setValueToFile('Configs','TeFilaFTP','#' + v_TE_FILA_FTP, strGerColsInfFileName);
End;
// Desabilita/Habilita a opção de Informações Gerais
HabilitaInformacoesGerais;
// Desabilita/Habilita a opção de Suporte Remoto
HabilitaSuporteRemoto;
// O loop 1 foi dedicado a atualizações de versões e afins...
// O loop 2 deverá invocar as coletas propriamente ditas...
if (intTentativas <> 121) then
Begin
objCACIC.writeDebugLog('ExecutaCACIC: Iniciando Chamada para Coletas...');
Invoca_GerCols('collects');
End;
End;
timerCheckNoMinuto.Enabled := true;
End;
InicializaTray;
except
on E : Exception do
objCACIC.writeExceptionLog(E.Message,E.ClassName,'PROBLEMAS AO TENTAR ATIVAR COLETAS.');
end;
objCACIC.writeDebugLog('ExecutaCACIC: ' + DupeString('=',100));
end;
procedure TFormularioGeral.ExibirLogAtividades(Sender: TObject);
begin
Application.CreateForm(tformLog,formLog);
formLog.ShowModal;
end;
procedure TFormularioGeral.ExibirConfiguracoes(Sender: TObject);
begin
// SJI = Senha Já Informada...
// Esse valor é inicializado com "N"
if (objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','SJI',strMainProgramInfFileName))='') and
(objCACIC.GetValueFromFile('Configs','WebManagerAddress',strChkSisInfFileName)<>'') then
begin
FormularioGeral.CriaFormSenha(nil);
formSenha.ShowModal;
end;
if (objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','SJI',strMainProgramInfFileName))<>'') or
(objCACIC.GetValueFromFile('Configs','WebManagerAddress',strChkSisInfFileName)='') then
begin
Application.CreateForm(TFormConfiguracoes, FormConfiguracoes);
FormConfiguracoes.ShowModal;
end;
end;
//=======================================================================
// Todo o código deste ponto em diante está relacionado às rotinas de
// de inclusão do ícone do programa na bandeja do sistema
//=======================================================================
procedure TFormularioGeral.InicializaTray;
var v_strHint : String;
begin
// g_intStatus receberá 0 -> NORMAL ou 1 -> COLETAS ou 3 -> srCACIC
g_intStatus := ActualActivity;
// Monto a frase a ser colocada no Hint
v_strHint := pnVersao.Caption;
if not (objCACIC.getValueFromTags('IPAddress',strWin32_NetworkAdapterConfiguration) = '') then
v_strHint := v_strHint + chr(13) + chr(10) + 'IP: ' + objCACIC.getValueFromTags('IPAddress',strWin32_NetworkAdapterConfiguration);
// Mostro a versão no painel de Informações Gerais
if (g_intStatus = NORMAL) then
Begin
if not (UpperCase(objCACIC.GetValueFromFile('Configs','ConexaoOK', strGerColsInfFileName)) = 'S') then
Begin
v_strHint := v_strHint + ' IDENTIFICAÇÃO LOCAL...';
g_intStatus := DESCONFIGURADO;
End
else
End
else
Begin
objCACIC.writeDebugLog('InicializaTray: InActivity');
objCACIC.writeDebugLog('InicializaTray: v_strHint Antes = "'+v_strHint+'"');
if g_intStatus = EM_SUPORTE then
v_strHint := v_strHint + chr(13) + chr(10) + ' Em Suporte Remoto...'
else if g_intStatus = COLETANDO then
v_strHint := v_strHint + chr(13) + chr(10) + ' Coletas em Execução...';
objCACIC.writeDebugLog('InicializaTray: v_strHint Depois = "'+v_strHint+'"');
End;
g_intIconIndex := g_intStatus;
objCACIC.writeDebugLog('InicializaTray: g_intStatus =' + IntToStr(g_intStatus));
objCACIC.writeDebugLog('InicializaTray: g_intStatusAnterior=' + IntToStr(g_intStatusAnterior));
objCACIC.writeDebugLog('InicializaTray: g_intIconIndex=' + IntToStr(g_intIconIndex));
if (g_intStatus <> g_intStatusAnterior) then
Begin
imgIconList.GetIcon(g_intIconIndex,TrayIcon1.Icon);
g_intStatusAnterior := g_intStatus;
timerCheckNoMinuto.Enabled := false;
timerCheckNoMinuto.Interval := 5000; // Durante as coletas altero o timer verificador de ações para 5 segundos
objCACIC.writeDebugLog('InicializaTray: Status alterado para ' + intToStr(g_intStatus));
if (g_intStatus = COLETANDO) then
Begin
Mnu_InformacoesGerais.Enabled := False;
Mnu_ExecutarAgora.Enabled := False;
Mnu_InformacoesGerais.Caption := 'Aguarde, coletas em ação!';
Mnu_ExecutarAgora.Caption := Mnu_InformacoesGerais.Caption;
End
else if (g_intStatus = DESCONFIGURADO) then
Begin
objCACIC.writeDebugLog('InicializaTray: Setando Ícones para "Interroga" (intStatus=' + IntToStr(g_intStatus) + ')...');
End
else if (g_intStatus = EM_SUPORTE) then
Begin
Mnu_InformacoesGerais.Enabled := False;
Mnu_ExecutarAgora.Enabled := False;
Mnu_InformacoesGerais.Caption := 'Aguarde, em Suporte Remoto!';
Mnu_ExecutarAgora.Caption := Mnu_InformacoesGerais.Caption;
End
else
Begin
timerCheckNoMinuto.Interval := 60000; // Restauro o timer verificador de ações para 1 minuto
Mnu_InformacoesGerais.Caption := strMenuCaptionINF;
Mnu_ExecutarAgora.Caption := strMenuCaptionEXE;
Mnu_InformacoesGerais.Enabled := true;
Mnu_ExecutarAgora.Enabled := true;
objCACIC.writeDebugLog('InicializaTray: Setando Ícones para "Normal" (intStatus=' + IntToStr(g_intStatus) + ')...');
End;
objCACIC.writeDebugLog('InicializaTray: Setando o HINT do Systray para: "'+v_strHint+'"');
TrayIcon1.Hint := v_strHint;
timerCheckNoMinuto.Enabled := true;
if (objCACIC.GetValueFromFile('Configs','InExibeBandeja', strMainProgramInfFileName) <> 'N') Then
Begin
objCACIC.writeDebugLog('InicializaTray: Exibe/Renova Ícone do Systray...');
imgIconList.GetIcon(g_intStatus,TrayIcon1.Icon);
TrayIcon1.Show;
End
else
Begin
objCACIC.writeDebugLog('InicializaTray: Inibe Ícone do Systray...');
TrayIcon1.Hide;
End;
End
else
objCACIC.writeDebugLog('InicializaTray: No mesmo status (' + intToStr(g_intStatus) + ')');
Application.ProcessMessages;
objCACIC.writeDebugLog('InicializaTray: ' + DupeString('=',100));
end;
procedure TFormularioGeral.WMSysCommand;
begin // Captura o minimizar da janela
if (Msg.CmdType = SC_MINIMIZE) or (Msg.CmdType = SC_MAXIMIZE) then
Begin
MinimizaParaTrayArea(Nil);
Exit;
end;
DefaultHandler(Msg);
end;
procedure TFormularioGeral.MinimizaParaTrayArea(Sender: TObject);
begin
FormularioGeral.Visible:=false;
if (objCACIC.GetValueFromFile('Configs','InExibeBandeja', strMainProgramInfFileName) = 'N') Then
Begin
objCACIC.writeDebugLog('MinimizaParaTrayArea: Escondendo o ícone');
TrayIcon1.Hide
End
else
Begin
objCACIC.writeDebugLog('MinimizaParaTrayArea: Mostrando o ícone');
TrayIcon1.Show;
End;
end;
// -------------------------------------
// Fim dos códigos da bandeja do sistema
// -------------------------------------
procedure TFormularioGeral.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
// Esse evento é colocado em Nil durante o shutdown do windows.
// Ver o evento WMQueryEndSession.
CanClose := False;
MinimizaParaTrayArea(Nil);
end;
procedure TFormularioGeral.WMQueryEndSession(var Msg: TWMQueryEndSession);
begin
objCACIC.writeDailyLog('Windows em processo de finalização!');
// Quando há um shutdown do windows em execução, libera o close.
OnCloseQuery := Nil;
Msg.Result := 1;
Finaliza(true);
inherited // Continue ShutDown request
end;
procedure TFormularioGeral.Mnu_InformacoesGeraisClick(Sender: TObject);
var v_tripa_perfis, v_tripa_infos_coletadas,strAux : string;
v_array_perfis, v_array_tripa_infos_coletadas, v_array_infos_coletadas : tstrings;
v_conta_perfis, v_conta_infos_coletadas, intAux : integer;
begin
FormularioGeral.Enabled := true;
FormularioGeral.Visible := true;
ST_VL_NomeHost.Caption := objCACIC.getValueFromTags('Caption' ,strWin32_NetworkAdapterConfiguration);
ST_VL_IPEstacao.Caption := objCACIC.getValueFromTags('IPAddress' ,strWin32_NetworkAdapterConfiguration);
ST_VL_MacAddress.Caption := objCACIC.getValueFromTags('MACAddress' ,strWin32_NetworkAdapterConfiguration);
ST_VL_IPRede.Caption := '';
ST_VL_DominioDNS.Caption := objCACIC.getValueFromTags('DNSDomain' ,strWin32_NetworkAdapterConfiguration);
ST_VL_DominioWindows.Caption := objCACIC.getValueFromTags('Domain' ,strWin32_ComputerSystem);
ST_VL_DNSPrimario.Caption := objCACIC.getValueFromTags('DNSServerSearchOrder' ,strWin32_NetworkAdapterConfiguration);
ST_VL_DNSSecundario.Caption := objCACIC.getValueFromTags('DNSServerSearchOrder' ,strWin32_NetworkAdapterConfiguration);
ST_VL_Gateway.Caption := objCACIC.getValueFromTags('DefaultIPGateway' ,strWin32_NetworkAdapterConfiguration);
ST_VL_Mascara.Caption := objCACIC.getValueFromTags('IPSubnet' ,strWin32_NetworkAdapterConfiguration);
ST_VL_ServidorDHCP.Caption := objCACIC.getValueFromTags('DHCPServer' ,strWin32_NetworkAdapterConfiguration);
ST_VL_WinsPrimario.Caption := objCACIC.getValueFromTags('WINSPrimaryServer' ,strWin32_NetworkAdapterConfiguration);
ST_VL_WinsSecundario.Caption := objCACIC.getValueFromTags('WINSSecondaryServer' ,strWin32_NetworkAdapterConfiguration);
// Exibição das informações de Sistemas Monitorados...
v_conta_perfis := 1;
v_conta_infos_coletadas := 0;
v_tripa_perfis := '*';
while v_tripa_perfis <> '' do
begin
v_tripa_perfis := objCACIC.deCrypt( objCACIC.GetValueFromFile('Collects','ColMoni_' + trim(inttostr(v_conta_perfis)), strGerColsInfFileName));
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Perfil => Collects.ColMoni_' + trim(inttostr(v_conta_perfis))+' => '+v_tripa_perfis);
v_conta_perfis := v_conta_perfis + 1;
if (trim(v_tripa_perfis) <> '') then
Begin
v_array_perfis := objCACIC.explode(v_tripa_perfis,',');
// ATENÇÃO!!! Antes da implementação de INFORMAÇÕES GERAIS o Count ia até 11, ok?!
if (v_array_perfis.Count > 11) and (v_array_perfis[11]='S') then
Begin
v_tripa_infos_coletadas := objCACIC.deCrypt( objCACIC.GetValueFromFile('Collects','ColMoni_Atual', strGerColsInfFileName));
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Coletas de S.M. Efetuadas => ' + v_tripa_infos_coletadas);
if (trim(v_tripa_infos_coletadas) <> '') then
Begin
v_array_tripa_infos_coletadas := objCACIC.explode(v_tripa_infos_coletadas,'#');
for intAux := 0 to v_array_tripa_infos_coletadas.Count-1 Do
Begin
v_array_infos_coletadas := objCACIC.explode(v_array_tripa_infos_coletadas[intAux],',');
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Verificando perfil[0]:' + v_array_perfis[0]);
if (v_array_infos_coletadas[0]=v_array_perfis[0]) then
Begin
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Verificando valores condicionais [1]:"'+trim(v_array_infos_coletadas[1])+'" e [3]:"'+trim(v_array_infos_coletadas[3])+'"');
if ((trim(v_array_infos_coletadas[1])<>'') and (trim(v_array_infos_coletadas[1])<>'?')) or
((trim(v_array_infos_coletadas[3])<>'') and (trim(v_array_infos_coletadas[3])<>'?')) then
Begin
listSistemasMonitorados.Items.Add;
listSistemasMonitorados.Items[v_conta_infos_coletadas].Caption := Format('%2d', [v_conta_infos_coletadas+1])+') '+v_array_perfis[12];
listSistemasMonitorados.Items[v_conta_infos_coletadas].SubItems.Add(v_array_infos_coletadas[1]);
listSistemasMonitorados.Items[v_conta_infos_coletadas].SubItems.Add(v_array_infos_coletadas[3]);
v_conta_infos_coletadas := v_conta_infos_coletadas + 1;
End;
End;
Application.ProcessMessages;
End;
End;
End;
End;
end;
teDataColeta.Caption := '('+FormatDateTime('dd/mm/yyyy', now)+')';
staticVlServidorAplicacao.Caption := '"'+ objCACIC.GetValueFromFile('Configs','WebManagerAddress', strChkSisInfFileName)+'"';
staticVlServidorUpdates.Caption := '"'+ objCACIC.GetValueFromFile('Configs','TeServUpdates' , strChkSisInfFileName)+'"';
strAux := objCACIC.GetValueFromFile('Collects','Coletas_Atual_Inicio', strGerColsInfFileName);
if (strAux <> '') then
Begin
if (copy(strAux,0,8) = FormatDateTime('yyyymmdd', Date)) then
Begin
// Vamos reaproveitar algumas variáveis!...
v_array_perfis := objCACIC.explode(strAux,'#');
for intAux := 1 to v_array_perfis.Count-1 Do
Begin
v_array_infos_coletadas := objCACIC.explode(v_array_perfis[intAux],',');
listaColetas.Items.Add;
listaColetas.Items[intAux-1].Caption := v_array_infos_coletadas[0];
listaColetas.Items[intAux-1].SubItems.Add(v_array_infos_coletadas[1]);
// Verifico se houve problema na coleta...
if (v_array_infos_coletadas[2]<>'99999999') then
listaColetas.Items[intAux-1].SubItems.Add(v_array_infos_coletadas[2])
else
Begin
listaColetas.Items[intAux-1].SubItems.Add('--------');
v_array_infos_coletadas[3] := v_array_infos_coletadas[2];
End;
// Códigos Possíveis: -1 : Problema no Envio da Coleta
// 1 : Coleta Enviada
// 0 : Sem Coleta para Envio
strAux := IfThen(v_array_infos_coletadas[3]='1','Coleta Enviada ao Gerente WEB!',
IfThen(v_array_infos_coletadas[3]='-1','Problema Enviando Coleta ao Gerente WEB!',
IfThen(v_array_infos_coletadas[3]='0','Sem Coleta para Envio ao Gerente WEB!',
IfThen(v_array_infos_coletadas[3]='99999999','Problema no Processo de Coleta!','Status Desconhecido!'))));
listaColetas.Items[intAux-1].SubItems.Add(strAux);
Application.ProcessMessages;
End;
End
End
else
Begin
listSistemasMonitorados.Items.Add;
listSistemasMonitorados.Items[0].Caption := 'Não Há Coletas Registradas Nesta Data';
End;
strConfigsPatrimonio := objCACIC.GetValueFromFile('Patrimonio','Configs', strMainProgramInfFileName);
// MontaVetoresPatrimonio(strConfigsPatrimonio);
if (strConfigsPatrimonio = '') then
lbSemInformacoesPatrimoniais.Visible := true
else
lbSemInformacoesPatrimoniais.Visible := false;
st_lb_Etiqueta1.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta1', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta1.Caption := st_lb_Etiqueta1.Caption + IfThen(st_lb_Etiqueta1.Caption='','',':');
st_vl_Etiqueta1.Caption := RetornaValorVetorUON1(objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','IdUnidOrganizacionalNivel1', strMainProgramInfFileName)));
st_lb_Etiqueta1a.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta1a', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta1a.Caption := st_lb_Etiqueta1a.Caption + IfThen(st_lb_Etiqueta1a.Caption='','',':');
st_vl_Etiqueta1a.Caption := RetornaValorVetorUON1a(objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','IdUnidOrganizacionalNivel1a', strMainProgramInfFileName)));
st_lb_Etiqueta2.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta2', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta2.Caption := st_lb_Etiqueta2.Caption + IfThen(st_lb_Etiqueta2.Caption='','',':');
st_vl_Etiqueta2.Caption := RetornaValorVetorUON2(objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','IdUnidOrganizacionalNivel2', strMainProgramInfFileName)),objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','IdLocal', strMainProgramInfFileName)));
st_lb_Etiqueta3.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta3', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta3.Caption := st_lb_Etiqueta3.Caption + IfThen(st_lb_Etiqueta3.Caption='','',':');
st_vl_Etiqueta3.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeLocalizacaoComplementar', strMainProgramInfFileName));
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Decriptografia de in_exibir_etiqueta4 => "'+objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta4', strConfigsPatrimonio, '<>'))+'"');
if (objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta4', strConfigsPatrimonio, '<>')) = 'S') then
begin
st_lb_Etiqueta4.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta4', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta4.Caption := st_lb_Etiqueta4.Caption + IfThen(st_lb_Etiqueta4.Caption='','',':');
st_lb_Etiqueta4.Visible := true;
st_vl_etiqueta4.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeInfoPatrimonio1', strMainProgramInfFileName));
end
else
Begin
st_lb_Etiqueta4.Visible := false;
st_vl_etiqueta4.Visible := false;
End;
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Decriptografia de in_exibir_etiqueta5 => "'+objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta5', strConfigsPatrimonio, '<>'))+'"');
if (objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta5', strConfigsPatrimonio,'<>')) = 'S') then
begin
st_lb_Etiqueta5.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta5', strConfigsPatrimonio,'<>'));
st_lb_Etiqueta5.Caption := st_lb_Etiqueta5.Caption + IfThen(st_lb_Etiqueta5.Caption='','',':');
st_lb_Etiqueta5.Visible := true;
st_vl_etiqueta5.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeInfoPatrimonio2', strMainProgramInfFileName));
end
else
Begin
st_lb_Etiqueta5.Visible := false;
st_vl_etiqueta5.Visible := false;
End;
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Decriptografia de in_exibir_etiqueta6 => "'+objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta6', strConfigsPatrimonio, '<>'))+'"');
if (objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta6', strConfigsPatrimonio, '<>')) = 'S') then
begin
st_lb_Etiqueta6.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta6', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta6.Caption := st_lb_Etiqueta6.Caption + IfThen(st_lb_Etiqueta6.Caption='','',':');
st_lb_Etiqueta6.Visible := true;
st_vl_etiqueta6.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeInfoPatrimonio3', strMainProgramInfFileName));
end
else
Begin
st_lb_Etiqueta6.Visible := false;
st_vl_etiqueta6.Visible := false;
End;
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Decriptografia de in_exibir_etiqueta7 => "'+objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta7', strConfigsPatrimonio, '<>'))+'"');
if (objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta7', strConfigsPatrimonio,'<>')) = 'S') then
begin
st_lb_Etiqueta7.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta7', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta7.Caption := st_lb_Etiqueta7.Caption + IfThen(st_lb_Etiqueta7.Caption='','',':');
st_lb_Etiqueta7.Visible := true;
st_vl_etiqueta7.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeInfoPatrimonio4', strMainProgramInfFileName));
end
else
Begin
st_lb_Etiqueta7.Visible := false;
st_vl_etiqueta7.Visible := false;
End;
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Decriptografia de in_exibir_etiqueta8 => "'+objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta8', strConfigsPatrimonio, '<>'))+'"');
if (objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta8', strConfigsPatrimonio,'<>')) = 'S') then
begin
st_lb_Etiqueta8.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta8', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta8.Caption := st_lb_Etiqueta8.Caption + IfThen(st_lb_Etiqueta8.Caption='','',':');
st_lb_Etiqueta8.Visible := true;
st_vl_etiqueta8.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeInfoPatrimonio5', strMainProgramInfFileName));
end
else
Begin
st_lb_Etiqueta8.Visible := false;
st_vl_etiqueta8.Visible := false;
End;
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: Decriptografia de in_exibir_etiqueta9 => "'+objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta9', strConfigsPatrimonio, '<>'))+'"');
if (objCACIC.deCrypt(objCACIC.getValueFromTags('in_exibir_etiqueta9', strConfigsPatrimonio, '<>')) = 'S') then
begin
st_lb_Etiqueta9.Caption := objCACIC.deCrypt(objCACIC.getValueFromTags('te_etiqueta9', strConfigsPatrimonio, '<>'));
st_lb_Etiqueta9.Caption := st_lb_Etiqueta9.Caption + IfThen(st_lb_Etiqueta9.Caption='','',':');
st_lb_Etiqueta9.Visible := true;
st_vl_etiqueta9.Caption := objCACIC.deCrypt( objCACIC.GetValueFromFile('Patrimonio','TeInfoPatrimonio6', strMainProgramInfFileName));
end
else
Begin
st_lb_Etiqueta9.Visible := false;
st_vl_etiqueta9.Visible := false;
End;
objCACIC.writeDebugLog('Mnu_InformacoesGeraisClick: ' + DupeString('=',100));
end;
procedure TFormularioGeral.Bt_Fechar_InfosGeraisClick(Sender: TObject);
begin
FormularioGeral.Enabled := false;
FormularioGeral.Visible := false;
end;
// Solução baixada de http://www.delphidabbler.com/codesnip.php?action=named&routines=URLDecode&showsrc=1
function TFormularioGeral.URLDecode(const S: string): string;
var
Idx: Integer; // loops thru chars in string
Hex: string; // string of hex characters
Code: Integer; // hex character code (-1 on error)
begin
// Intialise result and string index
Result := '';
Idx := 1;
// Loop thru string decoding each character
while Idx <= Length(S) do
begin
case S[Idx] of
'%':
begin
// % should be followed by two hex digits - exception otherwise
if Idx <= Length(S) - 2 then
begin
// there are sufficient digits - try to decode hex digits
Hex := S[Idx+1] + S[Idx+2];
Code := SysUtils.StrToIntDef('$' + Hex, -1);
Inc(Idx, 2);
end
else
// insufficient digits - error
Code := -1;
// check for error and raise exception if found
if Code = -1 then
raise SysUtils.EConvertError.Create(
'Invalid hex digit in URL'
);
// decoded OK - add character to result
Result := Result + Chr(Code);
end;
'+':
// + is decoded as a space
Result := Result + ' '
else
// All other characters pass thru unchanged
Result := Result + S[Idx];
end;
Inc(Idx);
end;
end;
{
procedure TFormularioGeral.IdHTTPServerCACICCommandGet(
AThread: TIdPeerThread; ARequestInfo: TIdHTTPRequestInfo;
AResponseInfo: TIdHTTPResponseInfo);
var strXML,
strCmd,
strFileName,
strFileHash : String;
intAux : integer;
boolOK : boolean;
begin
// **********************************************************************************************************
// Esta procedure tratará os comandos e suas ações, enviados em um pacote XML na requisição, conforme abaixo:
// **********************************************************************************************************
// Execute -> Comando que forçará a execução do Gerente de Coletas (Sugestão: Configurar coletas forçadas no Gerente WEB e executar esse comando)
// Requisição: Tag <Execute>
// Respostas: AResponseinfo.ContentText := AResponseinfo.ContentText + 'OK'
//
// Ask -> Comando que perguntará sobre a existência de um determinado arquivo na estação.
// Requisição: Tag <FileName>: Nome do arquivo a pesquisar no repositório local
// Tag <FileHash>: Hash referente ao arquivo a ser pesquisado no repositório local
// Respostas: AResponseinfo.ContentText := AResponseinfo.ContentText + 'OK';
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'Tenho' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'NaoTenho' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'Baixando' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'Ocupado'.
//
//
// Erase -> Comando que provocará a exclusão de determinado arquivo.
// Deverá ser acompanhado das tags <FileName> e <FileHash>
// Requisição: Tag <FileName>: Nome do arquivo a ser excluído do repositório local
// Tag <FileHash>: Hash referente ao arquivo a ser excluído do repositório local
// Respostas: AResponseinfo.ContentText := AResponseinfo.ContentText + 'OK';
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'AcaoExecutada' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'ArquivoNaoEncontrado' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'EscritaNaoPermitida';
//
// Registry -> Comando que provocará ação no Registry de estações com MS-Windows.
// Deverá ser acompanhado das tags <Path>, <Action>, <Condition> e <Value>
// Requisição: Tag <Path> : Caminho no Registry
// Tag <Action> : Ação para execução
// SAVE => Salva o valor contido na tag <Value> de acordo com condição contida na tag <Condition>
// ERASE => Apaga a chave de acordo com condição contida na tag <Condition>
// Tag <Condition> : Condiçção para execução da ação
// EQUAL => Se o valor contido na tag <Value> for IGUAL ao valor encontrado na chave
// DIFFER => Se o valor contido na tag <Value> for DIFERENTE ao valor encontrado na chave
// NONE => Nenhuma condição, permitindo a execução da ação de forma incondicional
// Tag <Value> : Valor a ser utilizado na ação
// Respostas: AResponseinfo.ContentText := AResponseinfo.ContentText + 'OK';
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'AcaoExecutada' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'ChaveNaoEncontrada' ou
// AResponseinfo.ContentText := AResponseinfo.ContentText + 'EscritaNaoPermitida';
//
// Exit -> Comando para finalização do agente principal (bandeja)
// Palavra Chave definida por GerCols, enviada e armazenada no BD. A autenticação da comunicação é baseada na verificação deste valor.
// A geração da palavra chave dar-se-á a cada contato do GerCols com o módulo Gerente WEB
// te_palavra_chave -> <TE_PALAVRA_CHAVE>
// Tratamento da requisição http...
strXML := URLDecode(ARequestInfo.UnparsedParams);
intAux := Pos('=',strXML);
strXML := copy(strXML,(intAux+1),StrLen(PAnsiChar(strXML))-intAux);
strXML := objCACIC.deCrypt(strXML);
// Autenticação e tratamento da requisição
if (objCACIC.xmlGetValue('te_palavra_chave',strXML) = objCACIC.getValueMemoryData('Configs.te_palavra_chave',v_tstrCipherOpened)) then
Begin
strCmd := objCACIC.xmlGetValue('cmd',strXML);
// As ações terão seus valores
if (strCmd = 'Execute') or
(strCmd = 'Ask') or
(strCmd = 'Erase') or
(strCmd = 'Registry') or
(strCmd = 'Exit') then
AResponseinfo.ContentText := 'OK'
else
AResponseinfo.ContentText := 'COMANDO NÃO RECONHECIDO!';
End
else
AResponseinfo.ContentText := 'ACESSO NÃO PERMITIDO!';
if (strCmd = 'Execute') then
ExecutaCACIC(nil)
else if (strCmd = 'Ask') then
Begin
strFileName := objCACIC.xmlGetValue('FileName',strXML);
strFileHash := objCACIC.xmlGetValue('FileHash',strXML);
End
else if (strCmd = 'Erase') then
else if (strCmd = 'Registry') then
else if (strCmd = 'Exit') then
Finaliza;
end;
procedure TFormularioGeral.IdFTPServer1UserLogin(ASender: TIdFTPServerThread; const AUsername, APassword: String; var AAuthenticated: Boolean);
begin
AAuthenticated := false;
if (AUsername = 'CACIC') and
(APassword=objCACIC.getValueMemoryData('Configs.PalavraChave',v_tstrCipherOpened)) then
AAuthenticated := true;
end;
}
procedure TFormularioGeral.CheckRCActions(pStrRCAction : String = '');
var strRCActionsAux1,
strRCActionsAux2 : String;
intRCActionsSize : integer;
tstrActions : TStrings;
begin
if (pStrRCAction = '') then
Begin
if (tstrListRCActions.Count > 0) then
Begin
strRCActionsAux1 := '';
intRCActionsSize := 0;
While (intRCActionsSize < tstrListRCActions.Count) do
Begin
strRCActionsAux1 := strRCActionsAux1 + IfThen((strRCActionsAux1 <> ''),'[REG]','');
strRCActionsAux1 := strRCActionsAux1 + tstrListRCActions[intRCActionsSize];
inc(intRCActionsSize);
End;
tstrListRCActions.Clear;
Invoca_GerCols('RCActions=' + objCACIC.replaceInvalidHTTPChars(strRCActionsAux1));
End;
End
else
Begin
tstrActions := objCACIC.explode(pStrRCAction,'[FIELD]');
if (AnsiPos('OSCE_DEBUG' ,tstrActions[1]) = 0) and // Não informo sobre as ações temporárias do OfficeScan (vide docs.trendmicro.com -> HotFix 1197)
(AnsiPos('ck_conexao.' ,tstrActions[1]) = 0) and // Não informo sobre as ações com o arquivo de controle de conexao do srCACICsrv
(AnsiPos(objCACIC.getLocalFolderName,tstrActions[1]) = 0) and // Não informo sobre as ações de rotina na pasta do CACIC
(trim(tstrActions[1]) <> '') then // Não informo caso o parâmetro 1 (origem) esteja vazio
Begin
objCACIC.writeDebugLog('CheckRCActions: ' + pStrRCAction);
strRCActionsAux2 := objCACIC.getValueFromFile('srCACICcli','m_idConexao',objCACIC.getLocalFolderName + 'Temp\ck_conexao.ini');
if (strRCActionsAux2 <> '') then
Begin
tstrListRCActions.Add(strRCActionsAux2 + '[FIELD]' + FormatDateTime('yyyyddmmhhnnss', Now) + '[FIELD]' + pStrRCAction);
if (tstrListRCActions.Count = 10) then
CheckRCActions();
End;
End;
End;
end;
procedure TFormularioGeral.Mnu_SuporteRemotoClick(Sender: TObject);
var v_strTeSO,
v_strTeNodeAddress,
v_strNuPortaSR,
v_strNuTimeOutSR,
v_strKeyWord : String;
intPausaRecupera : integer;
fileAguarde : TextFile;
tstrAux : TStrings;
begin
if boolServerON then // Ordeno ao SrCACICsrv que auto-finalize
Begin
// Desligando a captura de ações
CN.Stop;
objCACIC.writeDailyLog('Desativando o Módulo de Suporte Remoto Seguro.');
objCACIC.createOneProcess(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe -kill',false,SW_HIDE);
objCacic.setBoolCipher(not objCacic.isInDebugMode);
// Bloqueio o módulo de suporte remoto seguro na FireWall nativa.
objCACIC.addApplicationToFirewall('srCACIC - Suporte Remoto Seguro do Sistema CACIC',objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe', false);
Sleep(3000); // Pausa para liberação do aguarde_srCACIC.txt
CheckRCActions;
InicializaTray;
boolServerON := false;
End
else
Begin
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Invocando "'+objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe"...');
objCACIC.writeDailyLog('Ativando Suporte Remoto Seguro.');
v_strKeyWord := objCACIC.GetValueFromFile('Configs','TePalavraChave', strGerColsInfFileName);
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Palavra-chave: "'+v_strKeyWord+'"');
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Criando "'+objCACIC.getLocalFolderName + 'cacic_keyword.txt" para srCACICsrv com nova palavra-chave.');
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Texto gravado no cookie para o Suporte Remoto Seguro: "'+v_strKeyWord+'"');
AssignFile(fileAguarde,objCACIC.getLocalFolderName + 'cacic_keyword.txt');
Rewrite(fileAguarde);
Append(fileAguarde);
Writeln(fileAguarde,v_strKeyWord);
CloseFile(fileAguarde);
v_strTeSO := trim(objCACIC.GetValueFromFile('Configs','TeSO', strGerColsInfFileName));
v_strTeNodeAddress := trim(objCACIC.getValueFromTags('MACAddress',strWin32_NetworkAdapterConfiguration));
v_strNuPortaSR := trim(objCACIC.deCrypt( objCACIC.GetValueFromFile('Configs','NuPortaSrCacic' , strMainProgramInfFileName)));
v_strNuTimeOutSR := trim(objCACIC.GetValueFromFile('Configs','NuTimeOutSrCacic' , strMainProgramInfFileName));
// Detectar versão do Windows antes de fazer a chamada seguinte...
try
AssignFile(fileAguarde,objCACIC.getLocalFolderName + 'Temp\aguarde_srCACIC.txt');
{$IOChecks off}
Reset(fileAguarde); {Abre o arquivo texto}
{$IOChecks on}
if (IOResult <> 0) then // Arquivo não existe, será recriado.
begin
Rewrite (fileAguarde);
Append(fileAguarde);
Writeln(fileAguarde,FormatDateTime('dd/mm hh:nn:ss : ', Now) + '======================> Pseudo-Cookie para o srCACICsrv.exe <=======================');
end;
CloseFile(fileAguarde);
Finally
End;
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Verificando validade do módulo srCACICsrv para chamada!');
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: objCACIC.getFileHash('+objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe'+') = "'+objCACIC.getFileHash(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe'+'"'));
// Executarei o srCACICsrv após batimento do HASHCode
if (objCACIC.getFileHash(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe') = objCACIC.deCrypt( objCACIC.GetValueFromFile('Hash-Codes','SRCACICSRV.EXE', strChkSisInfFileName),false,true)) then
Begin
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Invocando (Criptografado)"'+objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe -start [' + objCACIC.getWebManagerAddress + ']' +
'[' + objCACIC.getWebManagerAddress + objCACIC.GetValueFromFile('Configs','WebServicesFolder', strChkSisInfFileName) + ']' +
'[' + v_strTeSO + ']' +
'[' + v_strTeNodeAddress + ']' +
'[' + objCACIC.getLocalFolderName + ']' +
'[' + v_strNuPortaSR + ']' +
'[' + v_strNuTimeOutSR + ']');
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: Invocando (Decriptografado)"'+objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe -start [' + objCACIC.getWebManagerAddress + ']' +
'[' + objCACIC.replaceInvalidHTTPChars(objCACIC.getWebManagerAddress + objCACIC.GetValueFromFile('Configs','WebServicesFolder', strChkSisInfFileName)) + ']' +
'[' + trim(objCACIC.replaceInvalidHTTPChars(objCACIC.GetValueFromFile('Configs','TeSO' , strGerColsInfFileName) )) + ']' +
'[' + trim(objCACIC.replaceInvalidHTTPChars(objCACIC.getValueFromTags('MACAddress',strWin32_NetworkAdapterConfiguration) )) + ']' +
'[' + objCACIC.getLocalFolderName + ']' +
'[' + v_strNuPortaSR + ']' +
'[' + v_strNuTimeOutSR + ']');
// Libero o módulo de suporte remoto seguro na FireWall nativa.
objCACIC.addApplicationToFirewall('srCACIC - Suporte Remoto Seguro do Sistema CACIC',objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe', true);
objCACIC.createOneProcess(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe -start [' + objCACIC.getWebManagerAddress + ']' +
'[' + objCACIC.getWebManagerAddress + objCACIC.GetValueFromFile('Configs','WebServicesFolder', strChkSisInfFileName) + ']' +
'[' + v_strTeSO + ']' +
'[' + v_strTeNodeAddress + ']' +
'[' + objCACIC.getLocalFolderName + ']' +
'[' + v_strNuPortaSR + ']' +
'[' + v_strNuTimeOutSR + ']',false,SW_NORMAL);
tstrAux.Free;
Sleep(3000); // Pausa para criação do aguarde_srCACIC.txt
objCACIC.setBoolCipher(not objCACIC.isInDebugMode);
InicializaTray;
// Ligando a captura de ações
CN.Execute;
BoolServerON := true;
End
else
Begin
objCACIC.writeDailyLog('Execução de srCACICsrv impedida por falta de integridade!');
objCACIC.writeDailyLog('Providenciando nova cópia.');
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe');
Invoca_GerCols('recuperaSR');
intPausaRecupera := 0;
while (intPausaRecupera < 10) do
Begin
Sleep(3000);
if FileExists(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe') then
intPausaRecupera := 10;
inc(intPausaRecupera);
End;
if FileExists(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe') then
Mnu_SuporteRemotoClick(nil);
End;
End;
objCACIC.writeDebugLog('Mnu_SuporteRemotoClick: ' + DupeString('=',100));
end;
procedure TFormularioGeral.Popup_Menu_ContextoPopup(Sender: TObject);
begin
if (objCACIC.GetValueFromFile('Configs','CsSuporteRemoto', strMainProgramInfFileName) = 'S') and
(FileExists(objCACIC.getLocalFolderName + 'Modules\srcacicsrv.exe')) then
Mnu_SuporteRemoto.Enabled := true
else
Mnu_SuporteRemoto.Enabled := false;
boolServerON := false;
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\aguarde_SRCACIC.txt');
if FileExists(objCACIC.getLocalFolderName + 'Temp\aguarde_SRCACIC.txt') then
Begin
if (objCACIC.GetValueFromFile('Configs','CsPermitirDesativarSrCacic', strMainProgramInfFileName) = 'S') then
Begin
Mnu_SuporteRemoto.Caption := 'Desativar Suporte Remoto';
Mnu_SuporteRemoto.Enabled := true;
End
else
Begin
Mnu_SuporteRemoto.Caption := 'Suporte Remoto Ativo!';
Mnu_SuporteRemoto.Enabled := false;
End;
boolServerON := true;
End
else
Begin
Mnu_SuporteRemoto.Caption := 'Ativar Suporte Remoto';
HabilitaSuporteRemoto;
End;
end;
procedure TFormularioGeral.CheckIfDownloadedVersion;
Begin
objCACIC.writeDebugLog('CheckIfDownloadedVersion: Verificando existência de nova versão baixada do Agente Principal...');
// Caso tenha sido baixada nova cópia do Agente Principal, esta deverá ser movida para cima da atual pelo Gerente de Coletas...
if (FileExists(objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName)) then
Begin
objCACIC.writeDebugLog('CheckIfDownloadedVersion: Hash Code de Executável("'+objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName+'") = "' + objCACIC.getFileHash(objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName) + '"');
objCACIC.writeDebugLog('CheckIfDownloadedVersion: Hash Code Desejável = "' + objCACIC.deCrypt( objCACIC.GetValueFromFile('Hash-Codes', objCACIC.getMainProgramName,strChkSisInfFileName),false,true) + '"');
if (objCACIC.deCrypt( objCACIC.GetValueFromFile('Hash-Codes',objCACIC.getMainProgramName, strChkSisInfFileName),false,true) = objCACIC.getFileHash(objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName)) then //AutoUpdate!
Begin
objCACIC.writeDebugLog('CheckIfDownloadedVersion: Encontrei a nova versão em '+objCACIC.getLocalFolderName + 'Temp\');
if (objCACIC.getFileHash(objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName) = objCACIC.getFileHash(objCACIC.getLocalFolderName + objCACIC.getMainProgramName)) then
Begin
objCACIC.writeDebugLog('CheckIfDownloadedVersion: Os hashs codes entre '+objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName + ' e ' + objCACIC.getLocalFolderName + objCACIC.getMainProgramName + ' são iguais!');
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName)
End
else
Begin
objCACIC.writeDebugLog('CheckIfDownloadedVersion: Os hashs codes entre '+objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName + ' e ' + objCACIC.getLocalFolderName + objCACIC.getMainProgramName + ' são diferentes!');
objCACIC.writeDailyLog('Versão Nova de '+objCACIC.getMainProgramName+' Encontrada. ('+objCACIC.GetVersionInfo(objCACIC.getLocalFolderName + 'Temp\' + objCACIC.getMainProgramName)+')');
objCACIC.writeDailyLog('Finalizando para Auto-Atualização.');
CopyFile(PChar(objCACIC.getLocalFolderName + 'aguarde_CACIC.txt'),PChar(objCACIC.getLocalFolderName + 'Temp\atualiza_CACIC.txt'),false);
Finaliza(false);
End;
End;
End;
objCACIC.writeDebugLog('CheckIfDownloadedVersion: ' + DupeString('=',100));
End;
procedure TFormularioGeral.CNAssocChanged(Sender: TObject; Flags: Cardinal;
Path1, Path2: String);
begin
CheckRCActions('AssocChanged' + '[FIELD]' +
Path1 + '[FIELD]' +
Path2 + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNAttributes(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('Attributes' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNCreate(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('Create' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNDelete(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('Delete' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNDriveAdd(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('DriveAdd' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNDriveAddGUI(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('DriveAddGUI' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNDriveRemoved(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('DriveRemoved' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNEndSessionQuery(Sender: TObject;
var CanEndSession: Boolean);
begin
CheckRCActions('EndSessionQuery' + '[FIELD]' +
'' + '[FIELD]' +
'' + '[FIELD]' +
'');
end;
procedure TFormularioGeral.CNMediaInserted(Sender: TObject;
Flags: Cardinal; Path1: String);
begin
CheckRCActions('MediaInserted' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNMediaRemoved(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('MediaRemoved' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNMkDir(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('MkDir' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNNetShare(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('NetShare' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNNetUnshare(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('NetUnshare' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNRenameFolder(Sender: TObject; Flags: Cardinal;
Path1, Path2: String);
begin
CheckRCActions('RenameFolder' + '[FIELD]' +
Path1 + '[FIELD]' +
Path2 + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNRenameItem(Sender: TObject; Flags: Cardinal;
Path1, Path2: String);
begin
CheckRCActions('RenameItem' + '[FIELD]' +
Path1 + '[FIELD]' +
Path2 + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNRmDir(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('RmDir' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNServerDisconnect(Sender: TObject;
Flags: Cardinal; Path1: String);
begin
CheckRCActions('ServerDisconnect' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNUpdateDir(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('UpdateDir' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNUpdateImage(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('UpdateImage' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
procedure TFormularioGeral.CNUpdateItem(Sender: TObject; Flags: Cardinal;
Path1: String);
begin
CheckRCActions('UpdateItem' + '[FIELD]' +
Path1 + '[FIELD]' +
'' + '[FIELD]' +
IntToStr(Flags));
end;
function TFormularioGeral.getDesktopWindowHandle : integer;
var h: hwnd;
begin
h := FindWindowEx(GetDesktopWindow, 0, 'Button', nil);
result := h;
end;
procedure TFormularioGeral.timerCheckNoMinutoTimer(Sender: TObject);
begin
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: BEGIN');
strWin32_NetworkAdapterConfiguration := fetchWMIvalues('Win32_NetworkAdapterConfiguration',objCACIC.getLocalFolderName);
timerCheckNoMinuto.Enabled := false;
Try
if (objCACIC.isInDebugMode and FileExists(objCACIC.getLocalFolderName + 'Temp\STOP.txt')) or
((objCACIC.deCrypt( objCACIC.getValueFromFile('Hash-Codes',objCACIC.getMainProgramName,strChkSisInfFileName),false,true) <> objCACIC.getFileHash(ParamStr(0)))) then
FormularioGeral.Finaliza(false)
else if (FormularioGeral.ActualActivity = 0) THEN
Begin
if (objCACIC.GetValueFromFile('Configs','ConexaoOK', strGerColsInfFileName) <> 'S') then
Begin
objCACIC.deleteFileOrFolder(objCACIC.getLocalFolderName + 'Temp\ck_conexao.ini');
FormularioGeral.ExecutaCACIC(nil);
End;
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: Verificando existência de nova versão de CACICservice para atualização');
// Verificação de existência de nova versão do CACICservice para substituição e execução
if FileExists(objCACIC.getLocalFolderName + 'Temp\cacicservice.exe') then
Begin
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: Eliminando "'+objCACIC.getWinDir + 'cacicservice.exe"');
objCACIC.deleteFileOrFolder(objCACIC.getWinDir + 'cacicservice.exe');
sleep(2000);
if not FileExists(objCACIC.getWinDir + 'cacicservice.exe') then
Begin
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: Eliminação OK! Movendo "'+objCACIC.getLocalFolderName + 'Temp\cacicservice.exe" para "'+objCACIC.getWinDir + 'cacicservice.exe"');
MoveFile(PChar(objCACIC.getLocalFolderName + 'Temp\cacicservice.exe'),PChar(objCACIC.getWinDir + 'cacicservice.exe'));
sleep(2000);
FormularioGeral.ServiceStart('','CacicSustainService');
End
else
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: Impossível Eliminar "'+objCACIC.getWinDir + 'cacicservice.exe"');
End;
End;
Finally
g_intTaskBarAtual := FindWindow('Shell_TrayWnd', Nil);
g_intDesktopWindow := FormularioGeral.getDesktopWindowHandle;
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: Valores para Condição de Redesenho do ícone no SysTRAY...');
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: g_intTaskBarAnterior : ' + IntToStr(g_intTaskBarAnterior));
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: g_intTaskBarAtual : ' + IntToStr(g_intTaskBarAtual));
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: g_intDesktopWindow : ' + IntToStr(g_intDesktopWindow));
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: g_intStatus : ' + IntToStr( g_intStatus));
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: ActualActivity : ' + IntToStr(FormularioGeral.ActualActivity));
if ((g_intTaskBarAnterior = 0) and (g_intTaskBarAtual > 0)) or
((g_intDesktopWindow <> 0) and (FormularioGeral.ActualActivity=0)) or
((g_intStatus <> 0) and (FormularioGeral.ActualActivity=0)) then
Begin
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: Invocando InicializaTray...');
if ((g_intTaskBarAnterior = 0) and (g_intTaskBarAtual > 0)) then
g_intStatusAnterior := -1; // Para forçar o redesenho no systray
FormularioGeral.InicializaTray;
End;
g_intTaskBarAnterior := g_intTaskBarAtual;
FormularioGeral.CheckIfDownloadedVersion;
End;
objCACIC.writeDebugLog('timerCheckNoMinutoTimer: END');
FormularioGeral.timerCheckNoMinuto.Enabled := true;
end;
procedure TFormularioGeral.FormDestroy(Sender: TObject);
begin
TrayIcon1.Destroy;
end;
procedure TFormularioGeral.Mnu_LogAtividadesDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
begin
if Selected then
ACanvas.Brush.Color := clHighlight
else
ACanvas.Brush.Color := clMenu;
ARect.Left := LEFT_MENU_ITEM;
ACanvas.FillRect(ARect);
DrawText(ACanvas.Handle, PChar('Log de Atividades'), -1, ARect, DT_LEFT or DT_VCENTER or DT_SINGLELINE{ or DT_NOCLIP});
end;
procedure TFormularioGeral.Mnu_ConfiguracoesDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
begin
if Selected then
ACanvas.Brush.Color := clHighlight
else
ACanvas.Brush.Color := clMenu;
ARect.Left := LEFT_MENU_ITEM;
ACanvas.FillRect(ARect);
DrawText(ACanvas.Handle, PChar('Configurações'), -1, ARect, DT_LEFT or DT_VCENTER or DT_SINGLELINE{ or DT_NOCLIP});
end;
procedure TFormularioGeral.Mnu_ExecutarAgoraDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
begin
if Selected then
ACanvas.Brush.Color := clHighlight
else
ACanvas.Brush.Color := clMenu;
ARect.Left := LEFT_MENU_ITEM;
ACanvas.FillRect(ARect);
DrawText(ACanvas.Handle, PChar('Executar Agora'), -1, ARect, DT_LEFT or DT_VCENTER or DT_SINGLELINE{ or DT_NOCLIP});
end;
procedure TFormularioGeral.Mnu_InformacoesGeraisDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
begin
if Selected then
ACanvas.Brush.Color := clHighlight
else
ACanvas.Brush.Color := clMenu;
ARect.Left := LEFT_MENU_ITEM;
ACanvas.FillRect(ARect);
DrawText(ACanvas.Handle, PChar('Informações Gerais'), -1, ARect, DT_LEFT or DT_VCENTER or DT_SINGLELINE{ or DT_NOCLIP});
end;
procedure TFormularioGeral.Mnu_SuporteRemotoDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
begin
if Selected then
ACanvas.Brush.Color := clHighlight
else
ACanvas.Brush.Color := clMenu;
ARect.Left := LEFT_MENU_ITEM;
ACanvas.FillRect(ARect);
DrawText(ACanvas.Handle, PChar('Ativar Suporte Remoto'), -1, ARect, DT_LEFT or DT_VCENTER or DT_SINGLELINE{ or DT_NOCLIP});
end;
procedure TFormularioGeral.Mnu_FinalizarCacicDrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);
begin
if Selected then
ACanvas.Brush.Color := clHighlight
else
ACanvas.Brush.Color := clMenu;
ARect.Left := LEFT_MENU_ITEM;
ACanvas.FillRect(ARect);
DrawText(ACanvas.Handle, PChar('Finalizar o CACIC'), -1, ARect, DT_LEFT or DT_VCENTER or DT_SINGLELINE{ or DT_NOCLIP});
DrawBar(ACanvas);
end;
procedure TFormularioGeral.TimerNuExecAposTimer(Sender: TObject);
begin
timerNuExecApos.Enabled := false;
objCACIC.writeDebugLog('TimerNuExecAposTimer: BEGIN');
ExecutaCACIC(nil);
objCACIC.writeDebugLog('TimerNuExecAposTimer: END');
end;
procedure TFormularioGeral.timerNuIntervaloTimer(Sender: TObject);
begin
objCACIC.writeDebugLog('timerNuIntervaloTimer: BEGIN');
ExecutaCACIC(nil);
objCACIC.writeDebugLog('timerNuIntervaloTimer: END');
end;
procedure TFormularioGeral.ApplicationEvents1Message(var Msg: tagMSG;
var Handled: Boolean);
begin
if Msg.message = rmTaskbarCreated then
begin
objCACIC.writeDebugLog('ApplicationEvents1Message: Mensagem rmTaskbarCreated RECEBIDA!!!!!');
try
TrayIcon1.Free;
except
// it will fail because it no longer exists when the explorer restarts.
on E:Exception do
Begin
objCACIC.writeExceptionLog(E.Message,e.ClassName,'ApplicationEvents1Message - Liberando Systray Icon para recriação');
End;
end;
TrayIcon1 := TTrayIcon.Create(self);
TrayIcon1.Hint := pnVersao.Caption;
TrayIcon1.PopupMenu := Popup_Menu_Contexto;
imgIconList.GetIcon(g_intStatus,TrayIcon1.Icon);
TrayIcon1.Show;
End
else
inherited;
end;
end.