delphimvcframework/samples/iocpsample/App1MainControllerU.pas
2015-04-01 15:01:23 +00:00

75 lines
1.6 KiB
ObjectPascal

unit App1MainControllerU;
interface
uses
MVCFramework,
{$IF CompilerVersion <= 27}
DATA.DBXJSON,
{$ELSE}
System.JSON,
{$ENDIF}
MVCFramework.Logger;
type
[MVCPath('/')]
TApp1MainController = class(TMVCController)
public
[MVCPath('/')]
[MVCHTTPMethod([httpGET])]
procedure Index(ctx: TWebContext);
[MVCPath('/hello')]
[MVCHTTPMethod([httpGET])]
procedure HelloWorld(ctx: TWebContext);
[MVCPath('/hello')]
[MVCHTTPMethod([httpPOST])]
procedure HelloWorldPost(ctx: TWebContext);
[MVCPath('/div/($par1)/($par2)')]
[MVCHTTPMethod([httpGET])]
procedure RaiseException(ctx: TWebContext);
end;
implementation
uses
DATA.DBXJSON,
System.SysUtils;
{ TApp1MainController }
procedure TApp1MainController.HelloWorld(ctx: TWebContext);
begin
Render('Hello World called with GET');
end;
procedure TApp1MainController.HelloWorldPost(ctx: TWebContext);
var
JSON: TJSONObject;
begin
JSON := ctx.Request.BodyAsJSONObject;
JSON.AddPair('modified', 'from server');
Render(JSON.Clone as TJSONObject);
Log('Hello world called with POST');
end;
procedure TApp1MainController.Index(ctx: TWebContext);
begin
Redirect('/public_html/index.html');
end;
procedure TApp1MainController.RaiseException(ctx: TWebContext);
var
R: Extended;
begin
Log('Parameter1=' + ctx.Request.Params['par1'].QuotedString);
Log('Parameter2=' + ctx.Request.Params['par2'].QuotedString);
R := StrToInt(ctx.Request.Params['par1']) / StrToInt(ctx.Request.Params['par2']);
Render(TJSONObject.Create(TJSONPair.Create('result', TJSONNumber.Create(R))));
end;
end.