2014-06-27 15:30:39 +02:00
|
|
|
unit WebModuleUnit1;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses System.SysUtils, System.Classes, Web.HTTPApp, mvcframework;
|
|
|
|
|
|
|
|
type
|
|
|
|
TWebModule1 = class(TWebModule)
|
|
|
|
procedure WebModuleCreate(Sender: TObject);
|
|
|
|
private
|
|
|
|
FEngine: TMVCEngine;
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
WebModuleClass: TComponentClass = TWebModule1;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{ %CLASSGROUP 'Vcl.Controls.TControl' }
|
|
|
|
|
2021-02-04 14:11:33 +01:00
|
|
|
uses Controllers.Articles, mvcframework.Middleware.CORS, mvcframework.Middleware.Compression,
|
|
|
|
Controllers.Base, MVCFramework.Commons;
|
2014-06-27 15:30:39 +02:00
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
|
|
|
begin
|
2021-02-04 14:11:33 +01:00
|
|
|
FEngine := TMVCEngine.Create(self,
|
|
|
|
procedure(Config: TMVCConfig)
|
|
|
|
begin
|
|
|
|
//Enabling the following line, the API will start to respond from "/api/v1"
|
|
|
|
//So "/articles/1" becomes "/api/v1/articles/1"
|
|
|
|
//Config[TMVCConfigKey.PathPrefix] := '/api/v1';
|
|
|
|
end);
|
2014-06-27 15:30:39 +02:00
|
|
|
FEngine.AddController(TArticlesController);
|
2021-02-04 14:11:33 +01:00
|
|
|
{$IFDEF TESTINSTANCE}
|
2020-01-24 10:09:14 +01:00
|
|
|
FEngine.AddController(TPrivateController);
|
2021-02-04 14:11:33 +01:00
|
|
|
{$ENDIF}
|
2017-02-04 23:43:06 +01:00
|
|
|
FEngine.AddMiddleware(TCORSMiddleware.Create);
|
2018-10-23 16:18:34 +02:00
|
|
|
FEngine.AddMiddleware(TMVCCompressionMiddleware.Create(256));
|
2017-10-16 22:57:27 +02:00
|
|
|
|
2014-06-27 15:30:39 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|