@budibase/server 2.5.5 → 2.5.6-alpha.10

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 (156) hide show
  1. package/builder/assets/index.5c1a6913.js +1776 -0
  2. package/builder/assets/index.c0265b74.css +6 -0
  3. package/builder/index.html +2 -2
  4. package/dist/api/controllers/automation.js +13 -7
  5. package/dist/api/controllers/ops.js +40 -0
  6. package/dist/api/controllers/plugin/index.js +6 -37
  7. package/dist/api/controllers/table/utils.js +2 -1
  8. package/dist/api/controllers/user.js +1 -83
  9. package/dist/api/routes/index.js +2 -0
  10. package/dist/api/routes/ops.js +52 -0
  11. package/dist/api/routes/user.js +0 -1
  12. package/dist/app.js +4 -13
  13. package/dist/automations/actions.js +32 -6
  14. package/dist/automations/index.js +3 -2
  15. package/dist/automations/steps/bash.js +6 -6
  16. package/dist/automations/steps/createRow.js +11 -11
  17. package/dist/automations/steps/delay.js +3 -3
  18. package/dist/automations/steps/deleteRow.js +8 -8
  19. package/dist/automations/steps/discord.js +8 -8
  20. package/dist/automations/steps/executeQuery.js +9 -9
  21. package/dist/automations/steps/executeScript.js +6 -6
  22. package/dist/automations/steps/filter.js +6 -6
  23. package/dist/automations/steps/integromat.js +10 -10
  24. package/dist/automations/steps/loop.js +9 -9
  25. package/dist/automations/steps/outgoingWebhook.js +10 -10
  26. package/dist/automations/steps/queryRows.js +14 -14
  27. package/dist/automations/steps/sendSmtpEmail.js +9 -9
  28. package/dist/automations/steps/serverLog.js +4 -4
  29. package/dist/automations/steps/slack.js +6 -6
  30. package/dist/automations/steps/updateRow.js +11 -11
  31. package/dist/automations/steps/zapier.js +9 -9
  32. package/dist/automations/triggerInfo/app.js +5 -5
  33. package/dist/automations/triggerInfo/cron.js +4 -4
  34. package/dist/automations/triggerInfo/rowDeleted.js +5 -5
  35. package/dist/automations/triggerInfo/rowSaved.js +7 -7
  36. package/dist/automations/triggerInfo/rowUpdated.js +7 -7
  37. package/dist/automations/triggerInfo/webhook.js +6 -6
  38. package/dist/environment.js +0 -1
  39. package/dist/events/docUpdates/index.js +17 -0
  40. package/dist/events/docUpdates/processors.js +18 -0
  41. package/dist/events/docUpdates/syncUsers.js +49 -0
  42. package/dist/events/index.js +3 -0
  43. package/dist/integrations/index.js +3 -3
  44. package/dist/integrations/microsoftSqlServer.js +5 -2
  45. package/dist/integrations/mysql.js +5 -3
  46. package/dist/integrations/postgres.js +7 -5
  47. package/dist/integrations/redis.js +7 -0
  48. package/dist/integrations/rest.js +4 -0
  49. package/dist/migrations/functions/usageQuotas/syncApps.js +1 -1
  50. package/dist/migrations/functions/usageQuotas/syncRows.js +1 -2
  51. package/dist/package.json +15 -15
  52. package/dist/sdk/app/applications/sync.js +117 -23
  53. package/dist/sdk/index.js +2 -0
  54. package/dist/sdk/plugins/index.js +27 -0
  55. package/dist/sdk/plugins/plugins.js +53 -0
  56. package/dist/sdk/users/utils.js +21 -4
  57. package/dist/startup.js +31 -28
  58. package/dist/threads/automation.js +16 -5
  59. package/dist/tsconfig.build.tsbuildinfo +1 -1
  60. package/dist/utilities/fileSystem/plugin.js +33 -23
  61. package/dist/utilities/global.js +17 -12
  62. package/dist/watch.js +2 -2
  63. package/dist/websockets/client.js +14 -0
  64. package/dist/websockets/grid.js +60 -0
  65. package/dist/websockets/index.js +17 -0
  66. package/dist/websockets/websocket.js +78 -0
  67. package/jest.config.ts +3 -3
  68. package/nodemon.json +7 -3
  69. package/package.json +16 -16
  70. package/scripts/dev/manage.js +2 -0
  71. package/scripts/integrations/mssql/data/entrypoint.sh +1 -0
  72. package/scripts/integrations/mssql/data/setup.sql +17 -17
  73. package/scripts/integrations/mysql/init.sql +1 -1
  74. package/scripts/integrations/postgres/init.sql +1 -0
  75. package/src/api/controllers/automation.ts +12 -6
  76. package/src/api/controllers/ops.ts +32 -0
  77. package/src/api/controllers/plugin/index.ts +8 -45
  78. package/src/api/controllers/row/internal.ts +9 -10
  79. package/src/api/controllers/row/utils.ts +2 -2
  80. package/src/api/controllers/table/utils.ts +2 -1
  81. package/src/api/controllers/user.ts +10 -96
  82. package/src/api/routes/index.ts +2 -0
  83. package/src/api/routes/ops.ts +30 -0
  84. package/src/api/routes/tests/automation.spec.js +7 -4
  85. package/src/api/routes/tests/user.spec.js +48 -37
  86. package/src/api/routes/user.ts +0 -5
  87. package/src/app.ts +4 -15
  88. package/src/automations/actions.ts +56 -24
  89. package/src/automations/index.ts +1 -1
  90. package/src/automations/steps/bash.ts +10 -7
  91. package/src/automations/steps/createRow.ts +15 -12
  92. package/src/automations/steps/delay.ts +6 -4
  93. package/src/automations/steps/deleteRow.ts +12 -9
  94. package/src/automations/steps/discord.ts +10 -8
  95. package/src/automations/steps/executeQuery.ts +13 -10
  96. package/src/automations/steps/executeScript.ts +10 -7
  97. package/src/automations/steps/filter.ts +8 -6
  98. package/src/automations/steps/integromat.ts +12 -10
  99. package/src/automations/steps/loop.ts +16 -10
  100. package/src/automations/steps/outgoingWebhook.ts +14 -11
  101. package/src/automations/steps/queryRows.ts +18 -15
  102. package/src/automations/steps/sendSmtpEmail.ts +11 -9
  103. package/src/automations/steps/serverLog.ts +6 -4
  104. package/src/automations/steps/slack.ts +8 -6
  105. package/src/automations/steps/updateRow.ts +15 -12
  106. package/src/automations/steps/zapier.ts +11 -9
  107. package/src/automations/tests/utilities/index.ts +2 -2
  108. package/src/automations/triggerInfo/app.ts +8 -5
  109. package/src/automations/triggerInfo/cron.ts +7 -4
  110. package/src/automations/triggerInfo/rowDeleted.ts +8 -5
  111. package/src/automations/triggerInfo/rowSaved.ts +10 -7
  112. package/src/automations/triggerInfo/rowUpdated.ts +10 -7
  113. package/src/automations/triggerInfo/webhook.ts +9 -6
  114. package/src/environment.ts +0 -1
  115. package/src/events/docUpdates/index.ts +1 -0
  116. package/src/events/docUpdates/processors.ts +14 -0
  117. package/src/events/docUpdates/syncUsers.ts +35 -0
  118. package/src/events/index.ts +1 -0
  119. package/src/integrations/index.ts +3 -3
  120. package/src/integrations/microsoftSqlServer.ts +5 -2
  121. package/src/integrations/mysql.ts +5 -3
  122. package/src/integrations/postgres.ts +7 -5
  123. package/src/integrations/redis.ts +8 -0
  124. package/src/integrations/rest.ts +3 -0
  125. package/src/migrations/functions/usageQuotas/syncApps.ts +1 -1
  126. package/src/migrations/functions/usageQuotas/syncRows.ts +2 -3
  127. package/src/migrations/functions/usageQuotas/tests/syncRows.spec.ts +2 -2
  128. package/src/sdk/app/applications/sync.ts +129 -22
  129. package/src/sdk/app/applications/tests/sync.spec.ts +137 -0
  130. package/src/sdk/index.ts +2 -0
  131. package/src/sdk/plugins/index.ts +5 -0
  132. package/src/sdk/plugins/plugins.ts +41 -0
  133. package/src/sdk/users/tests/utils.spec.ts +1 -32
  134. package/src/sdk/users/utils.ts +23 -5
  135. package/src/startup.ts +36 -34
  136. package/src/tests/jestEnv.ts +0 -1
  137. package/src/tests/jestSetup.ts +0 -1
  138. package/src/tests/utilities/TestConfiguration.ts +28 -0
  139. package/src/tests/utilities/structures.ts +25 -17
  140. package/src/threads/automation.ts +18 -6
  141. package/src/utilities/fileSystem/plugin.ts +13 -4
  142. package/src/utilities/global.ts +21 -16
  143. package/src/watch.ts +2 -2
  144. package/src/websockets/client.ts +11 -0
  145. package/src/websockets/grid.ts +55 -0
  146. package/src/websockets/index.ts +14 -0
  147. package/src/websockets/websocket.ts +83 -0
  148. package/tsconfig.json +1 -7
  149. package/builder/assets/index.7f9a008b.css +0 -6
  150. package/builder/assets/index.f493a2b3.js +0 -1817
  151. package/dist/elasticApm.js +0 -14
  152. package/dist/websocket.js +0 -22
  153. package/scripts/likeCypress.ts +0 -35
  154. package/src/elasticApm.ts +0 -10
  155. package/src/tests/logging.ts +0 -34
  156. package/src/websocket.ts +0 -26
@@ -1,31 +1,11 @@
1
- import { npmUpload, urlUpload, githubUpload, fileUpload } from "./uploaders"
2
- import {
3
- plugins as pluginCore,
4
- db as dbCore,
5
- tenancy,
6
- objectStore,
7
- } from "@budibase/backend-core"
8
- import { PluginType, FileType, PluginSource, Plugin } from "@budibase/types"
1
+ import { npmUpload, urlUpload, githubUpload } from "./uploaders"
2
+ import { plugins as pluginCore } from "@budibase/backend-core"
3
+ import { PluginType, FileType, PluginSource } from "@budibase/types"
9
4
  import env from "../../../environment"
10
- import { ClientAppSocket } from "../../../websocket"
5
+ import { clientAppSocket } from "../../../websockets"
6
+ import sdk from "../../../sdk"
11
7
  import { sdk as pro } from "@budibase/pro"
12
8
 
13
- export async function getPlugins(type?: PluginType) {
14
- const db = tenancy.getGlobalDB()
15
- const response = await db.allDocs(
16
- dbCore.getPluginParams(null, {
17
- include_docs: true,
18
- })
19
- )
20
- let plugins = response.rows.map((row: any) => row.doc) as Plugin[]
21
- plugins = objectStore.enrichPluginURLs(plugins)
22
- if (type) {
23
- return plugins.filter((plugin: Plugin) => plugin.schema?.type === type)
24
- } else {
25
- return plugins
26
- }
27
- }
28
-
29
9
  export async function upload(ctx: any) {
30
10
  const plugins: FileType[] =
31
11
  ctx.request.files.file.length > 1
@@ -35,7 +15,7 @@ export async function upload(ctx: any) {
35
15
  let docs = []
36
16
  // can do single or multiple plugins
37
17
  for (let plugin of plugins) {
38
- const doc = await processUploadedPlugin(plugin, PluginSource.FILE)
18
+ const doc = await sdk.plugins.processUploaded(plugin, PluginSource.FILE)
39
19
  docs.push(doc)
40
20
  }
41
21
  ctx.body = {
@@ -91,7 +71,7 @@ export async function create(ctx: any) {
91
71
 
92
72
  const doc = await pro.plugins.storePlugin(metadata, directory, source)
93
73
 
94
- ClientAppSocket.emit("plugins-update", { name, hash: doc.hash })
74
+ clientAppSocket.emit("plugins-update", { name, hash: doc.hash })
95
75
  ctx.body = {
96
76
  message: "Plugin uploaded successfully",
97
77
  plugins: [doc],
@@ -105,7 +85,7 @@ export async function create(ctx: any) {
105
85
  }
106
86
 
107
87
  export async function fetch(ctx: any) {
108
- ctx.body = await getPlugins()
88
+ ctx.body = await sdk.plugins.fetch()
109
89
  }
110
90
 
111
91
  export async function destroy(ctx: any) {
@@ -119,20 +99,3 @@ export async function destroy(ctx: any) {
119
99
  ctx.throw(400, err.message)
120
100
  }
121
101
  }
122
-
123
- export async function processUploadedPlugin(
124
- plugin: FileType,
125
- source?: PluginSource
126
- ) {
127
- const { metadata, directory } = await fileUpload(plugin)
128
- pluginCore.validate(metadata?.schema)
129
-
130
- // Only allow components in cloud
131
- if (!env.SELF_HOSTED && metadata?.schema?.type !== PluginType.COMPONENT) {
132
- throw new Error("Only component plugins are supported outside of self-host")
133
- }
134
-
135
- const doc = await pro.plugins.storePlugin(metadata, directory, source)
136
- ClientAppSocket.emit("plugin-update", { name: doc.name, hash: doc.hash })
137
- return doc
138
- }
@@ -30,7 +30,6 @@ import { finaliseRow, updateRelatedFormula } from "./staticFormula"
30
30
  import { csv, json, jsonWithSchema, Format } from "../view/exporters"
31
31
  import { apiFileReturn } from "../../../utilities/fileSystem"
32
32
  import {
33
- Ctx,
34
33
  UserCtx,
35
34
  Database,
36
35
  LinkDocumentValue,
@@ -72,7 +71,7 @@ async function getView(db: Database, viewName: string) {
72
71
  return viewInfo
73
72
  }
74
73
 
75
- async function getRawTableData(ctx: Ctx, db: Database, tableId: string) {
74
+ async function getRawTableData(ctx: UserCtx, db: Database, tableId: string) {
76
75
  let rows
77
76
  if (tableId === InternalTables.USER_METADATA) {
78
77
  await userController.fetchMetadata(ctx)
@@ -188,7 +187,7 @@ export async function save(ctx: UserCtx) {
188
187
  })
189
188
  }
190
189
 
191
- export async function fetchView(ctx: Ctx) {
190
+ export async function fetchView(ctx: UserCtx) {
192
191
  const viewName = decodeURIComponent(ctx.params.viewName)
193
192
 
194
193
  // if this is a table view being looked for just transfer to that
@@ -255,7 +254,7 @@ export async function fetchView(ctx: Ctx) {
255
254
  return rows
256
255
  }
257
256
 
258
- export async function fetch(ctx: Ctx) {
257
+ export async function fetch(ctx: UserCtx) {
259
258
  const db = context.getAppDB()
260
259
 
261
260
  const tableId = ctx.params.tableId
@@ -264,7 +263,7 @@ export async function fetch(ctx: Ctx) {
264
263
  return outputProcessing(table, rows)
265
264
  }
266
265
 
267
- export async function find(ctx: Ctx) {
266
+ export async function find(ctx: UserCtx) {
268
267
  const db = dbCore.getDB(ctx.appId)
269
268
  const table = await db.get(ctx.params.tableId)
270
269
  let row = await utils.findRow(ctx, ctx.params.tableId, ctx.params.rowId)
@@ -272,7 +271,7 @@ export async function find(ctx: Ctx) {
272
271
  return row
273
272
  }
274
273
 
275
- export async function destroy(ctx: Ctx) {
274
+ export async function destroy(ctx: UserCtx) {
276
275
  const db = context.getAppDB()
277
276
  const { _id } = ctx.request.body
278
277
  let row = await db.get(_id)
@@ -308,7 +307,7 @@ export async function destroy(ctx: Ctx) {
308
307
  return { response, row }
309
308
  }
310
309
 
311
- export async function bulkDestroy(ctx: Ctx) {
310
+ export async function bulkDestroy(ctx: UserCtx) {
312
311
  const db = context.getAppDB()
313
312
  const tableId = ctx.params.tableId
314
313
  const table = await db.get(tableId)
@@ -347,7 +346,7 @@ export async function bulkDestroy(ctx: Ctx) {
347
346
  return { response: { ok: true }, rows: processedRows }
348
347
  }
349
348
 
350
- export async function search(ctx: Ctx) {
349
+ export async function search(ctx: UserCtx) {
351
350
  // Fetch the whole table when running in cypress, as search doesn't work
352
351
  if (!env.COUCH_DB_URL && env.isCypress()) {
353
352
  return { rows: await fetch(ctx) }
@@ -387,7 +386,7 @@ export async function search(ctx: Ctx) {
387
386
  return response
388
387
  }
389
388
 
390
- export async function exportRows(ctx: Ctx) {
389
+ export async function exportRows(ctx: UserCtx) {
391
390
  const db = context.getAppDB()
392
391
  const table = await db.get(ctx.params.tableId)
393
392
  const rowIds = ctx.request.body.rows
@@ -439,7 +438,7 @@ export async function exportRows(ctx: Ctx) {
439
438
  }
440
439
  }
441
440
 
442
- export async function fetchEnrichedRow(ctx: Ctx) {
441
+ export async function fetchEnrichedRow(ctx: UserCtx) {
443
442
  const db = context.getAppDB()
444
443
  const tableId = ctx.params.tableId
445
444
  const rowId = ctx.params.rowId
@@ -5,7 +5,7 @@ import { context } from "@budibase/backend-core"
5
5
  import { makeExternalQuery } from "../../../integrations/base/query"
6
6
  import { Row, Table } from "@budibase/types"
7
7
  import { Format } from "../view/exporters"
8
- import { Ctx } from "@budibase/types"
8
+ import { UserCtx } from "@budibase/types"
9
9
  import sdk from "../../../sdk"
10
10
  const validateJs = require("validate.js")
11
11
  const { cloneDeep } = require("lodash/fp")
@@ -26,7 +26,7 @@ export async function getDatasourceAndQuery(json: any) {
26
26
  return makeExternalQuery(datasource, json)
27
27
  }
28
28
 
29
- export async function findRow(ctx: Ctx, tableId: string, rowId: string) {
29
+ export async function findRow(ctx: UserCtx, tableId: string, rowId: string) {
30
30
  const db = context.getAppDB()
31
31
  let row
32
32
  // TODO remove special user case in future
@@ -124,7 +124,8 @@ export function importToRows(
124
124
  for (const [fieldName, schema] of Object.entries(table.schema)) {
125
125
  // check whether the options need to be updated for inclusion as part of the data import
126
126
  if (
127
- schema.type === FieldTypes.OPTIONS &&
127
+ (schema.type === FieldTypes.OPTIONS ||
128
+ schema.type === FieldTypes.ARRAY) &&
128
129
  row[fieldName] &&
129
130
  (!schema.constraints!.inclusion ||
130
131
  schema.constraints!.inclusion.indexOf(row[fieldName]) === -1)
@@ -1,98 +1,12 @@
1
1
  import { generateUserMetadataID, generateUserFlagID } from "../../db/utils"
2
2
  import { InternalTables } from "../../db/utils"
3
- import { getGlobalUsers, getRawGlobalUser } from "../../utilities/global"
3
+ import { getGlobalUsers } from "../../utilities/global"
4
4
  import { getFullUser } from "../../utilities/users"
5
- import {
6
- context,
7
- roles as rolesCore,
8
- db as dbCore,
9
- } from "@budibase/backend-core"
10
- import { BBContext, Ctx, SyncUserRequest, User } from "@budibase/types"
5
+ import { context } from "@budibase/backend-core"
6
+ import { UserCtx } from "@budibase/types"
11
7
  import sdk from "../../sdk"
12
8
 
13
- export async function syncUser(ctx: Ctx<SyncUserRequest>) {
14
- let deleting = false,
15
- user: User | any
16
- const userId = ctx.params.id
17
-
18
- const previousUser = ctx.request.body?.previousUser
19
-
20
- try {
21
- user = (await getRawGlobalUser(userId)) as User
22
- } catch (err: any) {
23
- if (err && err.status === 404) {
24
- user = {}
25
- deleting = true
26
- } else {
27
- throw err
28
- }
29
- }
30
-
31
- let previousApps = previousUser
32
- ? Object.keys(previousUser.roles).map(appId => appId)
33
- : []
34
-
35
- const roles = deleting ? {} : user.roles
36
- // remove props which aren't useful to metadata
37
- delete user.password
38
- delete user.forceResetPassword
39
- delete user.roles
40
- // run through all production appIDs in the users roles
41
- let prodAppIds
42
- // if they are a builder then get all production app IDs
43
- if ((user.builder && user.builder.global) || deleting) {
44
- prodAppIds = await dbCore.getProdAppIDs()
45
- } else {
46
- prodAppIds = Object.entries(roles)
47
- .filter(entry => entry[1] !== rolesCore.BUILTIN_ROLE_IDS.PUBLIC)
48
- .map(([appId]) => appId)
49
- }
50
- for (let prodAppId of new Set([...prodAppIds, ...previousApps])) {
51
- const roleId = roles[prodAppId]
52
- const deleteFromApp = !roleId
53
- const devAppId = dbCore.getDevelopmentAppID(prodAppId)
54
- for (let appId of [prodAppId, devAppId]) {
55
- if (!(await dbCore.dbExists(appId))) {
56
- continue
57
- }
58
- await context.doInAppContext(appId, async () => {
59
- const db = context.getAppDB()
60
- const metadataId = generateUserMetadataID(userId)
61
- let metadata
62
- try {
63
- metadata = await db.get(metadataId)
64
- } catch (err) {
65
- if (deleteFromApp) {
66
- return
67
- }
68
- metadata = {
69
- tableId: InternalTables.USER_METADATA,
70
- }
71
- }
72
-
73
- if (deleteFromApp) {
74
- await db.remove(metadata)
75
- return
76
- }
77
-
78
- // assign the roleId for the metadata doc
79
- if (roleId) {
80
- metadata.roleId = roleId
81
- }
82
- let combined = sdk.users.combineMetadataAndUser(user, metadata)
83
- // if its null then there was no updates required
84
- if (combined) {
85
- await db.put(combined)
86
- }
87
- })
88
- }
89
- }
90
- ctx.body = {
91
- message: "User synced.",
92
- }
93
- }
94
-
95
- export async function fetchMetadata(ctx: BBContext) {
9
+ export async function fetchMetadata(ctx: UserCtx) {
96
10
  const global = await getGlobalUsers()
97
11
  const metadata = await sdk.users.rawUserMetadata()
98
12
  const users = []
@@ -111,7 +25,7 @@ export async function fetchMetadata(ctx: BBContext) {
111
25
  ctx.body = users
112
26
  }
113
27
 
114
- export async function updateSelfMetadata(ctx: BBContext) {
28
+ export async function updateSelfMetadata(ctx: UserCtx) {
115
29
  // overwrite the ID with current users
116
30
  ctx.request.body._id = ctx.user?._id
117
31
  // make sure no stale rev
@@ -121,7 +35,7 @@ export async function updateSelfMetadata(ctx: BBContext) {
121
35
  await updateMetadata(ctx)
122
36
  }
123
37
 
124
- export async function updateMetadata(ctx: BBContext) {
38
+ export async function updateMetadata(ctx: UserCtx) {
125
39
  const db = context.getAppDB()
126
40
  const user = ctx.request.body
127
41
  // this isn't applicable to the user
@@ -133,7 +47,7 @@ export async function updateMetadata(ctx: BBContext) {
133
47
  ctx.body = await db.put(metadata)
134
48
  }
135
49
 
136
- export async function destroyMetadata(ctx: BBContext) {
50
+ export async function destroyMetadata(ctx: UserCtx) {
137
51
  const db = context.getAppDB()
138
52
  try {
139
53
  const dbUser = await db.get(ctx.params.id)
@@ -146,11 +60,11 @@ export async function destroyMetadata(ctx: BBContext) {
146
60
  }
147
61
  }
148
62
 
149
- export async function findMetadata(ctx: BBContext) {
63
+ export async function findMetadata(ctx: UserCtx) {
150
64
  ctx.body = await getFullUser(ctx, ctx.params.id)
151
65
  }
152
66
 
153
- export async function setFlag(ctx: BBContext) {
67
+ export async function setFlag(ctx: UserCtx) {
154
68
  const userId = ctx.user?._id
155
69
  const { flag, value } = ctx.request.body
156
70
  if (!flag) {
@@ -169,7 +83,7 @@ export async function setFlag(ctx: BBContext) {
169
83
  ctx.body = { message: "Flag set successfully" }
170
84
  }
171
85
 
172
- export async function getFlags(ctx: BBContext) {
86
+ export async function getFlags(ctx: UserCtx) {
173
87
  const userId = ctx.user?._id
174
88
  const docId = generateUserFlagID(userId!)
175
89
  const db = context.getAppDB()
@@ -25,6 +25,7 @@ import devRoutes from "./dev"
25
25
  import cloudRoutes from "./cloud"
26
26
  import migrationRoutes from "./migrations"
27
27
  import pluginRoutes from "./plugin"
28
+ import opsRoutes from "./ops"
28
29
  import Router from "@koa/router"
29
30
  import { api as pro } from "@budibase/pro"
30
31
 
@@ -63,6 +64,7 @@ export const mainRoutes: Router[] = [
63
64
  rowRoutes,
64
65
  migrationRoutes,
65
66
  pluginRoutes,
67
+ opsRoutes,
66
68
  scheduleRoutes,
67
69
  environmentVariableRoutes,
68
70
  // these need to be handled last as they still use /api/:tableId
@@ -0,0 +1,30 @@
1
+ import Router from "@koa/router"
2
+ import * as controller from "../controllers/ops"
3
+ import { middleware } from "@budibase/backend-core"
4
+ import Joi from "joi"
5
+
6
+ export function logsValidator() {
7
+ return middleware.joiValidator.body(
8
+ Joi.object({
9
+ message: Joi.string().required(),
10
+ data: Joi.object(),
11
+ })
12
+ )
13
+ }
14
+
15
+ export function errorValidator() {
16
+ return middleware.joiValidator.body(
17
+ Joi.object({
18
+ message: Joi.string().required(),
19
+ })
20
+ )
21
+ }
22
+
23
+ const router: Router = new Router()
24
+
25
+ router
26
+ .post("/api/ops/log", logsValidator(), controller.log)
27
+ .post("/api/ops/error", errorValidator(), controller.error)
28
+ .post("/api/ops/alert", errorValidator(), controller.alert)
29
+
30
+ export default router
@@ -7,7 +7,7 @@ const {
7
7
  const setup = require("./utilities")
8
8
  const { basicAutomation, newAutomation, automationTrigger, automationStep } = setup.structures
9
9
  const MAX_RETRIES = 4
10
- const { TRIGGER_DEFINITIONS, ACTION_DEFINITIONS } = require("../../../automations")
10
+ const { TRIGGER_DEFINITIONS, BUILTIN_ACTION_DEFINITIONS } = require("../../../automations")
11
11
  const { events } = require("@budibase/backend-core")
12
12
 
13
13
 
@@ -19,11 +19,14 @@ describe("/automations", () => {
19
19
 
20
20
  afterAll(setup.afterAll)
21
21
 
22
- // For some reason this cannot be a beforeAll or the test "tests the automation successfully" fail
23
- beforeEach(async () => {
22
+ beforeAll(async () => {
24
23
  await config.init()
25
24
  })
26
25
 
26
+ beforeEach(() => {
27
+ events.automation.deleted.mockClear()
28
+ })
29
+
27
30
  describe("get definitions", () => {
28
31
  it("returns a list of definitions for actions", async () => {
29
32
  const res = await request
@@ -52,7 +55,7 @@ describe("/automations", () => {
52
55
  .expect('Content-Type', /json/)
53
56
  .expect(200)
54
57
 
55
- let definitionsLength = Object.keys(ACTION_DEFINITIONS).length
58
+ let definitionsLength = Object.keys(BUILTIN_ACTION_DEFINITIONS).length
56
59
  definitionsLength-- // OUTGOING_WEBHOOK is deprecated
57
60
 
58
61
  expect(Object.keys(res.body.action).length).toBeGreaterThanOrEqual(definitionsLength)
@@ -57,6 +57,7 @@ describe("/users", () => {
57
57
  it("should be able to update the user", async () => {
58
58
  const user = await config.createUser({ id: `us_update${utils.newid()}` })
59
59
  user.roleId = BUILTIN_ROLE_IDS.BASIC
60
+ delete user._rev
60
61
  const res = await request
61
62
  .put(`/api/users/metadata`)
62
63
  .set(config.defaultHeaders())
@@ -65,6 +66,46 @@ describe("/users", () => {
65
66
  .expect("Content-Type", /json/)
66
67
  expect(res.body.ok).toEqual(true)
67
68
  })
69
+
70
+ it("should be able to update the user multiple times", async () => {
71
+ const user = await config.createUser()
72
+ delete user._rev
73
+
74
+ const res1 = await request
75
+ .put(`/api/users/metadata`)
76
+ .set(config.defaultHeaders())
77
+ .send({ ...user, roleId: BUILTIN_ROLE_IDS.BASIC })
78
+ .expect(200)
79
+ .expect("Content-Type", /json/)
80
+
81
+ const res = await request
82
+ .put(`/api/users/metadata`)
83
+ .set(config.defaultHeaders())
84
+ .send({ ...user, _rev: res1.body.rev, roleId: BUILTIN_ROLE_IDS.POWER })
85
+ .expect(200)
86
+ .expect("Content-Type", /json/)
87
+
88
+ expect(res.body.ok).toEqual(true)
89
+ })
90
+
91
+ it("should require the _rev field for multiple updates", async () => {
92
+ const user = await config.createUser()
93
+ delete user._rev
94
+
95
+ await request
96
+ .put(`/api/users/metadata`)
97
+ .set(config.defaultHeaders())
98
+ .send({ ...user, roleId: BUILTIN_ROLE_IDS.BASIC })
99
+ .expect(200)
100
+ .expect("Content-Type", /json/)
101
+
102
+ await request
103
+ .put(`/api/users/metadata`)
104
+ .set(config.defaultHeaders())
105
+ .send({ ...user, roleId: BUILTIN_ROLE_IDS.POWER })
106
+ .expect(409)
107
+ .expect("Content-Type", /json/)
108
+ })
68
109
  })
69
110
 
70
111
  describe("destroy", () => {
@@ -92,6 +133,7 @@ describe("/users", () => {
92
133
  expect(res.body.tableId).toBeDefined()
93
134
  })
94
135
  })
136
+
95
137
  describe("setFlag", () => {
96
138
  it("should throw an error if a flag is not provided", async () => {
97
139
  await config.createUser()
@@ -101,8 +143,9 @@ describe("/users", () => {
101
143
  .send({ value: "test" })
102
144
  .expect(400)
103
145
  .expect("Content-Type", /json/)
104
- expect(res.body.message).toEqual("Must supply a 'flag' field in request body.")
105
-
146
+ expect(res.body.message).toEqual(
147
+ "Must supply a 'flag' field in request body."
148
+ )
106
149
  })
107
150
 
108
151
  it("should be able to set a flag on the user", async () => {
@@ -146,8 +189,9 @@ describe("/users", () => {
146
189
  .send({ value: "test" })
147
190
  .expect(400)
148
191
  .expect("Content-Type", /json/)
149
- expect(res.body.message).toEqual("Must supply a 'flag' field in request body.")
150
-
192
+ expect(res.body.message).toEqual(
193
+ "Must supply a 'flag' field in request body."
194
+ )
151
195
  })
152
196
 
153
197
  it("should be able to set a flag on the user", async () => {
@@ -161,37 +205,4 @@ describe("/users", () => {
161
205
  expect(res.body.message).toEqual("Flag set successfully")
162
206
  })
163
207
  })
164
-
165
- describe("syncUser", () => {
166
- it("should sync the user", async () => {
167
- let user = await config.createUser()
168
- await config.createApp('New App')
169
- let res = await request
170
- .post(`/api/users/metadata/sync/${user._id}`)
171
- .set(config.defaultHeaders())
172
- .expect(200)
173
- .expect("Content-Type", /json/)
174
- expect(res.body.message).toEqual('User synced.')
175
- })
176
-
177
-
178
- it("should sync the user when a previous user is specified", async () => {
179
- const app1 = await config.createApp('App 1')
180
- const app2 = await config.createApp('App 2')
181
-
182
- let user = await config.createUser({
183
- builder: false,
184
- admin: true,
185
- roles: { [app1.appId]: 'ADMIN' }
186
- })
187
- let res = await request
188
- .post(`/api/users/metadata/sync/${user._id}`)
189
- .set(config.defaultHeaders())
190
- .send({ previousUser: { ...user, roles: { ...user.roles, [app2.appId]: 'BASIC' } } })
191
- .expect(200)
192
- .expect("Content-Type", /json/)
193
-
194
- expect(res.body.message).toEqual('User synced.')
195
- })
196
- })
197
208
  })
@@ -32,11 +32,6 @@ router
32
32
  authorized(PermissionType.USER, PermissionLevel.WRITE),
33
33
  controller.destroyMetadata
34
34
  )
35
- .post(
36
- "/api/users/metadata/sync/:id",
37
- authorized(PermissionType.USER, PermissionLevel.WRITE),
38
- controller.syncUser
39
- )
40
35
  .post(
41
36
  "/api/users/flags",
42
37
  authorized(PermissionType.USER, PermissionLevel.WRITE),
package/src/app.ts CHANGED
@@ -2,21 +2,9 @@ if (process.env.DD_APM_ENABLED) {
2
2
  require("./ddApm")
3
3
  }
4
4
 
5
- if (process.env.ELASTIC_APM_ENABLED) {
6
- require("./elasticApm")
7
- }
8
-
9
5
  // need to load environment first
10
6
  import env from "./environment"
11
7
 
12
- // enable APM if configured
13
- if (process.env.ELASTIC_APM_ENABLED) {
14
- const apm = require("elastic-apm-node").start({
15
- serviceName: process.env.SERVICE,
16
- environment: process.env.BUDIBASE_ENVIRONMENT,
17
- })
18
- }
19
-
20
8
  import { ExtendableContext } from "koa"
21
9
  import * as db from "./db"
22
10
  db.init()
@@ -27,8 +15,8 @@ import * as api from "./api"
27
15
  import * as automations from "./automations"
28
16
  import { Thread } from "./threads"
29
17
  import * as redis from "./utilities/redis"
18
+ import { initialise as initialiseWebsockets } from "./websockets"
30
19
  import { events, logging, middleware, timers } from "@budibase/backend-core"
31
- import { initialise as initialiseWebsockets } from "./websocket"
32
20
  import { startup } from "./startup"
33
21
  const Sentry = require("@sentry/node")
34
22
  const destroyable = require("server-destroy")
@@ -53,7 +41,8 @@ app.use(
53
41
  })
54
42
  )
55
43
 
56
- app.use(middleware.logging)
44
+ app.use(middleware.correlation)
45
+ app.use(middleware.pino)
57
46
  app.use(userAgent)
58
47
 
59
48
  if (env.isProd()) {
@@ -72,7 +61,7 @@ if (env.isProd()) {
72
61
 
73
62
  const server = http.createServer(app.callback())
74
63
  destroyable(server)
75
- initialiseWebsockets(server)
64
+ initialiseWebsockets(app, server)
76
65
 
77
66
  let shuttingDown = false,
78
67
  errCode = 0