@resolveio/server-lib 5.2.19 → 5.2.21-newrole
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/collections/user.collection.js +39 -32
- package/fixtures/init.js +0 -8
- package/managers/subscription.manager.js +14 -14
- package/package.json +1 -1
|
@@ -22,13 +22,6 @@ var schema = {
|
|
|
22
22
|
type: Date,
|
|
23
23
|
optional: true
|
|
24
24
|
},
|
|
25
|
-
readonly: {
|
|
26
|
-
type: Boolean,
|
|
27
|
-
optional: true
|
|
28
|
-
},
|
|
29
|
-
active: {
|
|
30
|
-
type: Boolean
|
|
31
|
-
},
|
|
32
25
|
attempts: {
|
|
33
26
|
type: Number,
|
|
34
27
|
optional: true
|
|
@@ -65,53 +58,67 @@ var schema = {
|
|
|
65
58
|
type: String
|
|
66
59
|
},
|
|
67
60
|
roles: {
|
|
61
|
+
type: Object
|
|
62
|
+
},
|
|
63
|
+
'roles.super_admin': {
|
|
64
|
+
type: Boolean
|
|
65
|
+
},
|
|
66
|
+
'roles.approvals': {
|
|
68
67
|
type: Array
|
|
69
68
|
},
|
|
70
|
-
'roles.$': {
|
|
69
|
+
'roles.approvals.$': {
|
|
70
|
+
type: Object
|
|
71
|
+
},
|
|
72
|
+
'roles.approvals.$.name': {
|
|
71
73
|
type: String
|
|
72
74
|
},
|
|
73
|
-
|
|
74
|
-
type: String
|
|
75
|
-
optional: true
|
|
75
|
+
'roles.approvals.$.type': {
|
|
76
|
+
type: String
|
|
76
77
|
},
|
|
77
|
-
|
|
78
|
-
type:
|
|
79
|
-
blackbox: true,
|
|
80
|
-
optional: true
|
|
78
|
+
'roles.approvals.$.accounting_code': {
|
|
79
|
+
type: String
|
|
81
80
|
},
|
|
82
|
-
|
|
83
|
-
type: Array
|
|
84
|
-
optional: true
|
|
81
|
+
'roles.groups': {
|
|
82
|
+
type: Array
|
|
85
83
|
},
|
|
86
|
-
'
|
|
84
|
+
'roles.groups.$': {
|
|
87
85
|
type: Object
|
|
88
86
|
},
|
|
89
|
-
'
|
|
87
|
+
'roles.groups.$.name': {
|
|
90
88
|
type: String
|
|
91
89
|
},
|
|
92
|
-
'
|
|
93
|
-
type:
|
|
90
|
+
'roles.groups.$.views': {
|
|
91
|
+
type: Array
|
|
94
92
|
},
|
|
95
|
-
'
|
|
93
|
+
'roles.groups.$.views.$': {
|
|
96
94
|
type: String
|
|
97
95
|
},
|
|
98
|
-
'
|
|
99
|
-
type: String
|
|
96
|
+
'roles.groups.$.yard': {
|
|
97
|
+
type: String,
|
|
98
|
+
optional: true
|
|
99
|
+
},
|
|
100
|
+
'roles.notifications': {
|
|
101
|
+
type: Array
|
|
100
102
|
},
|
|
101
|
-
'
|
|
103
|
+
'roles.notifications.$': {
|
|
102
104
|
type: String
|
|
103
105
|
},
|
|
104
|
-
'
|
|
105
|
-
type:
|
|
106
|
+
'roles.miscs': {
|
|
107
|
+
type: Array
|
|
106
108
|
},
|
|
107
|
-
'
|
|
108
|
-
type:
|
|
109
|
-
optional: true
|
|
109
|
+
'roles.miscs.$': {
|
|
110
|
+
type: String
|
|
110
111
|
},
|
|
111
|
-
|
|
112
|
+
active: Boolean,
|
|
113
|
+
phonenumber: {
|
|
112
114
|
type: String,
|
|
113
115
|
optional: true
|
|
114
116
|
},
|
|
117
|
+
other: {
|
|
118
|
+
type: Object,
|
|
119
|
+
optional: true,
|
|
120
|
+
blackbox: true
|
|
121
|
+
},
|
|
115
122
|
customers: {
|
|
116
123
|
type: Array,
|
|
117
124
|
optional: true,
|
package/fixtures/init.js
CHANGED
|
@@ -36,8 +36,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
36
36
|
};
|
|
37
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
38
|
var app_version_collection_1 = require("../collections/app-version.collection");
|
|
39
|
-
var logged_in_users_collection_1 = require("../collections/logged-in-users.collection");
|
|
40
|
-
var active_subscription_collection_1 = require("../collections/active-subscription.collection");
|
|
41
39
|
var mongoose_1 = require("mongoose");
|
|
42
40
|
function loadServerInit() {
|
|
43
41
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -53,12 +51,6 @@ function loadServerInit() {
|
|
|
53
51
|
version: 1
|
|
54
52
|
});
|
|
55
53
|
}
|
|
56
|
-
return [4 /*yield*/, logged_in_users_collection_1.LoggedInUsers.deleteMany({}).exec()];
|
|
57
|
-
case 2:
|
|
58
|
-
_a.sent();
|
|
59
|
-
return [4 /*yield*/, active_subscription_collection_1.ActiveSubscriptions.deleteMany({}).exec()];
|
|
60
|
-
case 3:
|
|
61
|
-
_a.sent();
|
|
62
54
|
return [2 /*return*/];
|
|
63
55
|
}
|
|
64
56
|
});
|
|
@@ -815,20 +815,20 @@ var SubscriptionManager = /** @class */ (function () {
|
|
|
815
815
|
switch (_c.label) {
|
|
816
816
|
case 0:
|
|
817
817
|
that = this;
|
|
818
|
-
if (
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
818
|
+
if (sub.preSubscriptionData) {
|
|
819
|
+
if (that._publications[sub.publication].fetchFunction(document, sub.preSubscriptionData)) {
|
|
820
|
+
if (this._subCache.findIndex(function (a) { return a.publication === sub.publication && JSON.stringify(a.subscriptionData) === JSON.stringify(sub.subscriptionData); }) >= 0) {
|
|
821
|
+
this._nodeCache.del(this._subCache.filter(function (a) { return a.publication === sub.publication && JSON.stringify(a.subscriptionData) === JSON.stringify(sub.subscriptionData); })[0].id);
|
|
822
|
+
this._subCache.splice(this._subCache.findIndex(function (a) { return a.publication === sub.publication && JSON.stringify(a.subscriptionData) === JSON.stringify(sub.subscriptionData); }), 1);
|
|
823
|
+
}
|
|
824
|
+
that.sendPubData(sub, type, collection);
|
|
825
|
+
return [2 /*return*/];
|
|
823
826
|
}
|
|
824
|
-
that.sendPubData(sub, type, collection);
|
|
825
827
|
}
|
|
826
|
-
return [3 /*break*/,
|
|
827
|
-
case 1:
|
|
828
|
-
if (!that._publications[sub.publication].preFunction) return [3 /*break*/, 3];
|
|
828
|
+
if (!that._publications[sub.publication].preFunction) return [3 /*break*/, 2];
|
|
829
829
|
_b = sub;
|
|
830
830
|
return [4 /*yield*/, that._publications[sub.publication].preFunction(sub.subscriptionData)];
|
|
831
|
-
case
|
|
831
|
+
case 1:
|
|
832
832
|
_b.preSubscriptionData = _c.sent();
|
|
833
833
|
if (that._publications[sub.publication].fetchFunction(document, sub.preSubscriptionData)) {
|
|
834
834
|
if (this._subCache.findIndex(function (a) { return a.publication === sub.publication && JSON.stringify(a.subscriptionData) === JSON.stringify(sub.subscriptionData); }) >= 0) {
|
|
@@ -837,8 +837,8 @@ var SubscriptionManager = /** @class */ (function () {
|
|
|
837
837
|
}
|
|
838
838
|
that.sendPubData(sub, type, collection);
|
|
839
839
|
}
|
|
840
|
-
return [3 /*break*/,
|
|
841
|
-
case
|
|
840
|
+
return [3 /*break*/, 3];
|
|
841
|
+
case 2:
|
|
842
842
|
if (that._publications[sub.publication].ws_specific) {
|
|
843
843
|
sub.clients.forEach(function (client) {
|
|
844
844
|
var _a;
|
|
@@ -879,8 +879,8 @@ var SubscriptionManager = /** @class */ (function () {
|
|
|
879
879
|
that.sendPubData(sub, type, collection);
|
|
880
880
|
}
|
|
881
881
|
}
|
|
882
|
-
_c.label =
|
|
883
|
-
case
|
|
882
|
+
_c.label = 3;
|
|
883
|
+
case 3: return [2 /*return*/];
|
|
884
884
|
}
|
|
885
885
|
});
|
|
886
886
|
});
|