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
|
{
$Id: header,v 1.1 2000/07/13 06:33:45 michael Exp $
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by the Free Pascal development team
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$mode objfpc}
{$H+}
unit fphttp;
Interface
uses sysutils,classes,httpdefs;
Type
{ TODO : Implement wkSession }
TWebModuleKind = (wkPooled, wkOneShot{, wkSession});
{ THTTPContentProducer }
TWebActionEvent = Procedure (Sender : TObject;
ARequest : TRequest;
AResponse : TResponse;
Var Handled : Boolean) of object;
THTTPContentProducer = Class(TComponent)
private
FAfterResponse: TResponseEvent;
FBeforeRequest: TRequestEvent;
FRequest : TRequest;
FResponse: TResponse;
Protected
Procedure DoHandleRequest(ARequest : TRequest; AResponse : TResponse; Var Handled : Boolean); virtual;
Procedure DoGetContent(ARequest : TRequest; Content : TStream; Var Handled : Boolean); virtual;
Procedure HandleRequest(ARequest : TRequest; AResponse : TResponse; Var Handled : Boolean);
Function ProduceContent : String; virtual;
Procedure SetRequest(ARequest: TRequest);
Protected
Property BeforeRequest : TRequestEvent Read FBeforeRequest Write FBeforeRequest;
Property AfterResponse : TResponseEvent Read FAfterResponse Write FAfterResponse;
Public
Procedure GetContent(ARequest : TRequest; Content : TStream; Var Handled : Boolean);
Function HaveContent : Boolean; virtual;
function ContentToStream(Stream : TStream) : boolean; virtual;
Property Request : TRequest Read FRequest;
Property Response : TResponse Read FResponse;
end;
{ TCustomWebAction }
TCustomWebAction = Class(TCollectionItem)
private
FAfterResponse: TResponseEvent;
FBeforeRequest: TRequestEvent;
FContentproducer: THTTPContentProducer;
FDefault: Boolean;
FName : String;
Protected
procedure SetContentProducer(const AValue: THTTPContentProducer);virtual;
Function GetDisplayName : String; override;
Function GetNamePath : String; override;
Procedure SetDisplayName(const AValue : String); override;
Procedure HandleRequest(ARequest : TRequest; AResponse : TResponse; Var Handled : Boolean);
Procedure DoHandleRequest(ARequest : TRequest; AResponse : TResponse; Var Handled : Boolean); virtual;
published
Property Name : String Read GetDisplayName Write SetDisplayName;
Property ContentProducer : THTTPContentProducer Read FContentproducer Write SetContentProducer;
Property Default : Boolean Read FDefault Write FDefault;
Property BeforeRequest : TRequestEvent Read FBeforeRequest Write FBeforeRequest;
Property AfterResponse : TResponseEvent Read FAfterResponse Write FAfterResponse;
end;
{ TCustomWebActions }
TGetActionEvent = Procedure (Sender : TObject; ARequest : TRequest; Var ActionName : String) of object;
TCustomWebActions = Class(TCollection)
private
FActionVar : String;
FDefActionWhenUnknown: Boolean;
FOnGetAction: TGetActionEvent;
function GetActions(Index : Integer): TCustomWebAction;
procedure SetActions(Index : Integer; const AValue: TCustomWebAction);
Protected
Function GetRequestAction(ARequest: TRequest) : TCustomWebAction;
Function GetActionName(ARequest : TRequest) : String;
Property ActionVar : String Read FactionVar Write FActionVar;
public
constructor Create(AItemClass: TCollectionItemClass);
Procedure Assign(Source : TPersistent); override;
Function Add : TCustomWebAction;
Function ActionByName(AName : String) : TCustomWebAction;
Function FindAction(AName : String): TCustomWebAction;
Function IndexOfAction(AName : String) : Integer;
Property OnGetAction : TGetActionEvent Read FOnGetAction Write FOnGetAction;
Property Actions[Index : Integer] : TCustomWebAction Read GetActions Write SetActions; Default;
Property DefActionWhenUnknown : Boolean read FDefActionWhenUnknown write FDefActionWhenUnknown;
end;
{ TCustomHTTPModule }
TCustomHTTPModule = Class(TDataModule)
private
FBaseURL: String;
FWebModuleKind: TWebModuleKind;
public
Procedure HandleRequest(ARequest : TRequest; AResponse : TResponse); virtual; abstract;
property Kind: TWebModuleKind read FWebModuleKind write FWebModuleKind default wkPooled;
Property BaseURL : String Read FBaseURL Write FBaseURL;
end;
TCustomHTTPModuleClass = Class of TCustomHTTPModule;
{ TModuleItem }
TModuleItem = Class(TCollectionItem)
private
FModuleClass: TCustomHTTPModuleClass;
FModuleName: String;
FSkipStreaming: Boolean;
Public
Property ModuleClass : TCustomHTTPModuleClass Read FModuleClass Write FModuleClass;
Property ModuleName : String Read FModuleName Write FModuleName;
Property SkipStreaming : Boolean Read FSkipStreaming Write FSkipStreaming;
end;
{ TModuleFactory }
TModuleFactory = Class(TCollection)
private
function GetModule(Index : Integer): TModuleItem;
procedure SetModule(Index : Integer; const AValue: TModuleItem);
Public
Function FindModule(AModuleName : String) : TModuleItem;
Function ModuleByName(AModuleName : String) : TModuleItem;
Function IndexOfModule(AModuleName : String) : Integer;
Property Modules [Index : Integer]: TModuleItem Read GetModule Write SetModule;default;
end;
EFPHTTPError = Class(Exception);
Procedure RegisterHTTPModule(ModuleClass : TCustomHTTPModuleClass; SkipStreaming : Boolean = False);
Procedure RegisterHTTPModule(Const ModuleName : String; ModuleClass : TCustomHTTPModuleClass; SkipStreaming : Boolean = False);
Var
ModuleFactory : TModuleFactory;
Resourcestring
SErrNosuchModule = 'No such module registered: "%s"';
SErrNoSuchAction = 'No action found for action: "%s"';
SErrUnknownAction = 'Unknown action: "%s"';
SErrNoDefaultAction = 'No action name and no default action';
SErrInvActNoDefaultAction = 'Invalid action name and no default action';
SErrRequestNotHandled = 'Web request was not handled by actions.';
Implementation
{$ifdef cgidebug}
uses dbugintf;
{$endif}
{ TModuleFactory }
function TModuleFactory.GetModule(Index : Integer): TModuleItem;
begin
Result:=TModuleItem(Items[Index]);
end;
procedure TModuleFactory.SetModule(Index : Integer; const AValue: TModuleItem);
begin
Items[Index]:=AValue;
end;
function TModuleFactory.FindModule(AModuleName: String): TModuleItem;
Var
I : Integer;
begin
I:=IndexOfModule(AModuleName);
If (I=-1) then
Result:=Nil
else
Result:=GetModule(I);
end;
function TModuleFactory.ModuleByName(AModuleName: String): TModuleItem;
begin
Result:=FindModule(AModuleName);
If (Result=Nil) then
Raise EFPHTTPError.CreateFmt(SErrNosuchModule,[AModuleName]);
end;
function TModuleFactory.IndexOfModule(AModuleName: String): Integer;
begin
Result:=Count-1;
While (Result>=0) and (CompareText(Modules[Result].ModuleName,AModuleName)<>0) do
Dec(Result);
end;
procedure RegisterHTTPModule(ModuleClass: TCustomHTTPModuleClass; SkipStreaming : Boolean = False);
begin
RegisterHTTPModule(ModuleClass.ClassName,ModuleClass);
end;
procedure RegisterHTTPModule(const ModuleName: String;
ModuleClass: TCustomHTTPModuleClass; SkipStreaming : Boolean = False);
Var
I : Integer;
MI : TModuleItem;
begin
I:=ModuleFactory.IndexOfModule(ModuleName);
If (I=-1) then
begin
MI:=ModuleFactory.Add as TModuleItem;
MI.ModuleName:=ModuleName;
end
else
MI:=ModuleFactory[I];
MI.ModuleClass:=ModuleClass;
MI.SkipStreaming:=SkipStreaming;
end;
{ THTTPContentProducer }
procedure THTTPContentProducer.HandleRequest(ARequest: TRequest;
AResponse: TResponse; Var Handled : Boolean);
begin
If Assigned(FBeforeRequest) then
FBeforeRequest(Self,ARequest);
DoHandleRequest(Arequest,AResponse,Handled);
If Assigned(FAfterResponse) then
FAfterResponse(Self,AResponse);
end;
procedure THTTPContentProducer.GetContent(ARequest: TRequest; Content: TStream; Var Handled : Boolean);
begin
If Assigned(FBeforeRequest) then
FBeforeRequest(Self,ARequest);
DoGetContent(Arequest,Content,Handled);
end;
procedure THTTPContentProducer.DoHandleRequest(ARequest: TRequest;
AResponse: TResponse; Var Handled : Boolean);
Var
M : TMemoryStream;
begin
FResponse:=AResponse;
M:=TMemoryStream.Create;
DoGetContent(ARequest,M,Handled);
AResponse.ContentStream:=M;
AResponse.ContentLength:=M.Size;
end;
procedure THTTPContentProducer.DoGetContent(ARequest: TRequest; Content: TStream; Var Handled : Boolean);
begin
FRequest := ARequest;
Handled:=ContentToStream(Content);
end;
function THTTPContentProducer.ProduceContent: String;
begin
Result:='';
end;
procedure THTTPContentProducer.SetRequest(ARequest: TRequest);
begin
FRequest := ARequest;
end;
function THTTPContentProducer.HaveContent: Boolean;
begin
Result:=(ProduceContent<>'');
end;
function THTTPContentProducer.ContentToStream(Stream: TStream) : boolean;
Var
S : String;
begin
S:=ProduceContent;
If length(S)>0 then
begin
Stream.WriteBuffer(S[1],Length(S));
Result := True;
end
else
Result := False;
end;
{ TCustomWebAction }
procedure TCustomWebAction.SetContentProducer(const AValue: THTTPContentProducer
);
begin
FContentProducer:=AValue;
end;
function TCustomWebAction.GetDisplayName: String;
begin
If (FName='') then
FName:=ClassName+IntToStr(self.Index);
Result:=FName;
end;
Function TCustomWebAction.GetNamePath : String;
begin
If (FName='') then
FName:=ClassName+IntToStr(self.Index);
Result:=FName;
end;
procedure TCustomWebAction.SetDisplayName(const AValue: String);
begin
Inherited;
FName:=AValue;
end;
procedure TCustomWebAction.HandleRequest(ARequest: TRequest; AResponse: TResponse; Var Handled : Boolean);
begin
If Assigned(FBeforeRequest) then
FBeforeRequest(Self,ARequest);
DoHandleRequest(Arequest,AResponse,Handled);
If Assigned(FAfterResponse) then
FAfterResponse(Self,AResponse);
end;
procedure TCustomWebAction.DoHandleRequest(ARequest: TRequest; AResponse: TResponse; Var Handled : Boolean);
begin
If Assigned(FContentProducer) then
FContentProducer.HandleRequest(ARequest,AResponse,Handled)
end;
{ TCustomWebActions }
function TCustomWebActions.GetActions(Index : Integer): TCustomWebAction;
begin
Result:=TCustomWebAction(Items[Index]);
end;
procedure TCustomWebActions.SetActions(Index : Integer; const AValue: TCustomWebAction);
begin
Items[Index]:=AValue;
end;
Function TCustomWebActions.GetRequestAction(ARequest: TRequest) : TCustomWebAction;
Var
S : String;
Function GetDefaultAction:TCustomWebAction;
Var I : Integer;
begin
Result := nil;
I:=0;
While (Result=Nil) and (I<Count) do
begin
If Actions[I].Default then
Result:=Actions[I];
Inc(I);
end;
end;
begin
Result:=Nil;
S:=GetActionName(ARequest);
If (S<>'') then
begin
Result:=FindAction(S);
if Result = nil then
begin//no action with that name found
if not DefActionWhenUnknown then
Raise EFPHTTPError.CreateFmt(SErrNoSuchAction,[s])
else begin
Result := GetDefaultAction;
if Result = nil then
Raise EFPHTTPError.Create(SErrInvActNoDefaultAction);
end;
end;
end else begin //no action name was specified
Result := GetDefaultAction;
If (Result=Nil) then
Raise EFPHTTPError.Create(SErrNoDefaultAction);
end;
end;
function TCustomWebActions.GetActionName(ARequest: TRequest): String;
begin
If (FActionVar<>'') then
Result:=ARequest.QueryFields.Values[FActionVar]
else
Result := '';
If Assigned(FOnGetAction) then
FOnGetAction(Self,ARequest,Result);
// GetNextPathInfo is only used after OnGetAction, so that the call to
// GetNextPathInfo can be avoided in the event.
If (Result='') then
Result:=ARequest.GetNextPathInfo;
end;
constructor TCustomWebActions.Create(AItemClass: TCollectionItemClass);
begin
inherited Create(AItemClass);
FDefActionWhenUnknown:=True;
end;
procedure TCustomWebActions.Assign(Source: TPersistent);
begin
If (Source is TCustomWebActions) then
ActionVar:=(Source as TCustomWebActions).ActionVar
else
inherited Assign(Source);
end;
function TCustomWebActions.Add: TCustomWebAction;
begin
Result:=TCustomWebAction(Inherited Add);
end;
function TCustomWebActions.ActionByName(AName: String): TCustomWebAction;
begin
Result:=FindAction(AName);
If (Result=Nil) then
Raise HTTPError.CreateFmt(SErrUnknownAction,[AName]);
end;
function TCustomWebActions.FindAction(AName: String): TCustomWebAction;
Var
I : Integer;
begin
I:=IndexOfAction(AName);
If (I=-1) then
Result:=Nil
else
Result:=Actions[I];
end;
function TCustomWebActions.IndexOfAction(AName: String): Integer;
begin
Result:=Count-1;
While (Result>=0) and (CompareText(Actions[Result].Name,AName)<>0) do
Dec(Result);
end;
Initialization
ModuleFactory:=TModuleFactory.Create(TModuleItem);
Finalization
FreeAndNil(ModuleFactory);
end.
|