mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
117 lines
2.7 KiB
ObjectPascal
117 lines
2.7 KiB
ObjectPascal
unit MyControllerU;
|
|
|
|
interface
|
|
|
|
uses
|
|
MVCFramework,
|
|
MVCFramework.Commons;
|
|
|
|
type
|
|
|
|
[MVCPath('/')]
|
|
TMyController = class(TMVCController)
|
|
public
|
|
[MVCPath('/')]
|
|
[MVCHTTPMethod([httpGET])]
|
|
procedure Index(ctx: TWebContext);
|
|
[MVCPath('/login')]
|
|
[MVCHTTPMethod([httpPOST])]
|
|
procedure DoLogin(ctx: TWebContext);
|
|
procedure OnBeforeAction(Context: TWebContext; const AActionName: string;
|
|
var Handled: Boolean); override;
|
|
procedure OnAfterAction(Context: TWebContext; const AActionName: string); override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
MVCFramework.JWT,
|
|
System.SysUtils,
|
|
System.DateUtils;
|
|
|
|
procedure TMyController.DoLogin(ctx: TWebContext);
|
|
begin
|
|
|
|
end;
|
|
|
|
procedure TMyController.Index(ctx: TWebContext);
|
|
begin
|
|
Render('"Hello World" from a JWT protected resource');
|
|
end;
|
|
|
|
procedure TMyController.OnAfterAction(Context: TWebContext; const AActionName: string);
|
|
begin
|
|
{ Executed after each action }
|
|
inherited;
|
|
end;
|
|
|
|
procedure TMyController.OnBeforeAction(Context: TWebContext; const AActionName: string;
|
|
var Handled: Boolean);
|
|
var
|
|
lJWT: TJWT;
|
|
lAuthHeader: String;
|
|
lToken: String;
|
|
lError: String;
|
|
begin
|
|
{ Executed before each action
|
|
if handled is true (or an exception is raised) the actual
|
|
action will not be called }
|
|
inherited;
|
|
|
|
if SameText(AActionName, 'DOLogin') and (Context.Request.HTTPMethod = httpPOST) then
|
|
begin
|
|
lJWT := TJWT.Create('mysecret');
|
|
try
|
|
lJWT.Claims.Issuer := 'dmvcframework app';
|
|
lJWT.Claims.ExpirationTime := Now + OneSecond * 15;
|
|
lJWT.Claims.NotBefore := Now - OneMinute * 5;
|
|
lJWT.Claims.IssuedAt := Now - OneMinute * 5;
|
|
lJWT.CustomClaims['username'] := 'dteti';
|
|
Render(lJWT.GetToken);
|
|
Exit;
|
|
finally
|
|
lJWT.Free;
|
|
end;
|
|
end;
|
|
|
|
// JWT checking
|
|
lJWT := TJWT.Create('mysecret', 0 { in this demo, no tolerance... so no LEEWAY time } );
|
|
try
|
|
lAuthHeader := Context.Request.Headers['Authentication'];
|
|
if lAuthHeader.IsEmpty then
|
|
begin
|
|
Render(http_status.Unauthorized, 'Authentication Required');
|
|
Handled := True;
|
|
Exit;
|
|
end;
|
|
|
|
if lAuthHeader.StartsWith('bearer', True) then
|
|
begin
|
|
lToken := lAuthHeader.Remove(0, 'bearer'.Length).Trim;
|
|
end;
|
|
|
|
if not lJWT.LoadToken(lToken, lError) then
|
|
begin
|
|
Render(http_status.Unauthorized, 'Invalid Token, Authentication Required');
|
|
Handled := True;
|
|
end
|
|
else
|
|
begin
|
|
if lJWT.CustomClaims['username'].IsEmpty then
|
|
begin
|
|
Render(http_status.Unauthorized, 'Invalid Token, Authentication Required');
|
|
Handled := True;
|
|
end
|
|
else
|
|
begin
|
|
Handled := False;
|
|
end;
|
|
end;
|
|
finally
|
|
lJWT.Free;
|
|
end;
|
|
|
|
end;
|
|
|
|
end.
|