@spinajs/orm-api 2.0.131 → 2.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/config/orm-http.js +1 -1
- package/lib/cjs/controllers/crud/Create.d.ts +16 -0
- package/lib/cjs/controllers/crud/Create.d.ts.map +1 -0
- package/lib/cjs/controllers/crud/Create.js +145 -0
- package/lib/cjs/controllers/crud/Create.js.map +1 -0
- package/lib/cjs/controllers/crud/Crud.d.ts +13 -0
- package/lib/cjs/controllers/crud/Crud.d.ts.map +1 -0
- package/lib/cjs/controllers/crud/Crud.js +22 -0
- package/lib/cjs/controllers/crud/Crud.js.map +1 -0
- package/lib/cjs/controllers/crud/Delete.d.ts +16 -0
- package/lib/cjs/controllers/crud/Delete.d.ts.map +1 -0
- package/lib/cjs/controllers/crud/Delete.js +158 -0
- package/lib/cjs/controllers/crud/Delete.js.map +1 -0
- package/lib/cjs/controllers/crud/Read.d.ts +35 -0
- package/lib/cjs/controllers/crud/Read.d.ts.map +1 -0
- package/lib/cjs/controllers/crud/Read.js +230 -0
- package/lib/cjs/controllers/crud/Read.js.map +1 -0
- package/lib/cjs/controllers/crud/Update.d.ts +13 -0
- package/lib/cjs/controllers/crud/Update.d.ts.map +1 -0
- package/lib/cjs/controllers/crud/Update.js +99 -0
- package/lib/cjs/controllers/crud/Update.js.map +1 -0
- package/lib/mjs/config/orm-http.js +1 -1
- package/lib/mjs/controllers/crud/Create.d.ts +16 -0
- package/lib/mjs/controllers/crud/Create.d.ts.map +1 -0
- package/lib/mjs/controllers/crud/Create.js +139 -0
- package/lib/mjs/controllers/crud/Create.js.map +1 -0
- package/lib/mjs/controllers/crud/Crud.d.ts +13 -0
- package/lib/mjs/controllers/crud/Crud.d.ts.map +1 -0
- package/lib/mjs/controllers/crud/Crud.js +18 -0
- package/lib/mjs/controllers/crud/Crud.js.map +1 -0
- package/lib/mjs/controllers/crud/Delete.d.ts +16 -0
- package/lib/mjs/controllers/crud/Delete.d.ts.map +1 -0
- package/lib/mjs/controllers/crud/Delete.js +155 -0
- package/lib/mjs/controllers/crud/Delete.js.map +1 -0
- package/lib/mjs/controllers/crud/Read.d.ts +35 -0
- package/lib/mjs/controllers/crud/Read.d.ts.map +1 -0
- package/lib/mjs/controllers/crud/Read.js +227 -0
- package/lib/mjs/controllers/crud/Read.js.map +1 -0
- package/lib/mjs/controllers/crud/Update.d.ts +13 -0
- package/lib/mjs/controllers/crud/Update.d.ts.map +1 -0
- package/lib/mjs/controllers/crud/Update.js +96 -0
- package/lib/mjs/controllers/crud/Update.js.map +1 -0
- package/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/lib/tsconfig.mjs.tsbuildinfo +1 -1
- package/package.json +17 -18
- package/lib/cjs/controllers/Collections.d.ts +0 -33
- package/lib/cjs/controllers/Collections.d.ts.map +0 -1
- package/lib/cjs/controllers/Collections.js +0 -417
- package/lib/cjs/controllers/Collections.js.map +0 -1
- package/lib/mjs/controllers/Collections.d.ts +0 -33
- package/lib/mjs/controllers/Collections.d.ts.map +0 -1
- package/lib/mjs/controllers/Collections.js +0 -414
- package/lib/mjs/controllers/Collections.js.map +0 -1
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
11
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
12
|
+
};
|
|
13
|
+
import { Orm, RelationType } from '@spinajs/orm';
|
|
14
|
+
import { BasePath, Ok, Post, Query, Del, Body, PKey, ParameterType, Policy, Param } from '@spinajs/http';
|
|
15
|
+
import { Permission } from '@spinajs/rbac-http';
|
|
16
|
+
import { Autoinject } from '@spinajs/di';
|
|
17
|
+
import { BadRequest, ResourceNotFound } from '@spinajs/exceptions';
|
|
18
|
+
import { ModelType } from '../../route-args/ModelType.js';
|
|
19
|
+
import { FindModelType } from '../../policies/FindModelType.js';
|
|
20
|
+
import { Log, Logger } from '@spinajs/log';
|
|
21
|
+
import { Crud } from './Crud.js';
|
|
22
|
+
import { AccessControl } from '@spinajs/rbac';
|
|
23
|
+
let CrudDelete = class CrudDelete extends Crud {
|
|
24
|
+
async batchDelete(model, ids) {
|
|
25
|
+
const tModel = this.getModelDescriptor(model);
|
|
26
|
+
const result = await model.destroy().whereIn(tModel.PrimaryKey, ids);
|
|
27
|
+
this.Log.trace(`Deleted ${result.RowsAffected} records from ${tModel.Name}`);
|
|
28
|
+
return new Ok({
|
|
29
|
+
[tModel.PrimaryKey]: ids,
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
async del(model, id) {
|
|
33
|
+
const descriptor = this.getModelDescriptor(model);
|
|
34
|
+
const result = await model.destroy(id);
|
|
35
|
+
this.Log.trace(`Deleted ${result.RowsAffected} records from ${descriptor.Name} with id ${id}`);
|
|
36
|
+
return new Ok({
|
|
37
|
+
[descriptor.PrimaryKey]: [id],
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
async deleteRelationBatch(model, id, relation, relationIds) {
|
|
41
|
+
const descriptor = this.getRelationDescriptor(model, relation);
|
|
42
|
+
if (descriptor.Type === RelationType.One) {
|
|
43
|
+
throw new BadRequest('Cannot delete batch from one to one relation');
|
|
44
|
+
}
|
|
45
|
+
const exists = await model.exists(id);
|
|
46
|
+
if (!exists) {
|
|
47
|
+
throw new ResourceNotFound(`Record with id ${id} not found`, {
|
|
48
|
+
Resource: model.name,
|
|
49
|
+
Id: id,
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
const result = await descriptor.TargetModel.destroy(relationIds).where(descriptor.ForeignKey, id);
|
|
53
|
+
this.Log.trace(`Deleted ${result.RowsAffected} records from ${descriptor.Name} with id ${id}`);
|
|
54
|
+
return new Ok(relationIds);
|
|
55
|
+
}
|
|
56
|
+
async deleteRelation(model, id, relation, relationId) {
|
|
57
|
+
const descriptor = this.getRelationDescriptor(model, relation);
|
|
58
|
+
const tModel = this.getModelDescriptor(descriptor.TargetModel);
|
|
59
|
+
const exists = await model.exists(id);
|
|
60
|
+
if (!exists) {
|
|
61
|
+
throw new ResourceNotFound(`Record with id ${id} not found`, {
|
|
62
|
+
Resource: model.name,
|
|
63
|
+
Id: id,
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
const result = await descriptor.TargetModel.destroy(relationId).when(descriptor.Type !== RelationType.One, function () {
|
|
67
|
+
this.where({ [descriptor.ForeignKey]: id });
|
|
68
|
+
});
|
|
69
|
+
this.Log.trace(`Deleted related ${result.RowsAffected} records from ${tModel.Name} with id ${id}`);
|
|
70
|
+
return new Ok({
|
|
71
|
+
[tModel.PrimaryKey]: relationId,
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
async deleteRelationAll(model, id, relation) {
|
|
75
|
+
const descriptor = this.getRelationDescriptor(model, relation);
|
|
76
|
+
const tModel = this.getModelDescriptor(descriptor.TargetModel);
|
|
77
|
+
const exists = await model.exists(id);
|
|
78
|
+
if (!exists) {
|
|
79
|
+
throw new ResourceNotFound(`Record with id ${id} not found`, {
|
|
80
|
+
Resource: model.name,
|
|
81
|
+
Id: id,
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
const result = await descriptor.TargetModel.destroy().when(descriptor.Type !== RelationType.One, function () {
|
|
85
|
+
this.where(descriptor.ForeignKey, id);
|
|
86
|
+
});
|
|
87
|
+
this.Log.trace(`Deleted related ${result.RowsAffected} records from ${tModel.Name} with id ${id}`);
|
|
88
|
+
return new Ok();
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
__decorate([
|
|
92
|
+
Logger('orm-http:api'),
|
|
93
|
+
__metadata("design:type", Log)
|
|
94
|
+
], CrudDelete.prototype, "Log", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
Autoinject(),
|
|
97
|
+
__metadata("design:type", Orm)
|
|
98
|
+
], CrudDelete.prototype, "Orm", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
Autoinject(),
|
|
101
|
+
__metadata("design:type", AccessControl)
|
|
102
|
+
], CrudDelete.prototype, "Ac", void 0);
|
|
103
|
+
__decorate([
|
|
104
|
+
Post(':model/__batchDelete'),
|
|
105
|
+
__param(0, ModelType()),
|
|
106
|
+
__param(1, Body()),
|
|
107
|
+
__metadata("design:type", Function),
|
|
108
|
+
__metadata("design:paramtypes", [Object, Array]),
|
|
109
|
+
__metadata("design:returntype", Promise)
|
|
110
|
+
], CrudDelete.prototype, "batchDelete", null);
|
|
111
|
+
__decorate([
|
|
112
|
+
Del(':model/:id'),
|
|
113
|
+
Permission('deleteAny'),
|
|
114
|
+
__param(0, ModelType()),
|
|
115
|
+
__param(1, Param()),
|
|
116
|
+
__metadata("design:type", Function),
|
|
117
|
+
__metadata("design:paramtypes", [Object, Object]),
|
|
118
|
+
__metadata("design:returntype", Promise)
|
|
119
|
+
], CrudDelete.prototype, "del", null);
|
|
120
|
+
__decorate([
|
|
121
|
+
Post(':model/:id/:relation/__batchDelete'),
|
|
122
|
+
Permission('deleteAny'),
|
|
123
|
+
__param(0, ModelType()),
|
|
124
|
+
__param(1, Param()),
|
|
125
|
+
__param(2, Param()),
|
|
126
|
+
__param(3, Body()),
|
|
127
|
+
__metadata("design:type", Function),
|
|
128
|
+
__metadata("design:paramtypes", [Object, Object, String, Array]),
|
|
129
|
+
__metadata("design:returntype", Promise)
|
|
130
|
+
], CrudDelete.prototype, "deleteRelationBatch", null);
|
|
131
|
+
__decorate([
|
|
132
|
+
Del(':model/:id/:relation/:relationId'),
|
|
133
|
+
__param(0, ModelType()),
|
|
134
|
+
__param(1, Param()),
|
|
135
|
+
__param(2, Param()),
|
|
136
|
+
__param(3, Param()),
|
|
137
|
+
__metadata("design:type", Function),
|
|
138
|
+
__metadata("design:paramtypes", [Object, Object, String, Number]),
|
|
139
|
+
__metadata("design:returntype", Promise)
|
|
140
|
+
], CrudDelete.prototype, "deleteRelation", null);
|
|
141
|
+
__decorate([
|
|
142
|
+
Del(':model/:id/:relation'),
|
|
143
|
+
__param(0, ModelType()),
|
|
144
|
+
__param(1, PKey(ParameterType.FromQuery)),
|
|
145
|
+
__param(2, Query()),
|
|
146
|
+
__metadata("design:type", Function),
|
|
147
|
+
__metadata("design:paramtypes", [Object, Object, String]),
|
|
148
|
+
__metadata("design:returntype", Promise)
|
|
149
|
+
], CrudDelete.prototype, "deleteRelationAll", null);
|
|
150
|
+
CrudDelete = __decorate([
|
|
151
|
+
BasePath('crud'),
|
|
152
|
+
Policy(FindModelType)
|
|
153
|
+
], CrudDelete);
|
|
154
|
+
export { CrudDelete };
|
|
155
|
+
//# sourceMappingURL=Delete.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Delete.js","sourceRoot":"","sources":["../../../../src/controllers/crud/Delete.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,OAAO,EAAgB,GAAG,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AACzG,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGnE,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAGvC,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,IAAI;IAWrB,AAAN,KAAK,CAAC,WAAW,CAAc,KAAmB,EAAU,GAAU;QAC3E,MAAM,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;QAC9C,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QAErE,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,MAAM,CAAC,YAAY,iBAAiB,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;QAE7E,OAAO,IAAI,EAAE,CAAC;YACZ,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,GAAG;SACzB,CAAC,CAAC;IACL,CAAC;IAIY,AAAN,KAAK,CAAC,GAAG,CAAc,KAAmB,EAAW,EAAO;QACjE,MAAM,UAAU,GAAG,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;QAClD,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEvC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,MAAM,CAAC,YAAY,iBAAiB,UAAU,CAAC,IAAI,YAAY,EAAE,EAAE,CAAC,CAAC;QAE/F,OAAO,IAAI,EAAE,CAAC;YACZ,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC;SAC9B,CAAC,CAAC;IACL,CAAC;IAIY,AAAN,KAAK,CAAC,mBAAmB,CAAc,KAAmB,EAAW,EAAO,EAAW,QAAgB,EAAU,WAAkB;QACxI,MAAM,UAAU,GAAG,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAE/D,IAAI,UAAU,CAAC,IAAI,KAAK,YAAY,CAAC,GAAG,EAAE;YACxC,MAAM,IAAI,UAAU,CAAC,8CAA8C,CAAC,CAAC;SACtE;QAED,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,EAAE;YACX,MAAM,IAAI,gBAAgB,CAAC,kBAAkB,EAAE,YAAY,EAAE;gBAC3D,QAAQ,EAAE,KAAK,CAAC,IAAI;gBACpB,EAAE,EAAE,EAAE;aACP,CAAC,CAAC;SACJ;QAED,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QAElG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,MAAM,CAAC,YAAY,iBAAiB,UAAU,CAAC,IAAI,YAAY,EAAE,EAAE,CAAC,CAAC;QAE/F,OAAO,IAAI,EAAE,CAAC,WAAW,CAAC,CAAC;IAC7B,CAAC;IAGY,AAAN,KAAK,CAAC,cAAc,CAAc,KAAmB,EAAW,EAAO,EAAW,QAAgB,EAAW,UAAkB;QACpI,MAAM,UAAU,GAAG,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAC/D,MAAM,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;QAE/D,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,EAAE;YACX,MAAM,IAAI,gBAAgB,CAAC,kBAAkB,EAAE,YAAY,EAAE;gBAC3D,QAAQ,EAAE,KAAK,CAAC,IAAI;gBACpB,EAAE,EAAE,EAAE;aACP,CAAC,CAAC;SACJ;QAED,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,KAAK,YAAY,CAAC,GAAG,EAAE;YACzG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mBAAmB,MAAM,CAAC,YAAY,iBAAiB,MAAM,CAAC,IAAI,YAAY,EAAE,EAAE,CAAC,CAAC;QAEnG,OAAO,IAAI,EAAE,CAAC;YACZ,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,UAAU;SAChC,CAAC,CAAC;IACL,CAAC;IAGY,AAAN,KAAK,CAAC,iBAAiB,CAAc,KAAmB,EAAiC,EAAO,EAAW,QAAgB;QAChI,MAAM,UAAU,GAAG,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAC/D,MAAM,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;QAE/D,MAAM,MAAM,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,EAAE;YACX,MAAM,IAAI,gBAAgB,CAAC,kBAAkB,EAAE,YAAY,EAAE;gBAC3D,QAAQ,EAAE,KAAK,CAAC,IAAI;gBACpB,EAAE,EAAE,EAAE;aACP,CAAC,CAAC;SACJ;QAED,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,KAAK,YAAY,CAAC,GAAG,EAAE;YAC/F,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QACxC,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mBAAmB,MAAM,CAAC,YAAY,iBAAiB,MAAM,CAAC,IAAI,YAAY,EAAE,EAAE,CAAC,CAAC;QAEnG,OAAO,IAAI,EAAE,EAAE,CAAC;IAClB,CAAC;CACF,CAAA;AAvGC;IAAC,MAAM,CAAC,cAAc,CAAC;8BACR,GAAG;uCAAC;AAEnB;IAAC,UAAU,EAAE;8BACE,GAAG;uCAAC;AAEnB;IAAC,UAAU,EAAE;8BACC,aAAa;sCAAC;AAGf;IADZ,IAAI,CAAC,sBAAsB,CAAC;IACH,WAAA,SAAS,EAAE,CAAA;IAAuB,WAAA,IAAI,EAAE,CAAA;;;;6CASjE;AAIY;IAFZ,GAAG,CAAC,YAAY,CAAC;IACjB,UAAU,CAAC,WAAW,CAAC;IACN,WAAA,SAAS,EAAE,CAAA;IAAuB,WAAA,KAAK,EAAE,CAAA;;;;qCAS1D;AAIY;IAFZ,IAAI,CAAC,oCAAoC,CAAC;IAC1C,UAAU,CAAC,WAAW,CAAC;IACU,WAAA,SAAS,EAAE,CAAA;IAAuB,WAAA,KAAK,EAAE,CAAA;IAAW,WAAA,KAAK,EAAE,CAAA;IAAoB,WAAA,IAAI,EAAE,CAAA;;;;qDAoBtH;AAGY;IADZ,GAAG,CAAC,kCAAkC,CAAC;IACX,WAAA,SAAS,EAAE,CAAA;IAAuB,WAAA,KAAK,EAAE,CAAA;IAAW,WAAA,KAAK,EAAE,CAAA;IAAoB,WAAA,KAAK,EAAE,CAAA;;;;gDAqBlH;AAGY;IADZ,GAAG,CAAC,sBAAsB,CAAC;IACI,WAAA,SAAS,EAAE,CAAA;IAAuB,WAAA,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,CAAA;IAAW,WAAA,KAAK,EAAE,CAAA;;;;mDAmBhH;AAvGU,UAAU;IAFtB,QAAQ,CAAC,MAAM,CAAC;IAChB,MAAM,CAAC,aAAa,CAAC;GACT,UAAU,CAwGtB;SAxGY,UAAU"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Permission } from 'accesscontrol';
|
|
2
|
+
import { Orm, IModelStatic } from '@spinajs/orm';
|
|
3
|
+
import { Ok } from '@spinajs/http';
|
|
4
|
+
import { User as UserModel, AccessControl } from '@spinajs/rbac';
|
|
5
|
+
import { BadRequest } from '@spinajs/exceptions';
|
|
6
|
+
import { Log } from '@spinajs/log';
|
|
7
|
+
import '@spinajs/rbac';
|
|
8
|
+
import { QueryArgs } from '../../dto/QueryArgs.js';
|
|
9
|
+
import { QueryFilter } from '../../dto/QueryFilter.js';
|
|
10
|
+
import { QueryIncludes } from '../../dto/QueryIncludes.js';
|
|
11
|
+
import { Crud } from './Crud.js';
|
|
12
|
+
export declare class CrudRead extends Crud {
|
|
13
|
+
protected Log: Log;
|
|
14
|
+
protected Orm: Orm;
|
|
15
|
+
protected Ac: AccessControl;
|
|
16
|
+
protected checkAny(resource: string, user?: UserModel): Permission;
|
|
17
|
+
protected checkOwn(resource: string, user?: UserModel): Permission;
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* Creates query on model and ansures that user have proper permission to access it
|
|
21
|
+
*
|
|
22
|
+
* @param model model to query against
|
|
23
|
+
* @param user user for permission check
|
|
24
|
+
* @returns
|
|
25
|
+
*/
|
|
26
|
+
protected getSafeQuery(model: IModelStatic, user?: UserModel): {
|
|
27
|
+
query: import("@spinajs/orm").ISelectQueryBuilder<import("@spinajs/orm").ModelBase<unknown>[]>;
|
|
28
|
+
permission: Permission;
|
|
29
|
+
};
|
|
30
|
+
getAll(model: IModelStatic, getParams: QueryArgs, filters: QueryFilter, includes: QueryIncludes, user?: UserModel): Promise<Ok>;
|
|
31
|
+
get(user: UserModel, model: IModelStatic, id: number, includes: QueryIncludes): Promise<Ok>;
|
|
32
|
+
getRelation(model: IModelStatic, id: any, relation: string, relationId: any, includes: QueryIncludes, user?: UserModel): Promise<Ok | BadRequest>;
|
|
33
|
+
getRelations(model: IModelStatic, id: any, relation: string, params: QueryArgs, filters: QueryFilter, includes: QueryIncludes, user?: UserModel): Promise<Ok | BadRequest>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=Read.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Read.d.ts","sourceRoot":"","sources":["../../../../src/controllers/crud/Read.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,GAAG,EAAa,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAO,EAAE,EAAkC,MAAM,eAAe,CAAC;AAExE,OAAO,EAAE,IAAI,IAAI,SAAS,EAAwB,aAAa,EAAE,MAAM,eAAe,CAAC;AAEvF,OAAO,EAAE,UAAU,EAAsD,MAAM,qBAAqB,CAAC;AACrG,OAAO,EAAE,GAAG,EAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,eAAe,CAAC;AAIvB,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAGjC,qBAEa,QAAS,SAAQ,IAAI;IAEhC,SAAS,CAAC,GAAG,EAAE,GAAG,CAAC;IAGnB,SAAS,CAAC,GAAG,EAAE,GAAG,CAAC;IAGnB,SAAS,CAAC,EAAE,EAAE,aAAa,CAAC;IAE5B,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU;IAUlE,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU;IAUlE;;;;;;;OAOG;IACH,SAAS,CAAC,YAAY,CAAC,KAAK,EAAE,YAAY,EAAE,IAAI,CAAC,EAAE,SAAS;;;;IA6B/C,MAAM,CAAc,KAAK,EAAE,YAAY,EAAW,SAAS,EAAE,SAAS,EAAW,OAAO,EAAE,WAAW,EAAW,QAAQ,EAAE,aAAa,EAAU,IAAI,CAAC,EAAE,SAAS;IAoBjK,GAAG,CAAS,IAAI,EAAE,SAAS,EAAe,KAAK,EAAE,YAAY,EAAW,EAAE,EAAE,MAAM,EAAW,QAAQ,EAAE,aAAa;IAkBpH,WAAW,CAAc,KAAK,EAAE,YAAY,EAAW,EAAE,EAAE,GAAG,EAAW,QAAQ,EAAE,MAAM,EAAW,UAAU,EAAE,GAAG,EAAW,QAAQ,EAAE,aAAa,EAAU,IAAI,CAAC,EAAE,SAAS;IAiC/K,YAAY,CAAc,KAAK,EAAE,YAAY,EAAW,EAAE,EAAE,GAAG,EAAW,QAAQ,EAAE,MAAM,EAAW,MAAM,EAAE,SAAS,EAAW,OAAO,EAAE,WAAW,EAAW,QAAQ,EAAE,aAAa,EAAU,IAAI,CAAC,EAAE,SAAS;CAkC/N"}
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
11
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
12
|
+
};
|
|
13
|
+
import { Orm, SortOrder } from '@spinajs/orm';
|
|
14
|
+
import { Get, Ok, Query, Param, Policy, BasePath } from '@spinajs/http';
|
|
15
|
+
import { User } from '@spinajs/rbac-http';
|
|
16
|
+
import { User as UserModel, AccessControl } from '@spinajs/rbac';
|
|
17
|
+
import { Autoinject } from '@spinajs/di';
|
|
18
|
+
import { BadRequest, Forbidden, ResourceNotFound, UnexpectedServerError } from '@spinajs/exceptions';
|
|
19
|
+
import { Log, Logger } from '@spinajs/log';
|
|
20
|
+
import '@spinajs/rbac';
|
|
21
|
+
import { ModelType } from '../../route-args/ModelType.js';
|
|
22
|
+
import { QueryArgs } from '../../dto/QueryArgs.js';
|
|
23
|
+
import { QueryFilter } from '../../dto/QueryFilter.js';
|
|
24
|
+
import { QueryIncludes } from '../../dto/QueryIncludes.js';
|
|
25
|
+
import { Crud } from './Crud.js';
|
|
26
|
+
import { FindModelType } from '../../policies/FindModelType.js';
|
|
27
|
+
let CrudRead = class CrudRead extends Crud {
|
|
28
|
+
checkAny(resource, user) {
|
|
29
|
+
// if we have user
|
|
30
|
+
if (user) {
|
|
31
|
+
return this.Ac.can(user.Role).readAny(resource);
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
// if not try guest account
|
|
35
|
+
return this.Ac.can('guest').readAny(resource);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
checkOwn(resource, user) {
|
|
39
|
+
// if we have user
|
|
40
|
+
if (user) {
|
|
41
|
+
return this.Ac.can(user.Role).readOwn(resource);
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
// if not try guest account
|
|
45
|
+
return this.Ac.can('guest').readOwn(resource);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* Creates query on model and ansures that user have proper permission to access it
|
|
51
|
+
*
|
|
52
|
+
* @param model model to query against
|
|
53
|
+
* @param user user for permission check
|
|
54
|
+
* @returns
|
|
55
|
+
*/
|
|
56
|
+
getSafeQuery(model, user) {
|
|
57
|
+
const descriptor = this.getModelDescriptor(model);
|
|
58
|
+
const query = model.query();
|
|
59
|
+
// retrieve resource name, if model does not have @OrmResource decorator set
|
|
60
|
+
// model name is default resource name
|
|
61
|
+
let resource = descriptor.RbacResource ? descriptor.RbacResource : descriptor.Name;
|
|
62
|
+
let permission = this.checkAny(resource, user);
|
|
63
|
+
if (!permission.granted) {
|
|
64
|
+
// permission for readAny not granted, check for own
|
|
65
|
+
permission = this.checkOwn(resource, user);
|
|
66
|
+
if (permission.granted && user) {
|
|
67
|
+
if (model.ensureOwnership) {
|
|
68
|
+
model.ensureOwnership(query, user, descriptor);
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
throw new UnexpectedServerError(`Resource ${resource} does not have ensureOwnership method implemented`);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
if (!permission.granted) {
|
|
75
|
+
throw new Forbidden(`You do not access to ${resource}`);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return { query, permission };
|
|
79
|
+
}
|
|
80
|
+
async getAll(model, getParams, filters, includes, user) {
|
|
81
|
+
const { query, permission } = this.getSafeQuery(model, user);
|
|
82
|
+
query
|
|
83
|
+
.where(filters)
|
|
84
|
+
.select('*')
|
|
85
|
+
.populate(includes)
|
|
86
|
+
.order(getParams.order, getParams.orderDirection ?? SortOrder.ASC)
|
|
87
|
+
.skip(getParams.page * getParams.perPage ?? 0)
|
|
88
|
+
.take(getParams.perPage ?? 10);
|
|
89
|
+
const count = await query.clone().clearColumns().count('*', 'count').takeFirst().asRaw();
|
|
90
|
+
const result = await query;
|
|
91
|
+
return new Ok({
|
|
92
|
+
Data: result.map((x) => x.dehydrateWithRelations()).map((x) => permission.filter(x)),
|
|
93
|
+
Total: count.count,
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
async get(user, model, id, includes) {
|
|
97
|
+
const descriptor = this.getModelDescriptor(model);
|
|
98
|
+
const { query, permission } = this.getSafeQuery(model, user);
|
|
99
|
+
const result = await query
|
|
100
|
+
.select('*')
|
|
101
|
+
.where(descriptor.PrimaryKey, id)
|
|
102
|
+
.populate(includes)
|
|
103
|
+
.firstOrThrow(new ResourceNotFound(`Record with id ${id} not found`, {
|
|
104
|
+
Resource: model.name,
|
|
105
|
+
[descriptor.PrimaryKey]: id,
|
|
106
|
+
}));
|
|
107
|
+
return new Ok(permission.filter(result.dehydrateWithRelations()));
|
|
108
|
+
}
|
|
109
|
+
async getRelation(model, id, relation, relationId, includes, user) {
|
|
110
|
+
const mDescriptor = this.getModelDescriptor(model);
|
|
111
|
+
const rDescriptor = this.getRelationDescriptor(model, relation);
|
|
112
|
+
const rmDescriptor = this.getModelDescriptor(rDescriptor.TargetModel);
|
|
113
|
+
const { query, permission } = this.getSafeQuery(rDescriptor.TargetModel, user);
|
|
114
|
+
if (!mDescriptor.Relations.has(relation)) {
|
|
115
|
+
return new BadRequest(`Resource ${mDescriptor.Name} does not have relation ${relation} defined`);
|
|
116
|
+
}
|
|
117
|
+
const pExists = await model.exists(id);
|
|
118
|
+
if (!pExists) {
|
|
119
|
+
throw new ResourceNotFound(`Record with id ${id} not found`, {
|
|
120
|
+
Resource: model.name,
|
|
121
|
+
[mDescriptor.PrimaryKey]: id,
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
const result = await query
|
|
125
|
+
.select('*')
|
|
126
|
+
.populate(includes)
|
|
127
|
+
.where(rmDescriptor.PrimaryKey, relationId)
|
|
128
|
+
.firstOrThrow(new ResourceNotFound(`Record with id ${relationId} not found`, {
|
|
129
|
+
Resource: rDescriptor.TargetModel.name,
|
|
130
|
+
[rmDescriptor.PrimaryKey]: relationId,
|
|
131
|
+
}));
|
|
132
|
+
return new Ok(permission.filter(result.dehydrateWithRelations()));
|
|
133
|
+
}
|
|
134
|
+
async getRelations(model, id, relation, params, filters, includes, user) {
|
|
135
|
+
const mDescriptor = this.getModelDescriptor(model);
|
|
136
|
+
const rDescriptor = this.getRelationDescriptor(model, relation);
|
|
137
|
+
const { query, permission } = this.getSafeQuery(rDescriptor.TargetModel, user);
|
|
138
|
+
if (!mDescriptor.Relations.has(relation)) {
|
|
139
|
+
return new BadRequest(`Resource ${mDescriptor.Name} does not have relation ${relation} defined`);
|
|
140
|
+
}
|
|
141
|
+
const pExists = await model.exists(id);
|
|
142
|
+
if (!pExists) {
|
|
143
|
+
throw new ResourceNotFound(`Record with id ${id} not found`, {
|
|
144
|
+
Resource: model.name,
|
|
145
|
+
[mDescriptor.PrimaryKey]: id,
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
query
|
|
149
|
+
.where(filters)
|
|
150
|
+
.where(rDescriptor.ForeignKey, id)
|
|
151
|
+
.select('*')
|
|
152
|
+
.populate(includes)
|
|
153
|
+
.order(params.order, params.orderDirection ?? SortOrder.ASC)
|
|
154
|
+
.skip(params.page * params.perPage ?? 0)
|
|
155
|
+
.take(params.perPage ?? 10);
|
|
156
|
+
const count = await query.clone().clearColumns().count('*', 'count').takeFirst().asRaw();
|
|
157
|
+
const result = await query;
|
|
158
|
+
return new Ok({
|
|
159
|
+
Data: result.map((x) => x.dehydrateWithRelations()).map((x) => permission.filter(x)),
|
|
160
|
+
Total: count,
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
__decorate([
|
|
165
|
+
Logger('orm-http:api'),
|
|
166
|
+
__metadata("design:type", Log)
|
|
167
|
+
], CrudRead.prototype, "Log", void 0);
|
|
168
|
+
__decorate([
|
|
169
|
+
Autoinject(),
|
|
170
|
+
__metadata("design:type", Orm)
|
|
171
|
+
], CrudRead.prototype, "Orm", void 0);
|
|
172
|
+
__decorate([
|
|
173
|
+
Autoinject(),
|
|
174
|
+
__metadata("design:type", AccessControl)
|
|
175
|
+
], CrudRead.prototype, "Ac", void 0);
|
|
176
|
+
__decorate([
|
|
177
|
+
Get(':model'),
|
|
178
|
+
__param(0, ModelType()),
|
|
179
|
+
__param(1, Query()),
|
|
180
|
+
__param(2, Query()),
|
|
181
|
+
__param(3, Query()),
|
|
182
|
+
__param(4, User()),
|
|
183
|
+
__metadata("design:type", Function),
|
|
184
|
+
__metadata("design:paramtypes", [Object, QueryArgs, QueryFilter, QueryIncludes, UserModel]),
|
|
185
|
+
__metadata("design:returntype", Promise)
|
|
186
|
+
], CrudRead.prototype, "getAll", null);
|
|
187
|
+
__decorate([
|
|
188
|
+
Get(':model/:id'),
|
|
189
|
+
__param(0, User()),
|
|
190
|
+
__param(1, ModelType()),
|
|
191
|
+
__param(2, Param()),
|
|
192
|
+
__param(3, Query()),
|
|
193
|
+
__metadata("design:type", Function),
|
|
194
|
+
__metadata("design:paramtypes", [UserModel, Object, Number, QueryIncludes]),
|
|
195
|
+
__metadata("design:returntype", Promise)
|
|
196
|
+
], CrudRead.prototype, "get", null);
|
|
197
|
+
__decorate([
|
|
198
|
+
Get(':model/:id/:relation/:relationId'),
|
|
199
|
+
__param(0, ModelType()),
|
|
200
|
+
__param(1, Param()),
|
|
201
|
+
__param(2, Param()),
|
|
202
|
+
__param(3, Param()),
|
|
203
|
+
__param(4, Query()),
|
|
204
|
+
__param(5, User()),
|
|
205
|
+
__metadata("design:type", Function),
|
|
206
|
+
__metadata("design:paramtypes", [Object, Object, String, Object, QueryIncludes, UserModel]),
|
|
207
|
+
__metadata("design:returntype", Promise)
|
|
208
|
+
], CrudRead.prototype, "getRelation", null);
|
|
209
|
+
__decorate([
|
|
210
|
+
Get(':model/:id/:relation'),
|
|
211
|
+
__param(0, ModelType()),
|
|
212
|
+
__param(1, Param()),
|
|
213
|
+
__param(2, Param()),
|
|
214
|
+
__param(3, Query()),
|
|
215
|
+
__param(4, Query()),
|
|
216
|
+
__param(5, Query()),
|
|
217
|
+
__param(6, User()),
|
|
218
|
+
__metadata("design:type", Function),
|
|
219
|
+
__metadata("design:paramtypes", [Object, Object, String, QueryArgs, QueryFilter, QueryIncludes, UserModel]),
|
|
220
|
+
__metadata("design:returntype", Promise)
|
|
221
|
+
], CrudRead.prototype, "getRelations", null);
|
|
222
|
+
CrudRead = __decorate([
|
|
223
|
+
BasePath('crud'),
|
|
224
|
+
Policy(FindModelType)
|
|
225
|
+
], CrudRead);
|
|
226
|
+
export { CrudRead };
|
|
227
|
+
//# sourceMappingURL=Read.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Read.js","sourceRoot":"","sources":["../../../../src/controllers/crud/Read.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IModelStatic, Orm } from '@spinajs/orm';
|
|
2
|
+
import { Ok } from '@spinajs/http';
|
|
3
|
+
import { Log } from '@spinajs/log';
|
|
4
|
+
import { AccessControl } from '@spinajs/rbac';
|
|
5
|
+
import { Crud } from './Crud.js';
|
|
6
|
+
export declare class CrudUpdate extends Crud {
|
|
7
|
+
protected Log: Log;
|
|
8
|
+
protected Orm: Orm;
|
|
9
|
+
protected Ac: AccessControl;
|
|
10
|
+
update(model: IModelStatic, id: number, data: unknown): Promise<Ok>;
|
|
11
|
+
updateRelation(model: IModelStatic, id: number, relation: string, relationId: any, data: unknown): Promise<Ok>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=Update.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Update.d.ts","sourceRoot":"","sources":["../../../../src/controllers/crud/Update.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAY,EAAE,EAAiC,MAAM,eAAe,CAAC;AAQ5E,OAAO,EAAE,GAAG,EAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,qBAEa,UAAW,SAAQ,IAAI;IAElC,SAAS,CAAC,GAAG,EAAE,GAAG,CAAC;IAGnB,SAAS,CAAC,GAAG,EAAE,GAAG,CAAC;IAGnB,SAAS,CAAC,EAAE,EAAE,aAAa,CAAC;IAIf,MAAM,CAAc,KAAK,EAAE,YAAY,EAAW,EAAE,EAAE,MAAM,EAAe,IAAI,EAAE,OAAO;IAmBxF,cAAc,CAAc,KAAK,EAAE,YAAY,EAAW,EAAE,EAAE,MAAM,EAAW,QAAQ,EAAE,MAAM,EAAW,UAAU,EAAE,GAAG,EAAe,IAAI,EAAE,OAAO;CA4BnK"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
11
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
12
|
+
};
|
|
13
|
+
import { Orm } from '@spinajs/orm';
|
|
14
|
+
import { BasePath, Ok, Put, Policy, BodyField, Param } from '@spinajs/http';
|
|
15
|
+
import { Permission } from '@spinajs/rbac-http';
|
|
16
|
+
import { Autoinject } from '@spinajs/di';
|
|
17
|
+
import { ResourceNotFound } from '@spinajs/exceptions';
|
|
18
|
+
import { ModelType } from '../../route-args/ModelType.js';
|
|
19
|
+
import { FindModelType } from '../../policies/FindModelType.js';
|
|
20
|
+
import { Log, Logger } from '@spinajs/log';
|
|
21
|
+
import { AccessControl } from '@spinajs/rbac';
|
|
22
|
+
import { Crud } from './Crud.js';
|
|
23
|
+
let CrudUpdate = class CrudUpdate extends Crud {
|
|
24
|
+
async update(model, id, data) {
|
|
25
|
+
const descriptor = this.getModelDescriptor(model);
|
|
26
|
+
const entity = await model.where(descriptor.PrimaryKey, id).firstOrThrow(new ResourceNotFound(`Record with id ${id} not found`, {
|
|
27
|
+
Resource: model.name,
|
|
28
|
+
[descriptor.PrimaryKey]: id,
|
|
29
|
+
}));
|
|
30
|
+
entity.hydrate(data);
|
|
31
|
+
await entity.update();
|
|
32
|
+
this.Log.trace('Updated entity with id ${id}');
|
|
33
|
+
return new Ok(entity.toJSON());
|
|
34
|
+
}
|
|
35
|
+
async updateRelation(model, id, relation, relationId, data) {
|
|
36
|
+
const mDescriptor = this.getModelDescriptor(model);
|
|
37
|
+
const rDescriptor = this.getRelationDescriptor(model, relation);
|
|
38
|
+
const rmDescriptor = this.getModelDescriptor(rDescriptor.TargetModel);
|
|
39
|
+
const query = rDescriptor.TargetModel.query();
|
|
40
|
+
const pExists = await model.exists(id);
|
|
41
|
+
if (!pExists) {
|
|
42
|
+
throw new ResourceNotFound(`Record with id ${id} not found`, {
|
|
43
|
+
Resource: model.name,
|
|
44
|
+
[mDescriptor.PrimaryKey]: id,
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
const result = await query.where(rmDescriptor.PrimaryKey, relationId).firstOrThrow(new ResourceNotFound(`Record with id ${relationId} not found`, {
|
|
48
|
+
Resource: rDescriptor.TargetModel.name,
|
|
49
|
+
[rmDescriptor.PrimaryKey]: relationId,
|
|
50
|
+
}));
|
|
51
|
+
this.Log.trace(`Updating relation ${relation} with id ${relationId} for model ${model.name} with id ${id}`);
|
|
52
|
+
result.hydrate(data);
|
|
53
|
+
await result.update();
|
|
54
|
+
return new Ok(result.toJSON());
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
__decorate([
|
|
58
|
+
Logger('orm-http:api'),
|
|
59
|
+
__metadata("design:type", Log)
|
|
60
|
+
], CrudUpdate.prototype, "Log", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
Autoinject(),
|
|
63
|
+
__metadata("design:type", Orm)
|
|
64
|
+
], CrudUpdate.prototype, "Orm", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
Autoinject(),
|
|
67
|
+
__metadata("design:type", AccessControl)
|
|
68
|
+
], CrudUpdate.prototype, "Ac", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
Put(':model/:id'),
|
|
71
|
+
Permission('updateAny'),
|
|
72
|
+
__param(0, ModelType()),
|
|
73
|
+
__param(1, Param()),
|
|
74
|
+
__param(2, BodyField()),
|
|
75
|
+
__metadata("design:type", Function),
|
|
76
|
+
__metadata("design:paramtypes", [Object, Number, Object]),
|
|
77
|
+
__metadata("design:returntype", Promise)
|
|
78
|
+
], CrudUpdate.prototype, "update", null);
|
|
79
|
+
__decorate([
|
|
80
|
+
Put(':model/:id/:relation/:relationId'),
|
|
81
|
+
Permission('updateAny'),
|
|
82
|
+
__param(0, ModelType()),
|
|
83
|
+
__param(1, Param()),
|
|
84
|
+
__param(2, Param()),
|
|
85
|
+
__param(3, Param()),
|
|
86
|
+
__param(4, BodyField()),
|
|
87
|
+
__metadata("design:type", Function),
|
|
88
|
+
__metadata("design:paramtypes", [Object, Number, String, Object, Object]),
|
|
89
|
+
__metadata("design:returntype", Promise)
|
|
90
|
+
], CrudUpdate.prototype, "updateRelation", null);
|
|
91
|
+
CrudUpdate = __decorate([
|
|
92
|
+
BasePath('crud'),
|
|
93
|
+
Policy(FindModelType)
|
|
94
|
+
], CrudUpdate);
|
|
95
|
+
export { CrudUpdate };
|
|
96
|
+
//# sourceMappingURL=Update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Update.js","sourceRoot":"","sources":["../../../../src/controllers/crud/Update.ts"],"names":[],"mappings":"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"}
|