-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathupdate.pas
201 lines (178 loc) · 6.35 KB
/
update.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
unit Update;
{$mode objfpc}{$H+}
interface
uses
Classes, LazUTF8, LConvEncoding, StdCtrls, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
ComCtrls, IdHTTP, Windows, IdSSL, IdSSLOpenSSL;
type
{ TfUpdate }
TfUpdate = class(TForm)
bUpdateBase: TButton;
bDownloadProgram: TButton;
IdHTTP1: TIdHTTP;
IdSSLIOHandlerSocketOpenSSL1: TIdSSLIOHandlerSocketOpenSSL;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
lVersionProgram: TLabel;
lVersionBase: TLabel;
ProgressBar1: TProgressBar;
SelectDirectoryDialog: TSelectDirectoryDialog;
procedure bDownloadProgramClick(Sender: TObject);
procedure bUpdateBaseClick(Sender: TObject);
procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
procedure FormCreate(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
fUpdate: TfUpdate;
FileVerBase: TextFile;
FileVerProg: TextFile;
VerBase: string; // файл база
VerProg: string; // файл прога
implementation
{$R *.lfm}
{ TfUpdate }
procedure TfUpdate.FormCreate(Sender: TObject);
begin
AssignFile(FileVerBase, UTF8ToSys('base.txt'));
Reset(FileVerBase);
AssignFile(FileVerProg, UTF8ToSys('prog.txt'));
Reset(FileVerProg);
Readln(FileVerBase, VerBase);
Readln(FileVerProg, VerProg);
lVersionBase.Caption:=VerBase;
lVersionProgram.Caption:=VerProg;
CloseFile(FileVerBase);
CloseFile(FileVerProg);
end;
procedure TfUpdate.bUpdateBaseClick(Sender: TObject);
var
version:WideString;
Response:TFileStream;
//FullProgPath: PChar; для перезапуска
begin
ProgressBar1.Position:=0;
ProgressBar1.Min := 0;
ProgressBar1.Max := 10;
try
version:=IdHTTP1.Get('https://xn--90abhbolvbbfgb9aje4m.xn--p1ai/images/lpro-base-version.txt');
if version=lVersionBase.Caption then
begin
ProgressBar1.StepBy(10);
Application.MessageBox('У Вас самая новая версия базы','Внимание',MB_OK);
Exit;
end
else
begin
ProgressBar1.StepBy(3);
Application.MessageBox('Появилась новая версия базы, сейчас она будет загружена.','Внимание',MB_OK);
// ShowMessage('Обновление базы есть, сейчас оно будет загружен, а далее приложение будет перезапущено.');
Response:=TFileStream.Create('Lpro.db', fmCreate);
IdHTTP1.Get('https://xn--90abhbolvbbfgb9aje4m.xn--p1ai/images/Lpro.db',Response);
ProgressBar1.StepBy(3);
// нужно сохранить архив
TMemoryStream(Response).SaveToFile('Lpro.db');
ProgressBar1.StepBy(2);
// Принудительный перезапуск приложения
// FullProgPath := PChar(Application.ExeName);
// ShowWindow(Form1.handle,SW_HIDE);
//WinExec(FullProgPath,SW_SHOW);
//Application.Terminate; // or: Close;
end;
except
on e:Exception do
//-//-//-//-//-//
end;
ProgressBar1.StepBy(2);
//меняем версию программы
AssignFile(FileVerBase, UTF8ToSys('base.txt'));
try
Rewrite(FileVerBase);
Append(FileVerBase);
Write(FileVerBase, version);
finally
CloseFile(FileVerBase);
end;
//конец смены версии проги !!!!
TMemoryStream(Response).Free;
//Меняем надпись версий
AssignFile(FileVerBase, UTF8ToSys('base.txt'));
Reset(FileVerBase);
AssignFile(FileVerProg, UTF8ToSys('prog.txt'));
Reset(FileVerProg);
Readln(FileVerBase, VerBase);
Readln(FileVerProg, VerProg);
lVersionBase.Caption:=VerBase;
lVersionProgram.Caption:=VerProg;
CloseFile(FileVerBase);
CloseFile(FileVerProg);
ProgressBar1.StepBy(2);
//конец смени надписей версий
Application.MessageBox('Загрузка завершена','Внимание',MB_OK);
// lVerBase.Caption:=FormatDateTime('yyyymmdd', Now); дата обновлений
// дата сделать запись в файл даты обновления внутри цикла!!!
end;
procedure TfUpdate.FormClose(Sender: TObject; var CloseAction: TCloseAction);
begin
// CloseFile(FileVerBase);
// CloseFile(FileVerProg);
end;
procedure TfUpdate.bDownloadProgramClick(Sender: TObject);
var
version:WideString;
Response:TFileStream;
filename2 : String;
path : TSelectDirectoryDialog;
begin
ProgressBar1.Position:=0;
ProgressBar1.Min := 0;
ProgressBar1.Max := 10;
try
version:=IdHTTP1.Get('https://xn--90abhbolvbbfgb9aje4m.xn--p1ai/images/lpro-version.txt');
// version:='1.4.99';
if version=lVersionProgram.Caption then
begin
ProgressBar1.StepBy(10);
Application.MessageBox('У Вас самая новая версия программы','Внимание',MB_OK);
Exit;
end
else
begin
ProgressBar1.StepBy(2);
Application.MessageBox('Появилась новая версия программы, сейчас начнётся загрузка','Внимание',MB_OK);
// ShowMessage('Обновление есть, сейчас буду загружать.');
// SD3.FileName:=filename2;
// if SD3.Execute then
path := TSelectDirectoryDialog.Create(Application);
if path.Execute then
begin
// filename2:=SD3.FileName;
ProgressBar1.StepBy(3);
filename2:=path.FileName + '\Lpro.exe';
// ShowMessage(filename2);
Response:=TFileStream.Create(filename2, fmCreate);
IdHTTP1.Get('https://xn--90abhbolvbbfgb9aje4m.xn--p1ai/images/Lpro.exe',Response);
ProgressBar1.StepBy(3);
// нужно сохранить архив
TMemoryStream(Response).SaveToFile(filename2);
end;
FreeAndNil(path);
end;
except
on e:Exception do
//-//-//-//-//-//
end;
ProgressBar1.StepBy(2);
TMemoryStream(Response).Free;
Application.MessageBox('Загрузка завершена','Внимание',MB_OK);
// хотел сделать автозапуск, но не пашет
// WinExec(PChar(filename2),SW_SHOW); //запуск инсталлятора
//Application.Terminate;
// Close; //завершение программы
end;
end.