-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathQuick.Core.Mvc.Middleware.Authorization.pas
169 lines (142 loc) · 4.93 KB
/
Quick.Core.Mvc.Middleware.Authorization.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{ ***************************************************************************
Copyright (c) 2016-2020 Kike Pérez
Unit : Quick.Core.Mvc.Middleware.Authorization
Description : Core Mvc Authorization Middleware
Author : Kike Pérez
Version : 1.0
Created : 07/03/2020
Modified : 16/04/2020
This file is part of QuickCore: https://github.com/exilon/QuickCore
***************************************************************************
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*************************************************************************** }
unit Quick.Core.Mvc.Middleware.Authorization;
{$i QuickCore.inc}
interface
uses
Classes,
System.SysUtils,
System.Rtti,
System.Generics.Collections,
Quick.Arrays,
Quick.HttpServer.Types,
Quick.HttpServer.Request,
Quick.Core.Mvc.Controller,
Quick.Core.Mvc.Middleware,
Quick.Core.Mvc.Context,
Quick.Core.Mvc.Routing,
Quick.HttpServer.Response,
Quick.Core.Security.Authorization,
Quick.Core.Security.Claims;
type
TAuthorizationMiddleware = class(TRequestDelegate)
private
fAuthorizationService : IAuthorizationService;
function ValidateAuthorization(aContext: THttpContextBase) : Boolean;
function IsValidRole(aContext : THttpContextBase; aAuthorize : Authorize) : Boolean;
function IsValidPolicy(aContext : THttpContextBase; const aPolicyName : string) : Boolean;
public
constructor Create(aNext: TRequestDelegate; aAuthorizationService : IAuthorizationService);
destructor Destroy; override;
procedure Invoke(aContext : THttpContextBase); override;
end;
implementation
{ TAuthorizationMiddleware }
constructor TAuthorizationMiddleware.Create(aNext: TRequestDelegate; aAuthorizationService : IAuthorizationService);
begin
inherited Create(aNext);
fAuthorizationService := aAuthorizationService;
end;
destructor TAuthorizationMiddleware.Destroy;
begin
inherited;
end;
procedure TAuthorizationMiddleware.Invoke(aContext: THttpContextBase);
begin
inherited;
//var a := aContext.Route.ActionMethodName;
ValidateAuthorization(aContext);
Next(aContext);
end;
function TAuthorizationMiddleware.ValidateAuthorization(aContext: THttpContextBase) : Boolean;
var
controller : TControllerClass;
methodname : string;
isAuthorized : Boolean;
ctx : TRttiContext;
rtype : TRttiType;
attr : TCustomAttribute;
begin
isAuthorized := False;
controller := aContext.Route.ControllerClass;
methodname := aContext.Route.ActionMethodName;
//controller type
rtype := ctx.GetType(controller);
//get action attributes
for attr in rtype.GetMethod(methodname).GetAttributes do
begin
if (attr is AllowAnonymous) then isAuthorized := True
else if (attr is Authorize) then
begin
if IsValidRole(aContext,Authorize(attr)) then isAuthorized := True
else aContext.RaiseHttpUnauthorized(nil,'');
end
else if (attr is AuthorizePolicy) then
begin
if IsValidPolicy(aContext,AuthorizePolicy(attr).Name) then isAuthorized := True
else aContext.RaisehttpUnauthorized(nil,'');
end;
end;
if isAuthorized then Exit(True);
//get global attributes
for attr in rtype.GetAttributes do
begin
if (attr is Authorize) then
begin
if IsValidRole(aContext,Authorize(attr)) then isAuthorized := True
else aContext.RaiseHttpUnauthorized(nil,'');
end
else if (attr is AuthorizePolicy) then
begin
if IsValidPolicy(aContext,AuthorizePolicy(attr).Name) then isAuthorized := True
else aContext.RaisehttpUnauthorized(nil,'');
end;
end;
Result := isAuthorized;
//fAuthorizationService.Authorize(aContext.User,nil,nil);
end;
function TAuthorizationMiddleware.IsValidRole(aContext: THttpContextBase; aAuthorize: Authorize): Boolean;
var
role : string;
begin
Result := False;
if aAuthorize.Roles.IsEmpty then
begin
if (aContext.User = nil) or (aContext.User.Identity = nil) then Exit(False);
Result := aContext.User.Identity.IsAuthenticated;
end
else
begin
for role in aAuthorize.Roles.Split([',']) do
begin
if aContext.User.IsInRole(role) then Exit(True);
end;
end;
end;
function TAuthorizationMiddleware.IsValidPolicy(aContext : THttpContextBase; const aPolicyName : string) : Boolean;
var
authResult : TAuthorizationResult;
begin
if (aContext.User = nil) or (aContext.User.Identity = nil) then Exit(True);
authResult := fAuthorizationService.Authorize(aContext.User,nil,aPolicyName);
Result := authResult.Succeeded;
end;
end.