delphimvcframework/unittests/TestServer/WebModuleUnit.pas

78 lines
2.4 KiB
ObjectPascal
Raw Normal View History

2016-09-18 19:19:23 +02:00
// ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2016 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// ***************************************************************************
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// *************************************************************************** }
2013-10-30 01:09:09 +01:00
unit WebModuleUnit;
interface
uses System.SysUtils,
System.Classes,
Web.HTTPApp,
MVCFramework;
type
Twm = class(TWebModule)
procedure WebModuleCreate(Sender: TObject);
private
MVCEngine: TMVCEngine;
end;
var
WebModuleClass: TComponentClass = Twm;
implementation
{$R *.dfm}
2013-11-08 23:10:25 +01:00
uses
2015-04-01 17:01:23 +02:00
TestServerControllerU, TestServerControllerExceptionU, SpeedMiddlewareU,
MVCFramework.Middleware.Authentication, System.Generics.Collections,
MVCFramework.Commons, TestServerControllerPrivateU, AuthHandlersU;
2013-10-30 01:09:09 +01:00
procedure Twm.WebModuleCreate(Sender: TObject);
begin
2015-04-01 17:01:23 +02:00
MVCEngine := TMVCEngine.Create(self,
procedure(Config: TMVCConfig)
begin
Config[TMVCConfigKey.Messaging] := 'true';
end, nil);
MVCEngine.AddController(TTestServerController)
.AddController(TTestPrivateServerController)
.AddController(TTestServerControllerExceptionAfterCreate)
.AddController(TTestServerControllerExceptionBeforeDestroy)
.AddController(TTestPrivateServerControllerCustomAuth)
2015-04-01 17:01:23 +02:00
.AddMiddleware(TMVCSpeedMiddleware.Create)
.AddMiddleware(TMVCBasicAuthenticationMiddleware.Create(TBasicAuthHandler.Create))
2016-09-18 19:19:23 +02:00
.AddMiddleware(TMVCCustomAuthenticationMiddleware.Create(TCustomAuthHandler.Create, '/system/users/logged'));
2015-04-01 17:01:23 +02:00
// MVCEngine.Config[TMVCConfigKey.Messaging] := 'false';
end;
{ TSampleAuth }
{ TBasicAuthHandler }
{ TCustomAuthHandler }
2013-10-30 01:09:09 +01:00
end.