-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathQuick.Core.Mvc.Extensions.Entity.Rest.pas
365 lines (307 loc) · 11 KB
/
Quick.Core.Mvc.Extensions.Entity.Rest.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
{ ***************************************************************************
Copyright (c) 2016-2021 Kike Pérez
Unit : Quick.Core.Mvc.Extensions.Entity.Rest
Description : Core MVC Extensions TaskControl
Author : Kike Pérez
Version : 1.0
Created : 12/03/2020
Modified : 21/05/2021
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.Extensions.Entity.Rest;
{$i QuickCore.inc}
interface
uses
{$IFDEF DEBUG_ENTITY}
Quick.Debug.Utils,
{$ENDIF}
System.SysUtils,
System.Variants,
System.Rtti,
System.Generics.Collections,
Quick.Options,
Quick.Core.MVC,
Quick.Core.Entity,
Quick.HttpServer.Types,
Quick.Core.Mvc.Controller,
Quick.Core.Mvc.ActionResult,
Quick.Core.Entity.Request,
Quick.Core.Entity.DAO;
type
TEntityRestOptions = class(TOptions)
private
fUser : string;
fPassword : string;
fNeedCredentials : Boolean;
published
property User : string read fUser write fUser;
property Password : string read fPassword write fPassword;
property NeedCredentials : Boolean read fNeedCredentials write fNeedCredentials;
end;
TEntityRestMVCServerExtension = class(TMVCServerExtension)
class function UseRestApi<T : TDBContext>(aOptionsProc : TConfigureOptionsProc<TEntityRestOptions> = nil) : TMVCServer;
end;
[Route('api')]
//[Authorize]
TEntityRestController<T : TDBContext> = class(THttpController)
private
fDBContext : TDBContext;
fOptions : TEntityRestOptions;
function GetWhereId(aModel: TEntityModel; const aId : string): string;
procedure RaiseEntityNotFound(const aMsg : string);
procedure RaiseEntityError(const aMsg : string);
public
constructor Create(aDBContext : T; aOptions : IOptions<TEntityRestOptions>);
published
[HttpPost('connect')]
function Connect(const [FromBody]request: TEntityConnectRequest) : IActionResult;
[HttpPost('query/select')]
function SelectQuery(const [FromBody]request: TEntitySelectRequest) : IActionResult;
[HttpPost('query/update')]
function UpdateQuery(const [FromBody]request: TEntityUpdateRequest) : IActionResult;
[HttpPost('query/delete')]
function DeleteQuery(const [FromBody]request: TEntityDeleteRequest) : IActionResult;
[HttpPost('query/count')]
function CountQuery(const [FromBody]request: TEntityCountRequest) : IActionResult;
[HttpGet('{table}/{id}')]
function Get(const table : string; id : string) : IActionResult;
[HttpPost('{table}')]
function Add(const table : string; const [FromBody]value : string) : IActionResult;
[HttpPut('{table}/AOU/{id}')]
function AddOrUpdate(const table: string; const id : string; const [FromBody]value: string): IActionResult;
[HttpPut('{table}/{id}')]
function Update(const table: string; const id : string; const [FromBody]value: string): IActionResult;
[HttpDelete('{table}/{id}')]
function Delete(const table : string; id : string) : IActionResult;
end;
EEntityRestError = class(EControlledException);
implementation
{ TEntityRestMVCServerExtension }
class function TEntityRestMVCServerExtension.UseRestApi<T>(aOptionsProc : TConfigureOptionsProc<TEntityRestOptions> = nil) : TMVCServer;
var
restOptions : TEntityRestOptions;
begin
Result := MVCServer;
if MVCServer.Services.IsRegistered<T>('') then
begin
// restOptions := MVCServer.Services.Resolve<IOptions<TEntityRestOptions>>.Value;
restOptions := TEntityRestOptions.Create;
if Assigned(aOptionsProc) then aOptionsProc(restOptions)
else
begin
restOptions.NeedCredentials := True;
restOptions.User := 'admin';
restOptions.Password := 'admin';
end;
MVCServer.Services.Configure<TEntityRestOptions>(restOptions);
MVCServer.AddController(TEntityRestController<T>);
end
else raise EEntityRestError.Create(nil,'DBContext dependency not found. Need to be added before!');
end;
{ TEntityRestController }
constructor TEntityRestController<T>.Create(aDBContext : T; aOptions : IOptions<TEntityRestOptions>);
begin
fDBContext := aDBContext as TDBContext;
fOptions := aOptions.Value;
end;
function TEntityRestController<T>.GetWhereId(aModel: TEntityModel; const aId : string): string;
begin
if (aModel.PrimaryKey.DataType >= TFieldDataType.dtInteger) and
(aModel.PrimaryKey.DataType <= TFieldDataType.dtFloat) then Result := Format('%s = %s',[aModel.PrimaryKey.Name,aId])
else Result := Format('%s = "%s"',[aModel.PrimaryKey.Name,aId]);
end;
procedure TEntityRestController<T>.RaiseEntityError(const aMsg: string);
begin
Response.StatusCode := 500;
Response.StatusText := aMsg;
raise EControlledException.Create(nil,aMsg);
end;
procedure TEntityRestController<T>.RaiseEntityNotFound(const aMsg: string);
begin
Response.StatusCode := 404;
Response.StatusText := aMsg;
raise EControlledException.Create(nil,aMsg);
end;
function TEntityRestController<T>.Connect(const [FromBody]request: TEntityConnectRequest) : IActionResult;
begin
//check credentials
if fOptions.NeedCredentials then
begin
if (CompareText(fOptions.User,request.User) <> 0) or (fOptions.Password <> request.Password) then RaiseEntityError('User/Pass not valid!');
end;
//if HttpContext.User.Identity.IsAuthenticated then Writeln('ok');
Result := Content(Integer(fDBContext.Connection.Provider).ToString);
end;
function TEntityRestController<T>.SelectQuery(const request: TEntitySelectRequest): IActionResult;
var
dbset : TDBSet<TEntity>;
linq : IEntityLinqQuery<TEntity>;
reslinq : IEntityResult<TEntity>;
list : TObjectList<TEntity>;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'SelectQuery').TimeIt;
{$ENDIF}
list := nil;
try
dbset := fDBContext.GetDBSet(request.Table);
//set where clause
linq := dbset.Where(request.WhereClause);
//set order clause
if not request.Order.IsEmpty then
begin
if request.OrderAsc then linq.OrderBy(request.Order)
else linq.OrderByDescending(request.Order);
end;
//select
list := TObjectList<TEntity>.Create(True);
try
if request.Limit = 1 then list.Add(linq.SelectFirst)
else if request.Limit = -1 then list.Add(linq.SelectLast)
else
begin
linq.SelectTop(request.Limit).ToObjectList(list);
end;
Result := Json(list,True);
finally
list.Free;
end;
except
on E : Exception do RaiseEntityError(Format('Entity: %s',[e.Message]));
end;
end;
function TEntityRestController<T>.UpdateQuery(const request: TEntityUpdateRequest): IActionResult;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'UpdateQuery');
{$ENDIF}
end;
function TEntityRestController<T>.CountQuery(const request: TEntityCountRequest): IActionResult;
var
dbset : TDBSet<TEntity>;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'CountQuery').TimeIt;
{$ENDIF}
try
dbset := fDBContext.GetDBSet(request.Table);
Result := Content(dbset.Where(request.WhereClause).Count.ToString);
except
on E : Exception do RaiseEntityError(Format('Entity: %s',[e.Message]));
end;
end;
function TEntityRestController<T>.DeleteQuery(const request: TEntityDeleteRequest): IActionResult;
var
dbset : TDBSet<TEntity>;
linq : IEntityLinqQuery<TEntity>;
reslinq : IEntityResult<TEntity>;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'DeleteQuery');
{$ENDIF}
try
dbset := fDBContext.GetDBSet(request.Table);
//set where clause
linq := dbset.Where(request.WhereClause);
//delete
linq.Delete;
Result := Ok;
except
on E : Exception do RaiseEntityError(Format('Entity: %s',[e.Message]));
end;
end;
function TEntityRestController<T>.Get(const table: string; id: string): IActionResult;
var
dbset : TDBSet<TEntity>;
entity : TEntity;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'Get').TimeIt;
{$ENDIF}
dbset := fDBContext.GetDBSet(table);
entity := dbset.Where(GetWhereId(dbset.Model,id),[]).SelectFirst;
if entity = nil then RaiseEntityNotFound('register not found in database');
try
Result := Json(entity,True);
finally
entity.Free;
end;
end;
function TEntityRestController<T>.Add(const table: string; const value: string): IActionResult;
var
dbset : TDBSet<TEntity>;
entity : TEntity;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'Add').TimeIt;
{$ENDIF}
dbset := fDBContext.GetDBSet(table);
entity := dbset.Model.Table.Create;
try
Self.HttpContext.RequestServices.Serializer.Json.ToObject(entity,value);
if dbset.Add(entity) then Result := Self.StatusCode(THttpStatusCode.Created,'')
else RaiseEntityNotFound('Cannot add register to database!');
finally
entity.Free;
end;
end;
function TEntityRestController<T>.AddOrUpdate(const table: string; const id : string; const value: string): IActionResult;
var
dbset : TDBSet<TEntity>;
entity : TEntity;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'AddOrUpdate').TimeIt;
{$ENDIF}
dbset := fDBContext.GetDBSet(table);
entity := dbset.Model.Table.Create;
try
Self.HttpContext.RequestServices.Serializer.Json.ToObject(entity,value);
if entity.FieldValueIsEmpty(dbset.Model.PrimaryKey.Name) then HttpContext.RaiseHttpErrorBadRequest(nil,'not defined Primary Key!');
if dbset.AddOrUpdate(entity) then Result := Ok
else RaiseEntityNotFound('Cannot add or update register to database!');
finally
entity.Free;
end;
end;
function TEntityRestController<T>.Update(const table: string; const id : string; const value: string): IActionResult;
var
dbset : TDBSet<TEntity>;
entity : TEntity;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'Update').TimeIt;
{$ENDIF}
dbset := fDBContext.GetDBSet(table);
entity := dbset.Model.Table.Create;
try
Self.HttpContext.RequestServices.Serializer.Json.ToObject(entity,value);
if entity.FieldValueIsEmpty(dbset.Model.PrimaryKey.Name) then HttpContext.RaiseHttpErrorBadRequest(nil,'not defined Primary Key!');
if dbset.Update(entity) then Result := Ok
else RaiseEntityNotFound('Cannot update register to database!');
finally
entity.Free;
end;
end;
function TEntityRestController<T>.Delete(const table: string; id: string): IActionResult;
var
dbset : TDBSet<TEntity>;
begin
{$IFDEF DEBUG_ENTITY}
TDebugger.Enter(Self,'Delete').TimeIt;
{$ENDIF}
dbset := fDBContext.GetDBSet(table);
if dbset.Where(GetWhereId(dbset.Model,id),[]).Delete then Result := Ok
else RaiseEntityNotFound('register not found in database');
end;
end.