2019-01-08 12:48:27 +01:00
|
|
|
unit WebModuleU;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
2024-03-08 16:17:30 +01:00
|
|
|
uses System.SysUtils, System.Classes, Web.HTTPApp, MVCFramework, FireDAC.Stan.Intf, FireDAC.Stan.Option,
|
|
|
|
FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf, FireDAC.DApt.Intf, Data.DB,
|
|
|
|
FireDAC.Comp.DataSet, FireDAC.Comp.Client;
|
2019-01-08 12:48:27 +01:00
|
|
|
|
|
|
|
type
|
|
|
|
TWebModule1 = class(TWebModule)
|
2024-03-08 16:17:30 +01:00
|
|
|
FDMemTable1: TFDMemTable;
|
2019-01-08 12:48:27 +01:00
|
|
|
procedure WebModuleCreate(Sender: TObject);
|
|
|
|
procedure WebModuleDestroy(Sender: TObject);
|
|
|
|
private
|
|
|
|
FMVCEngine: TMVCEngine;
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
WebModuleClass: TComponentClass = TWebModule1;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
2020-04-29 01:59:41 +02:00
|
|
|
MVCFramework.View.Renderers.Mustache,
|
|
|
|
WebSiteControllerU,
|
2020-09-16 15:56:14 +02:00
|
|
|
System.IOUtils,
|
2020-04-29 01:59:41 +02:00
|
|
|
MVCFramework.Commons,
|
2024-04-29 15:40:45 +02:00
|
|
|
MVCFramework.Middleware.StaticFiles,
|
|
|
|
CustomMustacheHelpersU,
|
2023-10-06 12:30:40 +02:00
|
|
|
MVCFramework.Serializer.URLEncoded;
|
2019-01-08 12:48:27 +01:00
|
|
|
|
|
|
|
{ %CLASSGROUP 'Vcl.Controls.TControl' }
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
2020-09-16 15:56:14 +02:00
|
|
|
|
2019-01-08 12:48:27 +01:00
|
|
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
FMVCEngine := TMVCEngine.Create(Self,
|
|
|
|
procedure(Config: TMVCConfig)
|
|
|
|
begin
|
|
|
|
// session timeout (0 means session cookie)
|
|
|
|
Config[TMVCConfigKey.SessionTimeout] := '0';
|
|
|
|
// default content-type
|
|
|
|
Config[TMVCConfigKey.DefaultContentType] :=
|
|
|
|
TMVCConstants.DEFAULT_CONTENT_TYPE;
|
|
|
|
// default content charset
|
|
|
|
Config[TMVCConfigKey.DefaultContentCharset] :=
|
|
|
|
TMVCConstants.DEFAULT_CONTENT_CHARSET;
|
|
|
|
// unhandled actions are permitted?
|
|
|
|
Config[TMVCConfigKey.AllowUnhandledAction] := 'false';
|
|
|
|
// default view file extension
|
|
|
|
Config[TMVCConfigKey.DefaultViewFileExtension] := 'mustache';
|
|
|
|
// view path
|
|
|
|
Config[TMVCConfigKey.ViewPath] := 'templates';
|
|
|
|
// Enable Server Signature in response
|
|
|
|
Config[TMVCConfigKey.ExposeServerSignature] := 'true';
|
2023-10-06 00:52:49 +02:00
|
|
|
Config[TMVCConfigKey.ViewCache] := 'false';
|
2019-01-08 12:48:27 +01:00
|
|
|
end)
|
|
|
|
.AddController(TWebSiteController)
|
2023-10-06 12:30:40 +02:00
|
|
|
.SetViewEngine(TMVCMustacheViewEngine)
|
2023-11-01 23:13:17 +01:00
|
|
|
.AddSerializer(TMVCMediaType.APPLICATION_FORM_URLENCODED, TMVCURLEncodedSerializer.Create);
|
2019-01-08 12:48:27 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TWebModule1.WebModuleDestroy(Sender: TObject);
|
|
|
|
begin
|
|
|
|
FMVCEngine.Free;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|