delphimvcframework/samples/jsonwebtoken/JWTServer.dpr

69 lines
1.8 KiB
ObjectPascal
Raw Normal View History

2016-05-23 17:26:00 +02:00
program JWTServer;
{$APPTYPE CONSOLE}
uses
System.SysUtils,
Winapi.Windows,
Winapi.ShellAPI,
Web.WebReq,
Web.WebBroker,
IdHTTPWebBrokerBridge,
2019-12-01 20:55:31 +01:00
MVCFramework.Commons,
IdContext,
2016-05-23 17:26:00 +02:00
WebModuleUnit1 in 'WebModuleUnit1.pas' {WebModule1: TWebModule} ,
AppControllerU in 'AppControllerU.pas',
MVCFramework.Middleware.JWT in '..\..\sources\MVCFramework.Middleware.JWT.pas',
AuthenticationU in 'AuthenticationU.pas';
{$R *.res}
type
TWebBrokerBridgeAuthEvent = class
public
class procedure ServerParserAuthentication(AContext: TIdContext; const AAuthType, AAuthData: String; var VUsername,
VPassword: String; var VHandled: Boolean);
end;
2016-05-23 17:26:00 +02:00
procedure RunServer(APort: Integer);
var
LServer: TIdHTTPWebBrokerBridge;
begin
Writeln(Format('Starting HTTP Server or port %d', [APort]));
LServer := TIdHTTPWebBrokerBridge.Create(nil);
try
2019-12-01 20:55:31 +01:00
LServer.OnParseAuthentication := TMVCParseAuthentication.OnParseAuthentication;
2016-05-23 17:26:00 +02:00
LServer.DefaultPort := APort;
LServer.Active := True;
Writeln('Press RETURN to stop the server');
2016-05-23 17:26:00 +02:00
// ShellExecute(0, 'open', PChar('http://localhost:' + IntToStr(APort)), nil, nil, SW_SHOW);
ReadLn;
2016-05-23 17:26:00 +02:00
finally
LServer.Free;
end;
end;
{ TWebBrokerBridgeAuthEvent }
class procedure TWebBrokerBridgeAuthEvent.ServerParserAuthentication(AContext: TIdContext; const AAuthType, AAuthData: String;
var VUsername, VPassword: String; var VHandled: Boolean);
begin
if SameText(AAuthType, 'bearer') then
VHandled := True;
end;
2016-05-23 17:26:00 +02:00
begin
ReportMemoryLeaksOnShutdown := True;
try
if WebRequestHandler <> nil then
WebRequestHandler.WebModuleClass := WebModuleClass;
WebRequestHandlerProc.MaxConnections := 1024;
RunServer(8080);
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end
end.