mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
113 lines
2.9 KiB
ObjectPascal
113 lines
2.9 KiB
ObjectPascal
|
program SimpleRESTAPIUsingDatasets;
|
||
|
|
||
|
{$APPTYPE CONSOLE}
|
||
|
|
||
|
uses
|
||
|
System.SysUtils,
|
||
|
MVCFramework.Logger,
|
||
|
MVCFramework.Commons,
|
||
|
MVCFramework.REPLCommandsHandlerU,
|
||
|
Web.ReqMulti,
|
||
|
Web.WebReq,
|
||
|
Web.WebBroker,
|
||
|
IdContext,
|
||
|
IdHTTPWebBrokerBridge,
|
||
|
CustomersControllerU in 'CustomersControllerU.pas',
|
||
|
MainWM in 'MainWM.pas' {TMunicipalLibraryWebModule: TWebModule},
|
||
|
MainDM in 'MainDM.pas' {CustomersDM: TDataModule};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
|
||
|
procedure RunServer(APort: Integer);
|
||
|
var
|
||
|
LServer: TIdHTTPWebBrokerBridge;
|
||
|
LCustomHandler: TMVCCustomREPLCommandsHandler;
|
||
|
LCmd: string;
|
||
|
begin
|
||
|
Writeln('** DMVCFramework Server ** build ' + DMVCFRAMEWORK_VERSION);
|
||
|
LCmd := 'start';
|
||
|
if ParamCount >= 1 then
|
||
|
LCmd := ParamStr(1);
|
||
|
|
||
|
LCustomHandler := function(const Value: String; const Server: TIdHTTPWebBrokerBridge; out Handled: Boolean): THandleCommandResult
|
||
|
begin
|
||
|
Handled := False;
|
||
|
Result := THandleCommandResult.Unknown;
|
||
|
|
||
|
// Write here your custom command for the REPL using the following form...
|
||
|
// ***
|
||
|
// Handled := False;
|
||
|
// if (Value = 'apiversion') then
|
||
|
// begin
|
||
|
// REPLEmit('Print my API version number');
|
||
|
// Result := THandleCommandResult.Continue;
|
||
|
// Handled := True;
|
||
|
// end
|
||
|
// else if (Value = 'datetime') then
|
||
|
// begin
|
||
|
// REPLEmit(DateTimeToStr(Now));
|
||
|
// Result := THandleCommandResult.Continue;
|
||
|
// Handled := True;
|
||
|
// end;
|
||
|
end;
|
||
|
|
||
|
LServer := TIdHTTPWebBrokerBridge.Create(nil);
|
||
|
try
|
||
|
LServer.OnParseAuthentication := TMVCParseAuthentication.OnParseAuthentication;
|
||
|
LServer.DefaultPort := APort;
|
||
|
|
||
|
{ more info about MaxConnections
|
||
|
http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdCustomTCPServer_MaxConnections.html }
|
||
|
LServer.MaxConnections := 0;
|
||
|
|
||
|
{ more info about ListenQueue
|
||
|
http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdCustomTCPServer_ListenQueue.html }
|
||
|
LServer.ListenQueue := 200;
|
||
|
|
||
|
WriteLn('Write "quit" or "exit" to shutdown the server');
|
||
|
repeat
|
||
|
if LCmd.IsEmpty then
|
||
|
begin
|
||
|
Write('-> ');
|
||
|
ReadLn(LCmd)
|
||
|
end;
|
||
|
try
|
||
|
case HandleCommand(LCmd.ToLower, LServer, LCustomHandler) of
|
||
|
THandleCommandResult.Continue:
|
||
|
begin
|
||
|
Continue;
|
||
|
end;
|
||
|
THandleCommandResult.Break:
|
||
|
begin
|
||
|
Break;
|
||
|
end;
|
||
|
THandleCommandResult.Unknown:
|
||
|
begin
|
||
|
REPLEmit('Unknown command: ' + LCmd);
|
||
|
end;
|
||
|
end;
|
||
|
finally
|
||
|
LCmd := '';
|
||
|
end;
|
||
|
until False;
|
||
|
|
||
|
finally
|
||
|
LServer.Free;
|
||
|
end;
|
||
|
end;
|
||
|
|
||
|
begin
|
||
|
ReportMemoryLeaksOnShutdown := True;
|
||
|
IsMultiThread := 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.
|