mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
71 lines
1.6 KiB
ObjectPascal
71 lines
1.6 KiB
ObjectPascal
|
unit App1MainControllerU;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses MVCFramework,
|
||
|
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.
|