@darraghor/nest-backend-libs 2.18.25 → 2.18.26
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/dist/organisation-subscriptions/organisation-subscriptions.controller.d.ts +3 -3
- package/dist/organisation-subscriptions/organisation-subscriptions.controller.js +12 -12
- package/dist/organisation-subscriptions/organisation-subscriptions.controller.js.map +1 -1
- package/dist/organisation-subscriptions/organisation-subscriptions.service.d.ts +2 -2
- package/dist/organisation-subscriptions/organisation-subscriptions.service.js +20 -12
- package/dist/organisation-subscriptions/organisation-subscriptions.service.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import { BooleanResult } from "../root-app/models/boolean-result";
|
|
|
6
6
|
export declare class OrganisationSubscriptionsController {
|
|
7
7
|
private readonly osrService;
|
|
8
8
|
constructor(osrService: OrganisationSubscriptionService);
|
|
9
|
-
findAll(
|
|
10
|
-
addSubscription(
|
|
11
|
-
deleteSubscription(
|
|
9
|
+
findAll(orgId: number, request: RequestWithUser): Promise<OrganisationSubscriptionRecord[]>;
|
|
10
|
+
addSubscription(orgId: number, body: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord[]>;
|
|
11
|
+
deleteSubscription(orgId: number, uuid: string): Promise<BooleanResult>;
|
|
12
12
|
}
|
|
@@ -27,13 +27,13 @@ let OrganisationSubscriptionsController = class OrganisationSubscriptionsControl
|
|
|
27
27
|
constructor(osrService) {
|
|
28
28
|
this.osrService = osrService;
|
|
29
29
|
}
|
|
30
|
-
async findAll(
|
|
31
|
-
return this.osrService.findAllForOwnerOfOrg(
|
|
30
|
+
async findAll(orgId, request) {
|
|
31
|
+
return this.osrService.findAllForOwnerOfOrg(orgId, request.user.id);
|
|
32
32
|
}
|
|
33
|
-
async addSubscription(
|
|
34
|
-
return this.osrService.save([body],
|
|
33
|
+
async addSubscription(orgId, body) {
|
|
34
|
+
return this.osrService.save([body], orgId);
|
|
35
35
|
}
|
|
36
|
-
async deleteSubscription(
|
|
36
|
+
async deleteSubscription(orgId, uuid) {
|
|
37
37
|
const isDeleted = await this.osrService.delete(uuid);
|
|
38
38
|
return { result: isDeleted };
|
|
39
39
|
}
|
|
@@ -41,36 +41,36 @@ let OrganisationSubscriptionsController = class OrganisationSubscriptionsControl
|
|
|
41
41
|
__decorate([
|
|
42
42
|
(0, common_1.Get)(),
|
|
43
43
|
(0, swagger_1.ApiOkResponse)({ type: [organisation_subscription_entity_1.OrganisationSubscriptionRecord] }),
|
|
44
|
-
__param(0, (0, common_1.Param)("
|
|
44
|
+
__param(0, (0, common_1.Param)("orgId")),
|
|
45
45
|
__param(1, (0, common_1.Request)()),
|
|
46
46
|
__metadata("design:type", Function),
|
|
47
|
-
__metadata("design:paramtypes", [
|
|
47
|
+
__metadata("design:paramtypes", [Number, Object]),
|
|
48
48
|
__metadata("design:returntype", Promise)
|
|
49
49
|
], OrganisationSubscriptionsController.prototype, "findAll", null);
|
|
50
50
|
__decorate([
|
|
51
51
|
(0, authz_1.MandatoryUserClaims)("modify:all"),
|
|
52
52
|
(0, common_1.Post)(),
|
|
53
53
|
(0, swagger_1.ApiOkResponse)({ type: [organisation_subscription_entity_1.OrganisationSubscriptionRecord] }),
|
|
54
|
-
__param(0, (0, common_1.Param)("
|
|
54
|
+
__param(0, (0, common_1.Param)("orgId")),
|
|
55
55
|
__param(1, (0, common_1.Body)()),
|
|
56
56
|
__metadata("design:type", Function),
|
|
57
|
-
__metadata("design:paramtypes", [
|
|
57
|
+
__metadata("design:paramtypes", [Number, fulfillSubscriptionDto_1.SaveOrganisationSubscriptionRecordDto]),
|
|
58
58
|
__metadata("design:returntype", Promise)
|
|
59
59
|
], OrganisationSubscriptionsController.prototype, "addSubscription", null);
|
|
60
60
|
__decorate([
|
|
61
61
|
(0, authz_1.MandatoryUserClaims)("modify:all"),
|
|
62
62
|
(0, common_1.Delete)(":uuid"),
|
|
63
63
|
(0, swagger_1.ApiOkResponse)({ type: boolean_result_1.BooleanResult }),
|
|
64
|
-
__param(0, (0, common_1.Param)("
|
|
64
|
+
__param(0, (0, common_1.Param)("orgId")),
|
|
65
65
|
__param(1, (0, common_1.Param)("uuid")),
|
|
66
66
|
__metadata("design:type", Function),
|
|
67
|
-
__metadata("design:paramtypes", [
|
|
67
|
+
__metadata("design:paramtypes", [Number, String]),
|
|
68
68
|
__metadata("design:returntype", Promise)
|
|
69
69
|
], OrganisationSubscriptionsController.prototype, "deleteSubscription", null);
|
|
70
70
|
OrganisationSubscriptionsController = __decorate([
|
|
71
71
|
(0, common_1.UseGuards)((0, passport_1.AuthGuard)("jwt"), authz_1.ClaimsAuthorisationGuard),
|
|
72
72
|
(0, swagger_1.ApiBearerAuth)(),
|
|
73
|
-
(0, common_1.Controller)("organisation/:
|
|
73
|
+
(0, common_1.Controller)("organisation/:orgId/subscriptions"),
|
|
74
74
|
(0, swagger_1.ApiTags)("Organisation Subscriptions"),
|
|
75
75
|
__metadata("design:paramtypes", [organisation_subscriptions_service_1.OrganisationSubscriptionService])
|
|
76
76
|
], OrganisationSubscriptionsController);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organisation-subscriptions.controller.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAAgD;AAChD,2CASwB;AACxB,6CAAsE;AACtE,+CAA2C;AAE3C,kGAA2F;AAC3F,6FAAqF;AACrF,oCAAuE;AACvE,4EAAsF;AACtF,sEAAgE;AAMzD,IAAM,mCAAmC,GAAzC,MAAM,mCAAmC;IACf;IAA7B,YAA6B,UAA2C;QAA3C,eAAU,GAAV,UAAU,CAAiC;IAAG,CAAC;IAItE,AAAN,KAAK,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"organisation-subscriptions.controller.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAAgD;AAChD,2CASwB;AACxB,6CAAsE;AACtE,+CAA2C;AAE3C,kGAA2F;AAC3F,6FAAqF;AACrF,oCAAuE;AACvE,4EAAsF;AACtF,sEAAgE;AAMzD,IAAM,mCAAmC,GAAzC,MAAM,mCAAmC;IACf;IAA7B,YAA6B,UAA2C;QAA3C,eAAU,GAAV,UAAU,CAAiC;IAAG,CAAC;IAItE,AAAN,KAAK,CAAC,OAAO,CACO,KAAa,EAClB,OAAwB;QAEnC,OAAO,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,KAAK,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACxE,CAAC;IAKK,AAAN,KAAK,CAAC,eAAe,CACD,KAAa,EACrB,IAA2C;QAEnD,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC;IAC/C,CAAC;IAKK,AAAN,KAAK,CAAC,kBAAkB,CACJ,KAAa,EACd,IAAY;QAE3B,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QACrD,OAAO,EAAC,MAAM,EAAE,SAAS,EAAC,CAAC;IAC/B,CAAC;CACJ,CAAA;AA3BS;IAFL,IAAA,YAAG,GAAE;IACL,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,CAAC,iEAA8B,CAAC,EAAC,CAAC;IAEnD,WAAA,IAAA,cAAK,EAAC,OAAO,CAAC,CAAA;IACd,WAAA,IAAA,gBAAO,GAAE,CAAA;;;;kEAGb;AAKK;IAHL,IAAA,2BAAmB,EAAC,YAAY,CAAC;IACjC,IAAA,aAAI,GAAE;IACN,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,CAAC,iEAA8B,CAAC,EAAC,CAAC;IAEnD,WAAA,IAAA,cAAK,EAAC,OAAO,CAAC,CAAA;IACd,WAAA,IAAA,aAAI,GAAE,CAAA;;6CAAO,8DAAqC;;0EAGtD;AAKK;IAHL,IAAA,2BAAmB,EAAC,YAAY,CAAC;IACjC,IAAA,eAAM,EAAC,OAAO,CAAC;IACf,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,8BAAa,EAAC,CAAC;IAEhC,WAAA,IAAA,cAAK,EAAC,OAAO,CAAC,CAAA;IACd,WAAA,IAAA,cAAK,EAAC,MAAM,CAAC,CAAA;;;;6EAIjB;AA/BQ,mCAAmC;IAJ/C,IAAA,kBAAS,EAAC,IAAA,oBAAS,EAAC,KAAK,CAAC,EAAE,gCAAwB,CAAC;IACrD,IAAA,uBAAa,GAAE;IACf,IAAA,mBAAU,EAAC,mCAAmC,CAAC;IAC/C,IAAA,iBAAO,EAAC,4BAA4B,CAAC;qCAEO,oEAA+B;GAD/D,mCAAmC,CAgC/C;AAhCY,kFAAmC"}
|
|
@@ -10,9 +10,9 @@ export declare class OrganisationSubscriptionService {
|
|
|
10
10
|
private readonly logger;
|
|
11
11
|
constructor(orgRepo: Repository<Organisation>, orgSubRepository: Repository<OrganisationSubscriptionRecord>, paymentSessionService: PaymentSessionService);
|
|
12
12
|
private notFoundMessage;
|
|
13
|
-
findAllForOwnerOfOrg(
|
|
13
|
+
findAllForOwnerOfOrg(orgId: number, currentUserId: number): Promise<OrganisationSubscriptionRecord[]>;
|
|
14
14
|
findOne(subscriptionUuid: string): Promise<OrganisationSubscriptionRecord>;
|
|
15
15
|
findAllForOrg(orgUuid: string): Promise<OrganisationSubscriptionRecord[]>;
|
|
16
|
-
save(subRecordDtoCollection: SaveOrganisationSubscriptionRecordDto[],
|
|
16
|
+
save(subRecordDtoCollection: SaveOrganisationSubscriptionRecordDto[], orgId?: number): Promise<OrganisationSubscriptionRecord[]>;
|
|
17
17
|
delete(subUuid: string): Promise<boolean>;
|
|
18
18
|
}
|
|
@@ -32,11 +32,11 @@ let OrganisationSubscriptionService = OrganisationSubscriptionService_1 = class
|
|
|
32
32
|
this.paymentSessionService = paymentSessionService;
|
|
33
33
|
}
|
|
34
34
|
notFoundMessage = "Organisation not found or you are not owner of it";
|
|
35
|
-
async findAllForOwnerOfOrg(
|
|
35
|
+
async findAllForOwnerOfOrg(orgId, currentUserId) {
|
|
36
36
|
// find the org if the user is owner
|
|
37
37
|
const org = await this.orgRepo.findOne({
|
|
38
38
|
where: {
|
|
39
|
-
|
|
39
|
+
id: orgId,
|
|
40
40
|
memberships: {
|
|
41
41
|
personId: currentUserId,
|
|
42
42
|
roles: {
|
|
@@ -83,7 +83,8 @@ let OrganisationSubscriptionService = OrganisationSubscriptionService_1 = class
|
|
|
83
83
|
}
|
|
84
84
|
return org.subscriptionRecords;
|
|
85
85
|
}
|
|
86
|
-
|
|
86
|
+
// eslint-disable-next-line sonarjs/cognitive-complexity
|
|
87
|
+
async save(subRecordDtoCollection, orgId) {
|
|
87
88
|
const results = [];
|
|
88
89
|
for (const subRecord of subRecordDtoCollection) {
|
|
89
90
|
let existingSubscription = await this.orgSubRepository.findOne({
|
|
@@ -94,21 +95,28 @@ let OrganisationSubscriptionService = OrganisationSubscriptionService_1 = class
|
|
|
94
95
|
if (!existingSubscription) {
|
|
95
96
|
// if no existing subscription then create a new one, get the org
|
|
96
97
|
let org;
|
|
97
|
-
if (
|
|
98
|
+
if (orgId === undefined) {
|
|
98
99
|
if (!subRecord.millerPaymentReferenceUuid) {
|
|
99
100
|
this.logger.error("No organisation uuid or payment reference uuid provided. Cannot match this payment to a customer", subRecord);
|
|
100
101
|
throw new common_1.NotFoundException("No organisation uuid or payment reference uuid provided. Cannot match this payment to a customer");
|
|
101
102
|
}
|
|
102
103
|
const paymentReference = await this.paymentSessionService.findSessionByUuid(subRecord.millerPaymentReferenceUuid ?? "");
|
|
103
|
-
|
|
104
|
+
org =
|
|
105
|
+
(await this.orgRepo.findOne({
|
|
106
|
+
where: {
|
|
107
|
+
uuid: paymentReference?.organisationUuid,
|
|
108
|
+
},
|
|
109
|
+
})) || undefined;
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
// eslint-disable-next-line prefer-const
|
|
113
|
+
org =
|
|
114
|
+
(await this.orgRepo.findOne({
|
|
115
|
+
where: {
|
|
116
|
+
id: orgId,
|
|
117
|
+
},
|
|
118
|
+
})) || undefined;
|
|
104
119
|
}
|
|
105
|
-
// eslint-disable-next-line prefer-const
|
|
106
|
-
org =
|
|
107
|
-
(await this.orgRepo.findOne({
|
|
108
|
-
where: {
|
|
109
|
-
uuid: orgUuid,
|
|
110
|
-
},
|
|
111
|
-
})) || undefined;
|
|
112
120
|
existingSubscription = this.orgSubRepository.create({
|
|
113
121
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
114
122
|
organisation: org,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organisation-subscriptions.service.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAqE;AACrE,6CAAiD;AACjD,qCAAmC;AACnC,6DAAoD;AACpD,sFAA0E;AAC1E,yFAAkF;AAClF,kGAA2F;AAIpF,IAAM,+BAA+B,uCAArC,MAAM,+BAA+B;IAI5B;IAEA;IACS;IANJ,MAAM,GAAG,IAAI,eAAM,CAAC,iCAA+B,CAAC,IAAI,CAAC,CAAC;IAC3E,YAEY,OAAiC,EAEjC,gBAA4D,EACnD,qBAA4C;QAHrD,YAAO,GAAP,OAAO,CAA0B;QAEjC,qBAAgB,GAAhB,gBAAgB,CAA4C;QACnD,0BAAqB,GAArB,qBAAqB,CAAuB;IAC9D,CAAC;IACI,eAAe,GACnB,mDAAmD,CAAC;IACxD,KAAK,CAAC,oBAAoB,CACtB,
|
|
1
|
+
{"version":3,"file":"organisation-subscriptions.service.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.service.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@darraghor/nest-backend-libs",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.26",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"description": "Some helpers for personal projects in nestjs",
|
|
6
6
|
"homepage": "https://github.com/darraghoriordan/nest-backend-libs",
|