2019-07-27 20:23:48 +02:00
|
|
|
|
unit WebModuleMainU;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
System.SysUtils,
|
|
|
|
|
System.Classes,
|
|
|
|
|
Web.HTTPApp,
|
|
|
|
|
MVCFramework;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
TWebModule1 = class(TWebModule)
|
|
|
|
|
procedure WebModuleCreate(Sender: TObject);
|
|
|
|
|
procedure WebModuleDestroy(Sender: TObject);
|
|
|
|
|
private
|
|
|
|
|
{ Private declarations }
|
|
|
|
|
FEngine: TMVCEngine;
|
|
|
|
|
public
|
|
|
|
|
{ Public declarations }
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
WebModuleClass: TComponentClass = TWebModule1;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
MVCFramework.Commons,
|
|
|
|
|
MVCFramework.Controllers.Register,
|
|
|
|
|
MVCFramework.Middleware.Swagger,
|
2019-07-30 23:15:37 +02:00
|
|
|
|
MVCFramework.Swagger.Commons,
|
|
|
|
|
MVCFramework.Middleware.JWT;
|
2019-07-27 20:23:48 +02:00
|
|
|
|
|
|
|
|
|
{%CLASSGROUP 'Vcl.Controls.TControl'}
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
2019-07-29 14:27:09 +02:00
|
|
|
|
|
2019-07-27 20:23:48 +02:00
|
|
|
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
|
|
|
|
var
|
|
|
|
|
LSwagInfo: TMVCSwaggerInfo;
|
|
|
|
|
begin
|
|
|
|
|
FEngine := TMVCEngine.Create(Self);
|
|
|
|
|
|
|
|
|
|
// Path prefix will be swagger basepath
|
|
|
|
|
FEngine.Config[TMVCConfigKey.PathPrefix] := '/api';
|
|
|
|
|
FEngine.Config[TMVCConfigKey.DocumentRoot] := '.\www';
|
|
|
|
|
|
|
|
|
|
LSwagInfo.Title := 'Sample Swagger API';
|
|
|
|
|
LSwagInfo.Version := 'v1';
|
|
|
|
|
LSwagInfo.TermsOfService := 'http://www.apache.org/licenses/LICENSE-2.0.txt';
|
|
|
|
|
LSwagInfo.Description := 'Swagger Documentation Example';
|
|
|
|
|
LSwagInfo.ContactName := 'Jo<4A>o Ant<6E>nio Duarte';
|
|
|
|
|
LSwagInfo.ContactEmail := 'joao.antonioduarte@hotmail.com';
|
|
|
|
|
LSwagInfo.ContactUrl := 'https://github.com/joaoduarte19';
|
|
|
|
|
LSwagInfo.LicenseName := 'Apache License - Version 2.0, January 2004';
|
|
|
|
|
LSwagInfo.LicenseUrl := 'http://www.apache.org/licenses/LICENSE-2.0';
|
|
|
|
|
|
2019-07-30 23:15:37 +02:00
|
|
|
|
FEngine.AddMiddleware(TMVCJWTAuthenticationMiddleware.Create(nil));
|
2019-07-27 20:23:48 +02:00
|
|
|
|
FEngine.AddMiddleware(TMVCSwaggerMiddleware.Create(FEngine, LSwagInfo, '/api/swagger.json'));
|
|
|
|
|
|
|
|
|
|
/// Add your registered controllers to engine.
|
|
|
|
|
/// Only registered controls such as "MyServerName" will be added
|
2019-07-29 14:27:09 +02:00
|
|
|
|
TControllersRegister.Instance.AddControllersInEngine(FEngine, 'MyServerName');
|
2019-07-27 20:23:48 +02:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleDestroy(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
FEngine.Free;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|