-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuc_updatecheck.pas
57 lines (46 loc) · 1.09 KB
/
uc_updatecheck.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
unit uc_updatecheck;
interface
type
TUpdateInfo = record
version, url, text: string;
end;
TUpdateCheck = class
public
class function checkForUpdate(updateurl: string):TUpdateInfo;
end;
implementation
uses
Variants,
SysUtils,
MSXML2_TLB;
{ TUpdateCheck }
class function TUpdateCheck.checkForUpdate(updateurl: string): TUpdateInfo;
var
req : IXMLHTTPRequest;
i: IDispatch;
xi: IXMLDOMDocument;
xel: IXMLDOMNodeList;
begin
req := CoXMLHTTP40.Create;
try
req.Open('GET', updateurl, False, EmptyParam, EmptyParam);
req.send(EmptyParam);
if req.status<>200 then
raise Exception.Create('Prüfung fehlgeschlagen');
i:=req.Get_responseXML();
if i.QueryInterface(IXMLDOMDocument, xi) = S_OK then
begin
xel:=xi.getElementsByTagName('currentversion');
result.version:=xel.item[0].text;
xel:=xi.getElementsByTagName('currentdownloadurl');
result.url:=xel.item[0].text;
xel:=xi.getElementsByTagName('currentinfo');
result.text:=xel.item[0].text;
end;
finally
i:=nil;
xel:=nil;
req:=nil;
end;
end;
end.