delphimvcframework/samples/jsonwebtoken/AppControllerU.pas

133 lines
3.5 KiB
ObjectPascal
Raw Normal View History

2016-05-23 17:26:00 +02:00
unit AppControllerU;
interface
uses
MVCFramework,
MVCFramework.Commons,
2016-05-23 17:26:00 +02:00
MVCFramework.Logger,
Web.HTTPApp;
type
[MVCPath('/')]
TApp1MainController = class(TMVCController)
public
[MVCPath('/public')]
[MVCHTTPMethod([httpGET])]
2024-08-12 10:38:16 +02:00
procedure PublicSection;
2016-05-23 17:26:00 +02:00
[MVCPath('/')]
[MVCHTTPMethod([httpGET])]
2024-08-12 10:38:16 +02:00
procedure Index;
2016-05-23 17:26:00 +02:00
end;
[MVCPath('/admin')]
TAdminController = class(TMVCController)
protected
procedure OnBeforeAction(AContext: TWebContext; const AActionName: string;
var AHandled: Boolean); override;
2016-05-23 17:26:00 +02:00
public
[MVCPath('/role1')]
[MVCProduces('text/html')]
[MVCHTTPMethod([httpGET])]
2024-08-12 10:38:16 +02:00
procedure OnlyRole1;
2016-05-23 17:26:00 +02:00
[MVCPath('/role1')]
[MVCProduces('application/json')]
[MVCHTTPMethod([httpGET])]
procedure OnlyRole1EmittingJSON;
2016-05-23 17:26:00 +02:00
[MVCPath('/role2')]
[MVCProduces('text/html')]
[MVCHTTPMethod([httpGET])]
2024-08-12 10:38:16 +02:00
procedure OnlyRole2;
2016-05-23 17:26:00 +02:00
end;
implementation
uses
System.SysUtils, System.JSON, System.Classes, System.Generics.Collections;
2016-05-23 17:26:00 +02:00
{ TApp1MainController }
2024-08-12 10:38:16 +02:00
procedure TApp1MainController.Index;
2016-05-23 17:26:00 +02:00
begin
Redirect('/index.html');
end;
2024-08-12 10:38:16 +02:00
procedure TApp1MainController.PublicSection;
2016-05-23 17:26:00 +02:00
begin
Render('This is a public section');
end;
{ TAdminController }
procedure TAdminController.OnBeforeAction(AContext: TWebContext;
const AActionName: string; var AHandled: Boolean);
begin
inherited;
Assert(AContext.LoggedUser.CustomData['customkey1'] = 'customvalue1', 'customkey1 not valid');
Assert(AContext.LoggedUser.CustomData['customkey2'] = 'customvalue2', 'customkey2 not valid');
AHandled := False;
end;
2024-08-12 10:38:16 +02:00
procedure TAdminController.OnlyRole1;
var
lPair: TPair<String, String>;
2016-05-23 17:26:00 +02:00
begin
ContentType := TMVCMediaType.TEXT_PLAIN;
2024-08-12 10:38:16 +02:00
ResponseStream.AppendLine('Hey! Hello ' + Context.LoggedUser.UserName +
2016-05-23 17:26:00 +02:00
', now you are a logged user and this is a protected content!');
ResponseStream.AppendLine('As logged user you have the following roles: ' +
sLineBreak + string.Join(sLineBreak, Context.LoggedUser.Roles.ToArray));
ResponseStream.AppendLine('You CustomClaims are: ' +
sLineBreak);
for lPair in Context.LoggedUser.CustomData do
begin
ResponseStream.AppendFormat('%s = %s' + sLineBreak, [lPair.Key, lPair.Value]);
end;
2016-11-18 14:09:54 +01:00
RenderResponseStream;
2016-05-23 17:26:00 +02:00
end;
procedure TAdminController.OnlyRole1EmittingJSON;
var
lJObj: TJSONObject;
lJArr: TJSONArray;
lQueryParams: TStrings;
I: Integer;
lPair: TPair<String, String>;
2016-05-23 17:26:00 +02:00
begin
ContentType := TMVCMediaType.APPLICATION_JSON;
lJObj := TJSONObject.Create;
lJObj.AddPair('message', 'This is protected content accessible only by user1');
lJArr := TJSONArray.Create;
lJObj.AddPair('querystringparameters', lJArr);
lQueryParams := Context.Request.QueryStringParams;
for I := 0 to lQueryParams.Count - 1 do
begin
lJArr.AddElement(TJSONObject.Create(TJSONPair.Create(
lQueryParams.Names[I],
lQueryParams.ValueFromIndex[I])));
end;
lJArr := TJSONArray.Create;
lJObj.AddPair('customclaims', lJArr);
for lPair in Context.LoggedUser.CustomData do
begin
lJArr.AddElement(TJSONObject.Create(TJSONPair.Create(lPair.Key, lPair.Value)));
end;
Render(lJObj);
2016-05-23 17:26:00 +02:00
end;
2024-08-12 10:38:16 +02:00
procedure TAdminController.OnlyRole2;
2016-05-23 17:26:00 +02:00
begin
ContentType := TMVCMediaType.TEXT_PLAIN;
2024-08-12 10:38:16 +02:00
ResponseStream.AppendLine('Hey! Hello ' + Context.LoggedUser.UserName +
2016-05-23 17:26:00 +02:00
', now you are a logged user and this is a protected content!');
ResponseStream.AppendLine('As logged user you have the following roles: ' +
sLineBreak + string.Join(sLineBreak, Context.LoggedUser.Roles.ToArray));
2016-11-18 14:09:54 +01:00
RenderResponseStream;
2016-05-23 17:26:00 +02:00
end;
end.