-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathuOAuth2HttpClient.pas
128 lines (109 loc) · 2.6 KB
/
uOAuth2HttpClient.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
{
Simple OAuth2 client
(C) 2016, Stefan Ascher
}
unit uOAuth2HttpClient;
{$IFDEF FPC}
{$mode objfpc}
{$H+}
{$ENDIF}
{
Abstract HTTP client class.
}
interface
uses
SysUtils, Classes;
type
TOAuth2Response = record
Code: integer; // Response Code, e.g. 200, 401, 403
Body: string;
ContentType: string;
end;
TOAuth2HttpClient = class
protected
FHeaders: TStringList;
FFormFields: TStringList;
public
constructor Create;
destructor Destroy; override;
function Get(const AUrl: string): TOAuth2Response; virtual; abstract;
function Post(const AUrl: string): TOAuth2Response; virtual; abstract;
function GetQuery: string;
procedure AddFormField(const AKey, AValue: string); dynamic;
procedure ClearFormFields; dynamic;
procedure AddHeader(const AKey, AValue: string); dynamic;
procedure RemoveHeader(const AKey: string); dynamic;
procedure ClearHeader; dynamic;
end;
implementation
constructor TOAuth2HttpClient.Create;
begin
inherited;
FHeaders := TStringList.Create;
FHeaders.NameValueSeparator := ':';
FFormFields := TStringList.Create;
FFormFields.NameValueSeparator := '=';
FFormFields.CaseSensitive := false;
end;
destructor TOAuth2HttpClient.Destroy;
begin
FHeaders.Free;
FFormFields.Free;
inherited;
end;
function TOAuth2HttpClient.GetQuery: string;
var
i: integer;
key, value: string;
begin
Result := '';
for i := 0 to FFormFields.Count - 1 do begin
key := FFormFields.Names[i];
value := FFormFields.Values[key];
Result := Format('%s=%s&', [key, value]);
end;
if Result <> '' then begin
if Result[Length(Result)] = '&' then
Delete(Result, Length(Result), 1);
end;
end;
procedure TOAuth2HttpClient.ClearFormFields;
begin
FFormFields.Clear;
end;
procedure TOAuth2HttpClient.AddFormField(const AKey, AValue: string);
begin
FFormFields.Add(Format('%s=%s', [AKey, AValue]));
end;
procedure TOAuth2HttpClient.ClearHeader;
begin
FHeaders.Clear;
end;
procedure TOAuth2HttpClient.AddHeader(const AKey, AValue: string);
var
i: integer;
key: string;
begin
for i := 0 to FHeaders.Count - 1 do begin
key := FHeaders.Names[i];
if CompareText(AKey, key) = 0 then begin
FHeaders[i] := Format('%s: %s', [AKey, AValue]);
Exit;
end;
end;
FHeaders.Add(Format('%s: %s', [AKey, AValue]));
end;
procedure TOAuth2HttpClient.RemoveHeader(const AKey: string);
var
i: integer;
key: string;
begin
for i := 0 to FHeaders.Count - 1 do begin
key := FHeaders.Names[i];
if CompareText(AKey, key) = 0 then begin
FHeaders.Delete(i);
Break;
end;
end;
end;
end.