@oneuptime/common 12.0.21 → 12.0.23

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.
Files changed (94) hide show
  1. package/Models/DatabaseModels/Index.ts +4 -0
  2. package/Models/DatabaseModels/NetworkDevice.ts +44 -0
  3. package/Models/DatabaseModels/NetworkDeviceAutoImportRule.ts +564 -0
  4. package/Models/DatabaseModels/NetworkDeviceDiscoveryScan.ts +38 -0
  5. package/Models/DatabaseModels/UserTwoFactorBackupCode.ts +262 -0
  6. package/Server/API/UserTwoFactorBackupCodeAPI.ts +258 -0
  7. package/Server/Infrastructure/Postgres/SchemaMigrations/1789100000000-AddNetworkDeviceAutoImportRule.ts +60 -0
  8. package/Server/Infrastructure/Postgres/SchemaMigrations/1789100000000-AddUserTwoFactorBackupCode.ts +63 -0
  9. package/Server/Infrastructure/Postgres/SchemaMigrations/1789200000000-AddSysObjectIdPatternToAutoImportRule.ts +26 -0
  10. package/Server/Infrastructure/Postgres/SchemaMigrations/1789300000000-AddAutoApplyVendorHealthTemplate.ts +26 -0
  11. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +8 -0
  12. package/Server/Services/Index.ts +4 -0
  13. package/Server/Services/NetworkDeviceAutoImportRuleEngineService.ts +917 -0
  14. package/Server/Services/NetworkDeviceAutoImportRuleService.ts +181 -0
  15. package/Server/Services/UserService.ts +42 -0
  16. package/Server/Services/UserTwoFactorBackupCodeService.ts +355 -0
  17. package/Server/Utils/Monitor/NetworkInventoryUtil.ts +39 -1
  18. package/Server/Utils/TwoFactorBackupCode.ts +266 -0
  19. package/Tests/Server/API/UserAuthenticationAPI.test.ts +16 -3
  20. package/Tests/Server/API/UserTwoFactorAuthAdminAPI.test.ts +18 -2
  21. package/Tests/Server/API/UserTwoFactorBackupCodeAPI.test.ts +1390 -0
  22. package/Tests/Server/Services/AutoImportScanCredentialSelect.test.ts +205 -0
  23. package/Tests/Server/Services/NetworkDeviceAutoImportRuleEngineService.test.ts +933 -0
  24. package/Tests/Server/Services/UserAuthenticationService.test.ts +23 -1
  25. package/Tests/Server/Services/UserTwoFactorAuthAdmin.test.ts +21 -0
  26. package/Tests/Server/Services/UserTwoFactorBackupCodeAdminSurface.test.ts +919 -0
  27. package/Tests/Server/Services/UserTwoFactorBackupCodeService.test.ts +862 -0
  28. package/Tests/Server/Utils/Monitor/NetworkInventoryUtil.test.ts +97 -1
  29. package/Tests/Server/Utils/TwoFactorBackupCode.test.ts +475 -0
  30. package/Tests/Utils/NetworkDiscovery/AutoImportRuleMatcher.test.ts +516 -0
  31. package/Tests/Utils/NetworkDiscovery/DiscoveredDeviceBuilder.test.ts +272 -0
  32. package/Tests/Utils/NetworkDiscovery/ScanTargetUtil.test.ts +164 -0
  33. package/Types/Email/EmailTemplateType.ts +2 -0
  34. package/Types/NetworkAutomation/RuleRunResult.ts +84 -0
  35. package/Types/Permission.ts +47 -0
  36. package/Types/UserAuthenticationStatus.ts +16 -0
  37. package/Utils/NetworkDiscovery/AutoImportRuleMatcher.ts +257 -0
  38. package/Utils/NetworkDiscovery/DiscoveredDeviceBuilder.ts +183 -0
  39. package/Utils/NetworkDiscovery/DiscoveredHostUtil.ts +95 -0
  40. package/Utils/NetworkDiscovery/DiscoveryImportEligibility.ts +66 -0
  41. package/Utils/NetworkDiscovery/ScanTargetUtil.ts +82 -0
  42. package/build/dist/Models/DatabaseModels/Index.js +4 -0
  43. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  44. package/build/dist/Models/DatabaseModels/NetworkDevice.js +45 -0
  45. package/build/dist/Models/DatabaseModels/NetworkDevice.js.map +1 -1
  46. package/build/dist/Models/DatabaseModels/NetworkDeviceAutoImportRule.js +589 -0
  47. package/build/dist/Models/DatabaseModels/NetworkDeviceAutoImportRule.js.map +1 -0
  48. package/build/dist/Models/DatabaseModels/NetworkDeviceDiscoveryScan.js +28 -0
  49. package/build/dist/Models/DatabaseModels/NetworkDeviceDiscoveryScan.js.map +1 -1
  50. package/build/dist/Models/DatabaseModels/UserTwoFactorBackupCode.js +277 -0
  51. package/build/dist/Models/DatabaseModels/UserTwoFactorBackupCode.js.map +1 -0
  52. package/build/dist/Server/API/UserTwoFactorBackupCodeAPI.js +201 -0
  53. package/build/dist/Server/API/UserTwoFactorBackupCodeAPI.js.map +1 -0
  54. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789100000000-AddNetworkDeviceAutoImportRule.js +35 -0
  55. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789100000000-AddNetworkDeviceAutoImportRule.js.map +1 -0
  56. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789100000000-AddUserTwoFactorBackupCode.js +46 -0
  57. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789100000000-AddUserTwoFactorBackupCode.js.map +1 -0
  58. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789200000000-AddSysObjectIdPatternToAutoImportRule.js +19 -0
  59. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789200000000-AddSysObjectIdPatternToAutoImportRule.js.map +1 -0
  60. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789300000000-AddAutoApplyVendorHealthTemplate.js +19 -0
  61. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1789300000000-AddAutoApplyVendorHealthTemplate.js.map +1 -0
  62. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +8 -0
  63. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  64. package/build/dist/Server/Services/Index.js +4 -0
  65. package/build/dist/Server/Services/Index.js.map +1 -1
  66. package/build/dist/Server/Services/NetworkDeviceAutoImportRuleEngineService.js +711 -0
  67. package/build/dist/Server/Services/NetworkDeviceAutoImportRuleEngineService.js.map +1 -0
  68. package/build/dist/Server/Services/NetworkDeviceAutoImportRuleService.js +155 -0
  69. package/build/dist/Server/Services/NetworkDeviceAutoImportRuleService.js.map +1 -0
  70. package/build/dist/Server/Services/UserService.js +39 -0
  71. package/build/dist/Server/Services/UserService.js.map +1 -1
  72. package/build/dist/Server/Services/UserTwoFactorBackupCodeService.js +327 -0
  73. package/build/dist/Server/Services/UserTwoFactorBackupCodeService.js.map +1 -0
  74. package/build/dist/Server/Utils/Monitor/NetworkInventoryUtil.js +26 -0
  75. package/build/dist/Server/Utils/Monitor/NetworkInventoryUtil.js.map +1 -1
  76. package/build/dist/Server/Utils/TwoFactorBackupCode.js +269 -0
  77. package/build/dist/Server/Utils/TwoFactorBackupCode.js.map +1 -0
  78. package/build/dist/Types/Email/EmailTemplateType.js +2 -0
  79. package/build/dist/Types/Email/EmailTemplateType.js.map +1 -1
  80. package/build/dist/Types/NetworkAutomation/RuleRunResult.js +24 -0
  81. package/build/dist/Types/NetworkAutomation/RuleRunResult.js.map +1 -1
  82. package/build/dist/Types/Permission.js +41 -0
  83. package/build/dist/Types/Permission.js.map +1 -1
  84. package/build/dist/Utils/NetworkDiscovery/AutoImportRuleMatcher.js +149 -0
  85. package/build/dist/Utils/NetworkDiscovery/AutoImportRuleMatcher.js.map +1 -0
  86. package/build/dist/Utils/NetworkDiscovery/DiscoveredDeviceBuilder.js +121 -0
  87. package/build/dist/Utils/NetworkDiscovery/DiscoveredDeviceBuilder.js.map +1 -0
  88. package/build/dist/Utils/NetworkDiscovery/DiscoveredHostUtil.js +75 -0
  89. package/build/dist/Utils/NetworkDiscovery/DiscoveredHostUtil.js.map +1 -0
  90. package/build/dist/Utils/NetworkDiscovery/DiscoveryImportEligibility.js +59 -0
  91. package/build/dist/Utils/NetworkDiscovery/DiscoveryImportEligibility.js.map +1 -0
  92. package/build/dist/Utils/NetworkDiscovery/ScanTargetUtil.js +60 -0
  93. package/build/dist/Utils/NetworkDiscovery/ScanTargetUtil.js.map +1 -1
  94. package/package.json +1 -1
@@ -0,0 +1,327 @@
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
+ import DatabaseService from "./DatabaseService";
11
+ import Model from "../../Models/DatabaseModels/UserTwoFactorBackupCode";
12
+ import TwoFactorBackupCode, { BackupCodeSetSize, } from "../Utils/TwoFactorBackupCode";
13
+ import QueryHelper from "../Types/Database/QueryHelper";
14
+ import BadDataException from "../../Types/Exception/BadDataException";
15
+ import LIMIT_MAX from "../../Types/Database/LimitMax";
16
+ import SortOrder from "../../Types/BaseDatabase/SortOrder";
17
+ import OneUptimeDate from "../../Types/Date";
18
+ import CaptureSpan from "../Utils/Telemetry/CaptureSpan";
19
+ import logger from "../Utils/Logger";
20
+ export class Service extends DatabaseService {
21
+ constructor() {
22
+ super(Model);
23
+ }
24
+ /*
25
+ * The model denies create to everyone, so the only way a row is written is
26
+ * `regenerateForUser` below, as root. This hook is the second lock on the
27
+ * same door: it refuses any create that did not come through there.
28
+ *
29
+ * Worth having both because the two guards fail differently. The table
30
+ * permission is enforced by the CRUD API layer and is bypassed wholesale by
31
+ * `isRoot`, which every internal caller uses -- so a future service that
32
+ * reaches for `UserTwoFactorBackupCodeService.create()` with a plaintext
33
+ * code, or with no owner, would sail past it. What lands in `codeHash` is
34
+ * the credential; there is no recovering from writing the wrong thing there.
35
+ */
36
+ async onBeforeCreate(createBy) {
37
+ if (!createBy.data.userId) {
38
+ throw new BadDataException("User id is required");
39
+ }
40
+ if (!createBy.data.codeHash) {
41
+ throw new BadDataException("Backup code hash is required");
42
+ }
43
+ /*
44
+ * A code that arrives already spent is a caller confusing itself about
45
+ * which end of the lifecycle it is at. Codes are minted usable and are
46
+ * spent only by `consumeCode`.
47
+ *
48
+ * Deleted rather than set to undefined: `exactOptionalPropertyTypes` is on,
49
+ * so the property being ABSENT and the property holding `undefined` are
50
+ * different things to the compiler, and only the first is allowed here.
51
+ */
52
+ delete createBy.data.usedAt;
53
+ return {
54
+ createBy: createBy,
55
+ carryForward: {},
56
+ };
57
+ }
58
+ /**
59
+ * Mint a fresh set of backup codes for one user, replacing whatever they
60
+ * had, and return the PLAINTEXT codes.
61
+ *
62
+ * This is the only moment the plaintext exists anywhere. The caller shows it
63
+ * to the user once and then it is gone -- only the keyed digests are stored,
64
+ * so nothing (not this service, not a master admin, not a database dump) can
65
+ * produce the codes again. That is the property the feature is worth having
66
+ * for, and it is why the API route wraps this in a response the UI is
67
+ * expected to make the user acknowledge.
68
+ *
69
+ * REPLACING rather than adding is deliberate. "Generate more codes" would
70
+ * leave the codes from a list the user printed, lost and then regenerated
71
+ * over still working, which defeats the point of regenerating after a
72
+ * suspected compromise.
73
+ *
74
+ * ALL OR NOTHING, and this is the part that needs care. The old set is
75
+ * deleted first, then the new rows are written one at a time -- so a failure
76
+ * partway through the loop would otherwise leave the account holding a few
77
+ * rows that WERE written and that the caller, having thrown, never showed to
78
+ * anybody. `getStatusForUser` would then report "4 backup codes" to a user
79
+ * who has never seen one of them: codes that are unusable in practice and
80
+ * that hide the fact that they have no recovery route left. That is the
81
+ * worst state this feature can produce, because it looks exactly like the
82
+ * good one.
83
+ *
84
+ * So a failure is compensated: everything written for this user is removed,
85
+ * and the account ends with NO codes and an error on screen. "You have no
86
+ * backup codes" is a state the profile page already tells the user to fix;
87
+ * "you have four codes you have never seen" is not.
88
+ *
89
+ * The compensating delete is itself best-effort -- if it also fails there is
90
+ * nothing further to try -- but it turns a silent, permanent trap into two
91
+ * consecutive infrastructure failures.
92
+ */
93
+ async regenerateForUser(data) {
94
+ const count = data.count || BackupCodeSetSize;
95
+ await this.deleteAllForUser({ userId: data.userId });
96
+ const codes = TwoFactorBackupCode.generateCodeSet(count);
97
+ try {
98
+ for (const code of codes) {
99
+ const backupCode = new Model();
100
+ backupCode.userId = data.userId;
101
+ backupCode.codeHash = TwoFactorBackupCode.hashCode({
102
+ code: code,
103
+ userId: data.userId,
104
+ });
105
+ await this.create({
106
+ data: backupCode,
107
+ props: {
108
+ isRoot: true,
109
+ },
110
+ });
111
+ }
112
+ }
113
+ catch (err) {
114
+ try {
115
+ await this.deleteAllForUser({ userId: data.userId });
116
+ }
117
+ catch (cleanupError) {
118
+ /*
119
+ * Swallowed so the ORIGINAL failure is what the caller sees. The
120
+ * cleanup error is the less useful of the two -- it explains why the
121
+ * rollback did not happen, not why the write did not.
122
+ */
123
+ logger.error(cleanupError);
124
+ }
125
+ throw err;
126
+ }
127
+ return codes;
128
+ }
129
+ /**
130
+ * Spend one of this user's backup codes, if the submitted code is one of
131
+ * them and has not been used already.
132
+ *
133
+ * ONE STATEMENT, ON PURPOSE
134
+ *
135
+ * The obvious shape -- find the row, check `usedAt`, then update it -- has a
136
+ * window between the read and the write, and "single use" is the entire
137
+ * guarantee a backup code offers. Two sign-in attempts carrying the same
138
+ * code that arrive together would both read a null `usedAt` and both be let
139
+ * in, which is precisely the property an attacker who has watched somebody
140
+ * type a code off a printed list would exploit.
141
+ *
142
+ * `usedAt IS NULL` in the WHERE clause moves the decision inside Postgres,
143
+ * where the row lock settles it: the first statement to reach the row
144
+ * updates it, the second matches nothing. `RETURNING "_id"` is what turns
145
+ * that into an answer for the caller -- an UPDATE that matched no rows and
146
+ * an UPDATE that matched one are otherwise indistinguishable from here.
147
+ *
148
+ * Written as raw parameterized SQL rather than through the ORM because no
149
+ * write path on DatabaseService both takes a non-primary-key predicate and
150
+ * reports what it matched. Column and table names are literals in this file,
151
+ * never caller input, and all three values are bound parameters.
152
+ *
153
+ * `deletedAt IS NULL` is included because soft-deleted rows are still
154
+ * physically present; without it, a code from a set that regeneration
155
+ * replaced would still sign somebody in.
156
+ *
157
+ * @returns true when a code was spent, false when the code was wrong,
158
+ * already used, or belongs to somebody else.
159
+ */
160
+ async consumeCode(data) {
161
+ const normalizedCode = TwoFactorBackupCode.normalizeCode(data.code);
162
+ /*
163
+ * Refused before the query rather than hashed and looked up. An empty
164
+ * submission cannot be anybody's code, and letting it through would mean
165
+ * one round trip per empty request on a route an attacker can call.
166
+ */
167
+ if (!normalizedCode) {
168
+ return false;
169
+ }
170
+ const codeHash = TwoFactorBackupCode.hashCode({
171
+ code: normalizedCode,
172
+ userId: data.userId,
173
+ });
174
+ const rows = await this.getRepository()
175
+ .manager.query(`UPDATE "UserTwoFactorBackupCode"
176
+ SET "usedAt" = $1, "updatedAt" = CURRENT_TIMESTAMP
177
+ WHERE "userId" = $2
178
+ AND "codeHash" = $3
179
+ AND "usedAt" IS NULL
180
+ AND "deletedAt" IS NULL
181
+ RETURNING "_id"`, [OneUptimeDate.getCurrentDate(), data.userId.toString(), codeHash])
182
+ /*
183
+ * For an UPDATE the postgres driver hands back `[rows, rowCount]` rather
184
+ * than a bare row array, so the rows have to be unwrapped. Written
185
+ * defensively: a driver that returns the bare array instead must read as
186
+ * "no code was spent", never as a silent success.
187
+ */
188
+ .then((result) => {
189
+ if (!Array.isArray(result)) {
190
+ return [];
191
+ }
192
+ const first = result[0];
193
+ return Array.isArray(first) ? first : [];
194
+ });
195
+ return rows.length > 0;
196
+ }
197
+ /**
198
+ * How many codes this user has, and how many are still spendable.
199
+ *
200
+ * Counted rather than fetched: the rows carry a credential digest and there
201
+ * is no caller that needs them, so nothing is loaded that a stray log line
202
+ * could then print.
203
+ */
204
+ async getStatusForUser(data) {
205
+ const total = await this.countBy({
206
+ query: {
207
+ userId: data.userId,
208
+ },
209
+ props: {
210
+ isRoot: true,
211
+ },
212
+ });
213
+ if (total.toNumber() === 0) {
214
+ return {
215
+ total: 0,
216
+ unused: 0,
217
+ generatedAt: null,
218
+ };
219
+ }
220
+ const unused = await this.countUnusedForUser({
221
+ userId: data.userId,
222
+ });
223
+ const newest = await this.findOneBy({
224
+ query: {
225
+ userId: data.userId,
226
+ },
227
+ select: {
228
+ createdAt: true,
229
+ },
230
+ sort: {
231
+ createdAt: SortOrder.Descending,
232
+ },
233
+ props: {
234
+ isRoot: true,
235
+ },
236
+ });
237
+ return {
238
+ total: total.toNumber(),
239
+ unused: unused,
240
+ generatedAt: (newest === null || newest === void 0 ? void 0 : newest.createdAt) || null,
241
+ };
242
+ }
243
+ /**
244
+ * How many unused codes this user has left.
245
+ *
246
+ * Split out from `getStatusForUser` because the login path needs exactly
247
+ * this number and nothing else: it decides whether the two factor challenge
248
+ * screen offers "use a backup code" at all, and it is answered on every
249
+ * two-factor sign-in.
250
+ *
251
+ * `usedAt: QueryHelper.isNull()` rather than `usedAt: null`. A bare null
252
+ * predicate is dropped by TypeORM rather than compiled to `IS NULL`, so the
253
+ * count would silently include spent codes and the login page would offer a
254
+ * recovery route to a user with nothing left to recover with.
255
+ */
256
+ async countUnusedForUser(data) {
257
+ const unused = await this.countBy({
258
+ query: {
259
+ userId: data.userId,
260
+ usedAt: QueryHelper.isNull(),
261
+ },
262
+ props: {
263
+ isRoot: true,
264
+ },
265
+ });
266
+ return unused.toNumber();
267
+ }
268
+ /**
269
+ * Drop every backup code this user has.
270
+ *
271
+ * Called by regeneration, and by UserService.resetTwoFactorAuth -- an
272
+ * operator resetting two factor auth for somebody who lost a device must
273
+ * take the recovery codes with it. Leaving them behind would mean the reset
274
+ * did not actually revoke the account's second-factor material, which is the
275
+ * one thing the operator pressed the button to do.
276
+ */
277
+ async deleteAllForUser(data) {
278
+ await this.deleteBy({
279
+ query: {
280
+ userId: data.userId,
281
+ },
282
+ limit: LIMIT_MAX,
283
+ skip: 0,
284
+ props: {
285
+ isRoot: true,
286
+ },
287
+ });
288
+ }
289
+ }
290
+ __decorate([
291
+ CaptureSpan(),
292
+ __metadata("design:type", Function),
293
+ __metadata("design:paramtypes", [Object]),
294
+ __metadata("design:returntype", Promise)
295
+ ], Service.prototype, "onBeforeCreate", null);
296
+ __decorate([
297
+ CaptureSpan(),
298
+ __metadata("design:type", Function),
299
+ __metadata("design:paramtypes", [Object]),
300
+ __metadata("design:returntype", Promise)
301
+ ], Service.prototype, "regenerateForUser", null);
302
+ __decorate([
303
+ CaptureSpan(),
304
+ __metadata("design:type", Function),
305
+ __metadata("design:paramtypes", [Object]),
306
+ __metadata("design:returntype", Promise)
307
+ ], Service.prototype, "consumeCode", null);
308
+ __decorate([
309
+ CaptureSpan(),
310
+ __metadata("design:type", Function),
311
+ __metadata("design:paramtypes", [Object]),
312
+ __metadata("design:returntype", Promise)
313
+ ], Service.prototype, "getStatusForUser", null);
314
+ __decorate([
315
+ CaptureSpan(),
316
+ __metadata("design:type", Function),
317
+ __metadata("design:paramtypes", [Object]),
318
+ __metadata("design:returntype", Promise)
319
+ ], Service.prototype, "countUnusedForUser", null);
320
+ __decorate([
321
+ CaptureSpan(),
322
+ __metadata("design:type", Function),
323
+ __metadata("design:paramtypes", [Object]),
324
+ __metadata("design:returntype", Promise)
325
+ ], Service.prototype, "deleteAllForUser", null);
326
+ export default new Service();
327
+ //# sourceMappingURL=UserTwoFactorBackupCodeService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserTwoFactorBackupCodeService.js","sourceRoot":"","sources":["../../../../Server/Services/UserTwoFactorBackupCodeService.ts"],"names":[],"mappings":"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"}
@@ -36,6 +36,9 @@ export default class NetworkInventoryUtil {
36
36
  select: {
37
37
  _id: true,
38
38
  siteId: true,
39
+ // For the vendor-template auto-apply below.
40
+ autoApplyVendorHealthTemplate: true,
41
+ snmpOids: true,
39
42
  },
40
43
  props: {
41
44
  isRoot: true,
@@ -110,6 +113,29 @@ export default class NetworkInventoryUtil {
110
113
  if (vendor) {
111
114
  deviceUpdate["vendor"] = vendor.substring(0, 100);
112
115
  }
116
+ /*
117
+ * Vendor health template auto-apply — the automatic counterpart of the
118
+ * dashboard's vendor-template banner, for devices that opted in
119
+ * (auto-imported devices do; hand-made ones keep the manual flow).
120
+ *
121
+ * Deliberately narrow: only when the device has NO health OIDs at all.
122
+ * An existing list — template-seeded and pruned, or hand-built — is
123
+ * the operator's, and a poll must never edit it. That also makes this
124
+ * one-shot in practice: the first poll that fingerprints the vendor
125
+ * seeds the list, and every later poll sees a non-empty list and
126
+ * leaves it alone (including after the operator empties it on purpose
127
+ * AND turns the toggle off; with the toggle still on, an emptied list
128
+ * re-seeds next poll, which is what "auto-apply" says on the tin).
129
+ */
130
+ if (ownedDevice.autoApplyVendorHealthTemplate &&
131
+ (ownedDevice.snmpOids || []).length === 0 &&
132
+ (systemInfo === null || systemInfo === void 0 ? void 0 : systemInfo.sysObjectId)) {
133
+ const vendorTemplate = SnmpVendorTemplateUtil.matchBySysObjectId(systemInfo.sysObjectId);
134
+ if (vendorTemplate) {
135
+ deviceUpdate["snmpOids"] = SnmpVendorTemplateUtil.mergeOids([], vendorTemplate.id);
136
+ logger.debug(`Auto-applied the "${vendorTemplate.label}" vendor health template to network device ${deviceId.toString()} (sysObjectID ${systemInfo.sysObjectId}).`);
137
+ }
138
+ }
113
139
  if (entityInfo === null || entityInfo === void 0 ? void 0 : entityInfo.model) {
114
140
  deviceUpdate["deviceModel"] = entityInfo.model.substring(0, 100);
115
141
  }
@@ -1 +1 @@
1
- {"version":3,"file":"NetworkInventoryUtil.js","sourceRoot":"","sources":["../../../../../Server/Utils/Monitor/NetworkInventoryUtil.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"NetworkInventoryUtil.js","sourceRoot":"","sources":["../../../../../Server/Utils/Monitor/NetworkInventoryUtil.ts"],"names":[],"mappings":"AACA,OAAO,gBAAgB,MAAM,iDAAiD,CAAC;AAC/E,OAAO,oBAAoB,MAAM,qCAAqC,CAAC;AACvE,OAAO,sBAAsB,MAAM,uCAAuC,CAAC;AAC3E,OAAO,uBAAuB,MAAM,wCAAwC,CAAC;AAC7E,OAAO,SAAS,MAAM,kCAAkC,CAAC;AAOzD,OAAO,sBAEN,MAAM,+CAA+C,CAAC;AAGvD,OAAO,sBAEN,MAAM,uDAAuD,CAAC;AAE/D,OAAO,aAAa,MAAM,qBAAqB,CAAC;AAChD,OAAO,MAAM,MAAM,WAAW,CAAC;AAE/B;;;;;;;;;;GAUG;AACH,MAAM,CAAC,OAAO,OAAO,oBAAoB;IAChC,MAAM,CAAC,KAAK,CAAC,cAAc,CAAC,IAKlC;;QACC,MAAM,QAAQ,GAAa,IAAI,CAAC,QAAQ,CAAC;QAEzC;;;;;WAKG;QACH,MAAM,WAAW,GACf,MAAM,oBAAoB,CAAC,SAAS,CAAC;YACnC,KAAK,EAAE;gBACL,GAAG,EAAE,QAAQ;gBACb,SAAS,EAAE,IAAI,CAAC,SAAS;aAC1B;YACD,MAAM,EAAE;gBACN,GAAG,EAAE,IAAI;gBACT,MAAM,EAAE,IAAI;gBACZ,4CAA4C;gBAC5C,6BAA6B,EAAE,IAAI;gBACnC,QAAQ,EAAE,IAAI;aACf;YACD,KAAK,EAAE;gBACL,MAAM,EAAE,IAAI;aACb;SACF,CAAC,CAAC;QAEL,IAAI,CAAC,WAAW,EAAE,CAAC;YACjB,OAAO;QACT,CAAC;QAED,MAAM,gBAAgB,GACpB,CAAA,MAAA,IAAI,CAAC,YAAY,0CAAE,UAAU,KAAI,EAAE,CAAC;QACtC,MAAM,UAAU,GACd,MAAA,IAAI,CAAC,YAAY,0CAAE,UAAU,CAAC;QAChC,MAAM,UAAU,GACd,MAAA,IAAI,CAAC,YAAY,0CAAE,UAAU,CAAC;QAChC,MAAM,aAAa,GACjB,MAAA,IAAI,CAAC,YAAY,0CAAE,aAAa,CAAC;QACnC,MAAM,YAAY,GAChB,MAAA,IAAI,CAAC,YAAY,0CAAE,YAAY,CAAC;QAClC,MAAM,UAAU,GACd,MAAA,IAAI,CAAC,YAAY,0CAAE,UAAU,CAAC;QAChC,MAAM,UAAU,GACd,MAAA,IAAI,CAAC,YAAY,0CAAE,UAAU,CAAC;QAEhC,MAAM,GAAG,GAAS,aAAa,CAAC,cAAc,EAAE,CAAC;QAEjD;;;;WAIG;QACH,MAAM,iBAAiB,GAAY,IAAI,CAAC,QAAQ,KAAK,KAAK,CAAC;QAE3D,IAAI,CAAC;YACH,4CAA4C;YAC5C,MAAM,YAAY,GAA4B,EAAE,CAAC;YAEjD;;;;;;;;;;;;;;;;eAgBG;YACH,YAAY,CAAC,cAAc,CAAC,GAAG,GAAG,CAAC;YACnC,YAAY,CAAC,aAAa,CAAC,GAAG,iBAAiB,CAAC;YAEhD,IAAI,iBAAiB,EAAE,CAAC;gBACtB,YAAY,CAAC,YAAY,CAAC,GAAG,GAAG,CAAC;YACnC,CAAC;YAED,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,QAAQ,EAAE,CAAC;gBACzB,YAAY,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACnE,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,OAAO,EAAE,CAAC;gBACxB,YAAY,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACjE,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW,EAAE,CAAC;gBAC5B,YAAY,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACzE,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW,EAAE,CAAC;gBAC5B,YAAY,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACzE,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,UAAU,EAAE,CAAC;gBAC3B,YAAY,CAAC,YAAY,CAAC,GAAG,UAAU,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACvE,CAAC;YACD,IAAI,CAAA,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,gBAAgB,MAAK,SAAS,EAAE,CAAC;gBAC/C,YAAY,CAAC,gBAAgB,CAAC,GAAG,IAAI,IAAI,CACvC,GAAG,CAAC,OAAO,EAAE,GAAG,UAAU,CAAC,gBAAgB,GAAG,IAAI,CACnD,CAAC;YACJ,CAAC;YAED;;;eAGG;YACH,MAAM,MAAM,GACV,CAAA,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY;gBACxB,sBAAsB,CAAC,0BAA0B,CAC/C,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW,CACxB,CAAC;YACJ,IAAI,MAAM,EAAE,CAAC;gBACX,YAAY,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACpD,CAAC;YAED;;;;;;;;;;;;;eAaG;YACH,IACE,WAAW,CAAC,6BAA6B;gBACzC,CAAC,WAAW,CAAC,QAAQ,IAAI,EAAE,CAAC,CAAC,MAAM,KAAK,CAAC;iBACzC,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,WAAW,CAAA,EACvB,CAAC;gBACD,MAAM,cAAc,GAClB,sBAAsB,CAAC,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;gBAEpE,IAAI,cAAc,EAAE,CAAC;oBACnB,YAAY,CAAC,UAAU,CAAC,GAAG,sBAAsB,CAAC,SAAS,CACzD,EAAE,EACF,cAAc,CAAC,EAAE,CAClB,CAAC;oBACF,MAAM,CAAC,KAAK,CACV,qBAAqB,cAAc,CAAC,KAAK,8CAA8C,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,UAAU,CAAC,WAAW,IAAI,CACtJ,CAAC;gBACJ,CAAC;YACH,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK,EAAE,CAAC;gBACtB,YAAY,CAAC,aAAa,CAAC,GAAG,UAAU,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YACnE,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,YAAY,EAAE,CAAC;gBAC7B,YAAY,CAAC,cAAc,CAAC,GAAG,UAAU,CAAC,YAAY,CAAC,SAAS,CAC9D,CAAC,EACD,GAAG,CACJ,CAAC;YACJ,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,eAAe,EAAE,CAAC;gBAChC,YAAY,CAAC,iBAAiB,CAAC,GAAG,UAAU,CAAC,eAAe,CAAC,SAAS,CACpE,CAAC,EACD,GAAG,CACJ,CAAC;YACJ,CAAC;YACD,IAAI,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,eAAe,EAAE,CAAC;gBAChC,YAAY,CAAC,iBAAiB,CAAC,GAAG,UAAU,CAAC,eAAe,CAAC,SAAS,CACpE,CAAC,EACD,GAAG,CACJ,CAAC;YACJ,CAAC;YAED;;;;eAIG;YACH,IAAI,aAAa,KAAK,SAAS,EAAE,CAAC;gBAChC,YAAY,CAAC,eAAe,CAAC,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YAC9D,CAAC;YACD,IAAI,YAAY,KAAK,SAAS,EAAE,CAAC;gBAC/B,YAAY,CAAC,cAAc,CAAC,GAAG,YAAY,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;YAC5D,CAAC;YAED,IAAI,gBAAgB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBAChC,YAAY,CAAC,iBAAiB,CAAC,GAAG,gBAAgB,CAAC,MAAM,CAAC;gBAC1D,YAAY,CAAC,cAAc,CAAC,GAAG,gBAAgB,CAAC,MAAM,CACpD,CAAC,MAAqB,EAAE,EAAE;oBACxB,OAAO,MAAM,CAAC,oBAAoB,IAAI,MAAM,CAAC,iBAAiB,CAAC;gBACjE,CAAC,CACF,CAAC,MAAM,CAAC;gBACT,YAAY,CAAC,gBAAgB,CAAC,GAAG,gBAAgB,CAAC,MAAM,CACtD,CAAC,MAAqB,EAAE,EAAE;oBACxB,OAAO,MAAM,CAAC,oBAAoB,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC;gBAClE,CAAC,CACF,CAAC,MAAM,CAAC;YACX,CAAC;YAED;;;;eAIG;YACH,IAAI,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACzC,MAAM,oBAAoB,CAAC,aAAa,CAAC;oBACvC,EAAE,EAAE,QAAQ;oBACZ,IAAI,EAAE,YAAmB;oBACzB,KAAK,EAAE;wBACL,MAAM,EAAE,IAAI;qBACb;iBACF,CAAC,CAAC;YACL,CAAC;YAED,IAAI,gBAAgB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBAChC,2BAA2B;gBAC3B,MAAM,kBAAkB,GACtB,MAAM,uBAAuB,CAAC,MAAM,CAAC;oBACnC,KAAK,EAAE;wBACL,eAAe,EAAE,QAAQ;qBAC1B;oBACD,MAAM,EAAE;wBACN,GAAG,EAAE,IAAI;wBACT,cAAc,EAAE,IAAI;wBACpB,WAAW,EAAE,IAAI;qBAClB;oBACD,KAAK,EAAE,SAAS;oBAChB,IAAI,EAAE,CAAC;oBACP,KAAK,EAAE;wBACL,MAAM,EAAE,IAAI;qBACb;iBACF,CAAC,CAAC;gBAEL,MAAM,eAAe,GAAkC,IAAI,GAAG,EAAE,CAAC;gBACjE,KAAK,MAAM,QAAQ,IAAI,kBAAkB,EAAE,CAAC;oBAC1C,IAAI,QAAQ,CAAC,cAAc,KAAK,SAAS,EAAE,CAAC;wBAC1C,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;oBACzD,CAAC;gBACH,CAAC;gBAED,MAAM,kBAAkB,GAAgB,IAAI,GAAG,EAAE,CAAC;gBAElD,KAAK,MAAM,MAAM,IAAI,gBAAgB,EAAE,CAAC;oBACtC,MAAM,QAAQ,GAAiC,eAAe,CAAC,GAAG,CAChE,MAAM,CAAC,cAAc,CACtB,CAAC;oBAEF,IAAI,QAAQ,IAAI,QAAQ,CAAC,WAAW,KAAK,KAAK,EAAE,CAAC;wBAC/C,kBAAkB,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;oBAChD,CAAC;oBAED,MAAM,aAAa,GAA4B;wBAC7C,IAAI,EAAE,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC;wBAC3C,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI;wBAC3D,UAAU,EAAE,MAAM,CAAC,UAAU;4BAC3B,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC;4BACrC,CAAC,CAAC,IAAI;wBACR,aAAa,EAAE,MAAA,MAAM,CAAC,aAAa,mCAAI,IAAI;wBAC3C,iBAAiB,EAAE,MAAM,CAAC,iBAAiB;wBAC3C,oBAAoB,EAAE,MAAM,CAAC,oBAAoB;wBACjD,WAAW,EACT,MAAM,CAAC,oBAAoB,KAAK,SAAS;4BACvC,CAAC,CAAC,MAAM,CAAC,oBAAoB,GAAG,OAAO;4BACvC,CAAC,CAAC,IAAI;wBACV,UAAU,EACR,MAAM,CAAC,eAAe,KAAK,SAAS;4BAClC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,eAAe,GAAG,OAAO,CAAC,GAAG,IAAI,CAAC,GAAG,IAAI;4BAC9D,CAAC,CAAC,IAAI;wBACV,WAAW,EACT,MAAM,CAAC,gBAAgB,KAAK,SAAS;4BACnC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,gBAAgB,GAAG,OAAO,CAAC,GAAG,IAAI,CAAC,GAAG,IAAI;4BAC/D,CAAC,CAAC,IAAI;wBACV,kBAAkB,EAAE,MAAA,MAAM,CAAC,kBAAkB,mCAAI,IAAI;wBACrD,eAAe,EAAE,MAAA,MAAM,CAAC,eAAe,mCAAI,IAAI;wBAC/C,UAAU,EAAE,GAAG;qBAChB,CAAC;oBAEF,IAAI,QAAQ,IAAI,QAAQ,CAAC,EAAE,EAAE,CAAC;wBAC5B,MAAM,uBAAuB,CAAC,aAAa,CAAC;4BAC1C,EAAE,EAAE,QAAQ,CAAC,EAAE;4BACf,IAAI,EAAE,aAAoB;4BAC1B,KAAK,EAAE;gCACL,MAAM,EAAE,IAAI;6BACb;yBACF,CAAC,CAAC;oBACL,CAAC;yBAAM,CAAC;wBACN,MAAM,YAAY,GAAqB,IAAI,gBAAgB,EAAE,CAAC;wBAC9D,YAAY,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;wBACxC,YAAY,CAAC,eAAe,GAAG,QAAQ,CAAC;wBACxC,YAAY,CAAC,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC;wBACpD,YAAY,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;wBAC1D,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC;4BACjB,YAAY,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;wBACtD,CAAC;wBACD,IAAI,MAAM,CAAC,UAAU,EAAE,CAAC;4BACtB,YAAY,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;wBAChE,CAAC;wBACD,IAAI,MAAM,CAAC,aAAa,KAAK,SAAS,EAAE,CAAC;4BACvC,YAAY,CAAC,aAAa,GAAG,MAAM,CAAC,aAAa,CAAC;wBACpD,CAAC;wBACD,YAAY,CAAC,WAAW,GAAG,IAAI,CAAC;wBAChC,YAAY,CAAC,iBAAiB,GAAG,MAAM,CAAC,iBAAiB,CAAC;wBAC1D,YAAY,CAAC,oBAAoB,GAAG,MAAM,CAAC,oBAAoB,CAAC;wBAChE,IAAI,MAAM,CAAC,oBAAoB,KAAK,SAAS,EAAE,CAAC;4BAC9C,YAAY,CAAC,WAAW,GAAG,MAAM,CAAC,oBAAoB,GAAG,OAAO,CAAC;wBACnE,CAAC;wBACD,YAAY,CAAC,UAAU,GAAG,GAAG,CAAC;wBAE9B,MAAM,uBAAuB,CAAC,MAAM,CAAC;4BACnC,IAAI,EAAE,YAAY;4BAClB,KAAK,EAAE;gCACL,MAAM,EAAE,IAAI;6BACb;yBACF,CAAC,CAAC;oBACL,CAAC;gBACH,CAAC;gBAED;;;;;mBAKG;gBACH,IAAI,kBAAkB,CAAC,IAAI,GAAG,CAAC,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC;oBACrD,IAAI,CAAC,YAAY,CAAC,UAAU,GAAG,gBAAgB,CAAC,MAAM,CACpD,CAAC,MAAqB,EAAE,EAAE;wBACxB,OAAO,CAAC,kBAAkB,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;oBACxD,CAAC,CACF,CAAC;gBACJ,CAAC;YACH,CAAC;YAED;;;;;;;eAOG;YACH,IAAI,UAAU,KAAK,SAAS,IAAI,UAAU,KAAK,SAAS,EAAE,CAAC;gBACzD,MAAM,cAAc,GAClB,sBAAsB,CAAC,0BAA0B,CAAC;oBAChD,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAAE;oBAC7B,UAAU,EAAE,UAAU;oBACtB,UAAU,EAAE,UAAU;oBACtB,aAAa,EAAE,aAAa;oBAC5B,YAAY,EAAE,YAAY;oBAC1B,UAAU,EAAE,gBAAgB,CAAC,GAAG,CAAC,CAAC,MAAqB,EAAE,EAAE;wBACzD,OAAO;4BACL,cAAc,EAAE,MAAM,CAAC,cAAc;4BACrC,IAAI,EAAE,MAAM,CAAC,IAAI;4BACjB,UAAU,EAAE,MAAM,CAAC,UAAU;yBAC9B,CAAC;oBACJ,CAAC,CAAC;iBACH,CAAC,CAAC;gBAEL,IACE,cAAc,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC;oBACrC,cAAc,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,EACpC,CAAC;oBACD,MAAM,sBAAsB,CAAC,yBAAyB,CAAC;wBACrD,SAAS,EAAE,IAAI,CAAC,SAAS;wBACzB,QAAQ,EAAE,QAAQ;wBAClB,YAAY,EAAE,WAAW,CAAC,MAAM;wBAChC,WAAW,EAAE,cAAc,CAAC,WAAW;wBACvC,UAAU,EAAE,cAAc,CAAC,UAAU;wBACrC,GAAG,EAAE,GAAG;qBACT,CAAC,CAAC;gBACL,CAAC;YACH,CAAC;QACH,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,2DAA2D;YAC3D,MAAM,CAAC,KAAK,CACV,iDAAiD,QAAQ,CAAC,QAAQ,EAAE,GAAG,CACxE,CAAC;YACF,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACpB,CAAC;IACH,CAAC;CACF"}