2019-04-20 12:09:39 +02:00
|
|
|
unit WebModuleU;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
System.SysUtils,
|
|
|
|
System.Classes,
|
|
|
|
MVCFramework,
|
|
|
|
Web.HTTPApp,
|
|
|
|
System.NetEncoding;
|
|
|
|
|
|
|
|
type
|
|
|
|
TMyWebModule = class(TWebModule)
|
|
|
|
procedure WebModuleCreate(Sender: TObject);
|
|
|
|
procedure WebModuleDestroy(Sender: TObject);
|
|
|
|
private
|
|
|
|
FMVC: TMVCEngine;
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
WebModuleClass: TComponentClass = TMyWebModule;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
MyControllerU,
|
|
|
|
MVCFramework.Commons,
|
2020-04-29 01:59:41 +02:00
|
|
|
MVCFramework.Middleware.StaticFiles,
|
2021-03-24 10:58:20 +01:00
|
|
|
System.Rtti, System.IOUtils;
|
2019-04-20 12:09:39 +02:00
|
|
|
|
|
|
|
procedure TMyWebModule.WebModuleCreate(Sender: TObject);
|
|
|
|
var
|
|
|
|
lExceptionHandler: TMVCExceptionHandlerProc;
|
|
|
|
begin
|
|
|
|
lExceptionHandler := procedure(
|
|
|
|
E: Exception;
|
|
|
|
SelectedController: TMVCController;
|
|
|
|
WebContext: TWebContext;
|
|
|
|
var ExceptionHandled: Boolean)
|
|
|
|
|
|
|
|
var
|
|
|
|
lColor: string;
|
|
|
|
begin
|
2024-11-13 23:09:28 +01:00
|
|
|
WebContext.Response.StatusCode := HTTP_STATUS.InternalServerError;
|
2019-04-20 12:09:39 +02:00
|
|
|
if E is EMyException then
|
|
|
|
begin
|
|
|
|
case EMyException(E).Severity of
|
|
|
|
Fatal, Error:
|
|
|
|
lColor := 'red';
|
|
|
|
Warning:
|
|
|
|
lColor := 'yellow';
|
|
|
|
Information:
|
|
|
|
lColor := 'blue';
|
|
|
|
else
|
|
|
|
lColor := 'black';
|
|
|
|
end;
|
|
|
|
WebContext.Response.ContentType := TMVCMediaType.TEXT_HTML;
|
|
|
|
WebContext.Response.Content :=
|
|
|
|
'<html><body><h1>Error occurred</h1>' +
|
|
|
|
Format('<h2 style="color: %s">', [lColor]) + TNetEncoding.HTML.Encode
|
|
|
|
(EMyException(E).ToString) + '</h2>' +
|
|
|
|
'<p>your truly custom exception handler...</p>' +
|
|
|
|
'</body></html>';
|
|
|
|
ExceptionHandled := True;
|
2020-04-08 13:00:32 +02:00
|
|
|
end
|
|
|
|
else if E is EMVCException then
|
|
|
|
begin
|
|
|
|
WebContext.Response.ContentType := TMVCMediaType.TEXT_HTML;
|
|
|
|
WebContext.Response.Content :=
|
|
|
|
'<html><body><h1>Error occurred</h1>' +
|
|
|
|
Format('<h2 style="color: red">', [lColor]) + TNetEncoding.HTML.Encode
|
|
|
|
(E.Message) + '</h2>' +
|
|
|
|
'<p>your truly custom exception handler...</p>' +
|
|
|
|
'</body></html>';
|
|
|
|
ExceptionHandled := True;
|
2019-04-20 12:09:39 +02:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
FMVC := 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] := 'html';
|
|
|
|
// view path
|
|
|
|
Config[TMVCConfigKey.ViewPath] := 'templates';
|
|
|
|
// Enable Server Signature in response
|
|
|
|
Config[TMVCConfigKey.ExposeServerSignature] := 'true';
|
|
|
|
end);
|
|
|
|
FMVC.AddController(TMyController);
|
|
|
|
FMVC.SetExceptionHandler(lExceptionHandler);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TMyWebModule.WebModuleDestroy(Sender: TObject);
|
|
|
|
begin
|
|
|
|
FMVC.Free;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|