@budibase/server 2.5.6-alpha.2 → 2.5.6-alpha.20
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/builder/assets/{index.80d32454.js → index.3eea26b2.js} +378 -362
- package/builder/assets/index.7ec21ee2.css +6 -0
- package/builder/index.html +2 -2
- package/dist/api/controllers/automation.js +13 -7
- package/dist/api/controllers/plugin/index.js +6 -37
- package/dist/api/controllers/query/index.js +2 -2
- package/dist/api/controllers/table/utils.js +9 -3
- package/dist/api/routes/index.js +0 -2
- package/dist/app.js +2 -2
- package/dist/automations/actions.js +32 -6
- package/dist/automations/index.js +3 -2
- package/dist/automations/steps/bash.js +6 -6
- package/dist/automations/steps/createRow.js +11 -11
- package/dist/automations/steps/delay.js +3 -3
- package/dist/automations/steps/deleteRow.js +8 -8
- package/dist/automations/steps/discord.js +8 -8
- package/dist/automations/steps/executeQuery.js +9 -9
- package/dist/automations/steps/executeScript.js +6 -6
- package/dist/automations/steps/filter.js +6 -6
- package/dist/automations/steps/integromat.js +10 -10
- package/dist/automations/steps/loop.js +9 -9
- package/dist/automations/steps/outgoingWebhook.js +10 -10
- package/dist/automations/steps/queryRows.js +14 -14
- package/dist/automations/steps/sendSmtpEmail.js +9 -9
- package/dist/automations/steps/serverLog.js +4 -4
- package/dist/automations/steps/slack.js +6 -6
- package/dist/automations/steps/updateRow.js +11 -11
- package/dist/automations/steps/zapier.js +9 -9
- package/dist/automations/triggerInfo/app.js +5 -5
- package/dist/automations/triggerInfo/cron.js +4 -4
- package/dist/automations/triggerInfo/rowDeleted.js +5 -5
- package/dist/automations/triggerInfo/rowSaved.js +7 -7
- package/dist/automations/triggerInfo/rowUpdated.js +7 -7
- package/dist/automations/triggerInfo/webhook.js +6 -6
- package/dist/integrations/index.js +3 -3
- package/dist/migrations/functions/syncQuotas.js +2 -0
- package/dist/migrations/functions/usageQuotas/syncApps.js +0 -1
- package/dist/migrations/functions/usageQuotas/syncUsers.js +21 -0
- package/dist/package.json +10 -9
- package/dist/sdk/app/backups/exports.js +1 -35
- package/dist/sdk/index.js +2 -0
- package/dist/{api/routes/cloud.js → sdk/plugins/index.js} +2 -14
- package/dist/sdk/plugins/plugins.js +53 -0
- package/dist/threads/automation.js +2 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utilities/fileSystem/plugin.js +33 -23
- package/dist/watch.js +2 -2
- package/dist/websockets/client.js +14 -0
- package/dist/websockets/grid.js +60 -0
- package/dist/websockets/index.js +17 -0
- package/dist/websockets/websocket.js +78 -0
- package/package.json +11 -10
- package/src/api/controllers/automation.ts +12 -6
- package/src/api/controllers/plugin/index.ts +8 -45
- package/src/api/controllers/query/index.ts +2 -2
- package/src/api/controllers/table/utils.ts +10 -3
- package/src/api/index.ts +0 -1
- package/src/api/routes/index.ts +0 -2
- package/src/api/routes/tests/automation.spec.js +2 -2
- package/src/app.ts +2 -2
- package/src/automations/actions.ts +56 -24
- package/src/automations/index.ts +1 -1
- package/src/automations/steps/bash.ts +10 -7
- package/src/automations/steps/createRow.ts +15 -12
- package/src/automations/steps/delay.ts +6 -4
- package/src/automations/steps/deleteRow.ts +12 -9
- package/src/automations/steps/discord.ts +10 -8
- package/src/automations/steps/executeQuery.ts +13 -10
- package/src/automations/steps/executeScript.ts +10 -7
- package/src/automations/steps/filter.ts +8 -6
- package/src/automations/steps/integromat.ts +12 -10
- package/src/automations/steps/loop.ts +16 -10
- package/src/automations/steps/outgoingWebhook.ts +14 -11
- package/src/automations/steps/queryRows.ts +18 -15
- package/src/automations/steps/sendSmtpEmail.ts +11 -9
- package/src/automations/steps/serverLog.ts +6 -4
- package/src/automations/steps/slack.ts +8 -6
- package/src/automations/steps/updateRow.ts +15 -12
- package/src/automations/steps/zapier.ts +11 -9
- package/src/automations/tests/utilities/index.ts +2 -2
- package/src/automations/triggerInfo/app.ts +8 -5
- package/src/automations/triggerInfo/cron.ts +7 -4
- package/src/automations/triggerInfo/rowDeleted.ts +8 -5
- package/src/automations/triggerInfo/rowSaved.ts +10 -7
- package/src/automations/triggerInfo/rowUpdated.ts +10 -7
- package/src/automations/triggerInfo/webhook.ts +9 -6
- package/src/integrations/index.ts +3 -3
- package/src/migrations/functions/syncQuotas.ts +2 -0
- package/src/migrations/functions/usageQuotas/syncApps.ts +1 -2
- package/src/migrations/functions/usageQuotas/syncUsers.ts +9 -0
- package/src/migrations/functions/usageQuotas/tests/syncUsers.spec.ts +26 -0
- package/src/migrations/index.ts +1 -0
- package/src/sdk/app/backups/exports.ts +0 -35
- package/src/sdk/index.ts +2 -0
- package/src/sdk/plugins/index.ts +5 -0
- package/src/sdk/plugins/plugins.ts +41 -0
- package/src/tests/utilities/structures.ts +25 -17
- package/src/threads/automation.ts +2 -2
- package/src/utilities/fileSystem/plugin.ts +13 -4
- package/src/watch.ts +2 -2
- package/src/websockets/client.ts +11 -0
- package/src/websockets/grid.ts +55 -0
- package/src/websockets/index.ts +14 -0
- package/src/websockets/websocket.ts +83 -0
- package/builder/assets/index.841e62d8.css +0 -6
- package/dist/api/controllers/cloud.js +0 -130
- package/dist/websocket.js +0 -22
- package/src/api/controllers/cloud.ts +0 -119
- package/src/api/routes/cloud.ts +0 -18
- package/src/api/routes/tests/cloud.spec.ts +0 -54
- package/src/migrations/functions/tests/syncQuotas.spec.js +0 -26
- package/src/websocket.ts +0 -26
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AutomationCustomIOType,
|
|
3
|
+
AutomationIOType,
|
|
4
|
+
AutomationStepType,
|
|
2
5
|
AutomationTriggerSchema,
|
|
3
6
|
AutomationTriggerStepId,
|
|
4
7
|
} from "@budibase/types"
|
|
@@ -15,8 +18,8 @@ export const definition: AutomationTriggerSchema = {
|
|
|
15
18
|
inputs: {
|
|
16
19
|
properties: {
|
|
17
20
|
tableId: {
|
|
18
|
-
type:
|
|
19
|
-
customType:
|
|
21
|
+
type: AutomationIOType.STRING,
|
|
22
|
+
customType: AutomationCustomIOType.TABLE,
|
|
20
23
|
title: "Table",
|
|
21
24
|
},
|
|
22
25
|
},
|
|
@@ -25,21 +28,21 @@ export const definition: AutomationTriggerSchema = {
|
|
|
25
28
|
outputs: {
|
|
26
29
|
properties: {
|
|
27
30
|
row: {
|
|
28
|
-
type:
|
|
29
|
-
customType:
|
|
31
|
+
type: AutomationIOType.OBJECT,
|
|
32
|
+
customType: AutomationCustomIOType.ROW,
|
|
30
33
|
description: "The row that was updated",
|
|
31
34
|
},
|
|
32
35
|
id: {
|
|
33
|
-
type:
|
|
36
|
+
type: AutomationIOType.STRING,
|
|
34
37
|
description: "Row ID - can be used for updating",
|
|
35
38
|
},
|
|
36
39
|
revision: {
|
|
37
|
-
type:
|
|
40
|
+
type: AutomationIOType.STRING,
|
|
38
41
|
description: "Revision of row",
|
|
39
42
|
},
|
|
40
43
|
},
|
|
41
44
|
required: ["row", "id"],
|
|
42
45
|
},
|
|
43
46
|
},
|
|
44
|
-
type:
|
|
47
|
+
type: AutomationStepType.TRIGGER,
|
|
45
48
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AutomationCustomIOType,
|
|
3
|
+
AutomationIOType,
|
|
4
|
+
AutomationStepType,
|
|
2
5
|
AutomationTriggerSchema,
|
|
3
6
|
AutomationTriggerStepId,
|
|
4
7
|
} from "@budibase/types"
|
|
@@ -15,13 +18,13 @@ export const definition: AutomationTriggerSchema = {
|
|
|
15
18
|
inputs: {
|
|
16
19
|
properties: {
|
|
17
20
|
schemaUrl: {
|
|
18
|
-
type:
|
|
19
|
-
customType:
|
|
21
|
+
type: AutomationIOType.STRING,
|
|
22
|
+
customType: AutomationCustomIOType.WEBHOOK_URL,
|
|
20
23
|
title: "Schema URL",
|
|
21
24
|
},
|
|
22
25
|
triggerUrl: {
|
|
23
|
-
type:
|
|
24
|
-
customType:
|
|
26
|
+
type: AutomationIOType.STRING,
|
|
27
|
+
customType: AutomationCustomIOType.WEBHOOK_URL,
|
|
25
28
|
title: "Trigger URL",
|
|
26
29
|
},
|
|
27
30
|
},
|
|
@@ -30,12 +33,12 @@ export const definition: AutomationTriggerSchema = {
|
|
|
30
33
|
outputs: {
|
|
31
34
|
properties: {
|
|
32
35
|
body: {
|
|
33
|
-
type:
|
|
36
|
+
type: AutomationIOType.OBJECT,
|
|
34
37
|
description: "Body of the request which hit the webhook",
|
|
35
38
|
},
|
|
36
39
|
},
|
|
37
40
|
required: ["body"],
|
|
38
41
|
},
|
|
39
42
|
},
|
|
40
|
-
type:
|
|
43
|
+
type: AutomationStepType.TRIGGER,
|
|
41
44
|
}
|
|
@@ -14,11 +14,11 @@ import firebase from "./firebase"
|
|
|
14
14
|
import redis from "./redis"
|
|
15
15
|
import snowflake from "./snowflake"
|
|
16
16
|
import oracle from "./oracle"
|
|
17
|
-
import { getPlugins } from "../api/controllers/plugin"
|
|
18
17
|
import { SourceName, Integration, PluginType } from "@budibase/types"
|
|
19
18
|
import { getDatasourcePlugin } from "../utilities/fileSystem"
|
|
20
19
|
import env from "../environment"
|
|
21
20
|
import { cloneDeep } from "lodash"
|
|
21
|
+
import sdk from "../sdk"
|
|
22
22
|
|
|
23
23
|
const DEFINITIONS: { [key: string]: Integration } = {
|
|
24
24
|
[SourceName.POSTGRES]: postgres.schema,
|
|
@@ -79,7 +79,7 @@ export async function getDefinition(source: SourceName): Promise<Integration> {
|
|
|
79
79
|
export async function getDefinitions() {
|
|
80
80
|
const pluginSchemas: { [key: string]: Integration } = {}
|
|
81
81
|
if (env.SELF_HOSTED) {
|
|
82
|
-
const plugins = await
|
|
82
|
+
const plugins = await sdk.plugins.fetch(PluginType.DATASOURCE)
|
|
83
83
|
// extract the actual schema from each custom
|
|
84
84
|
for (let plugin of plugins) {
|
|
85
85
|
const sourceId = plugin.name
|
|
@@ -103,7 +103,7 @@ export async function getIntegration(integration: string) {
|
|
|
103
103
|
return INTEGRATIONS[integration]
|
|
104
104
|
}
|
|
105
105
|
if (env.SELF_HOSTED) {
|
|
106
|
-
const plugins = await
|
|
106
|
+
const plugins = await sdk.plugins.fetch(PluginType.DATASOURCE)
|
|
107
107
|
for (let plugin of plugins) {
|
|
108
108
|
if (plugin.name === integration) {
|
|
109
109
|
// need to use commonJS require due to its dynamic runtime nature
|
|
@@ -2,6 +2,7 @@ import { runQuotaMigration } from "./usageQuotas"
|
|
|
2
2
|
import * as syncApps from "./usageQuotas/syncApps"
|
|
3
3
|
import * as syncRows from "./usageQuotas/syncRows"
|
|
4
4
|
import * as syncPlugins from "./usageQuotas/syncPlugins"
|
|
5
|
+
import * as syncUsers from "./usageQuotas/syncUsers"
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Synchronise quotas to the state of the db.
|
|
@@ -11,5 +12,6 @@ export const run = async () => {
|
|
|
11
12
|
await syncApps.run()
|
|
12
13
|
await syncRows.run()
|
|
13
14
|
await syncPlugins.run()
|
|
15
|
+
await syncUsers.run()
|
|
14
16
|
})
|
|
15
17
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { db as dbCore } from "@budibase/backend-core"
|
|
2
2
|
import { quotas } from "@budibase/pro"
|
|
3
3
|
import { QuotaUsageType, StaticQuotaName } from "@budibase/types"
|
|
4
4
|
|
|
@@ -8,7 +8,6 @@ export const run = async () => {
|
|
|
8
8
|
const appCount = devApps ? devApps.length : 0
|
|
9
9
|
|
|
10
10
|
// sync app count
|
|
11
|
-
const tenantId = tenancy.getTenantId()
|
|
12
11
|
console.log(`Syncing app count: ${appCount}`)
|
|
13
12
|
await quotas.setUsage(appCount, StaticQuotaName.APPS, QuotaUsageType.STATIC)
|
|
14
13
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { users } from "@budibase/backend-core"
|
|
2
|
+
import { quotas } from "@budibase/pro"
|
|
3
|
+
import { QuotaUsageType, StaticQuotaName } from "@budibase/types"
|
|
4
|
+
|
|
5
|
+
export const run = async () => {
|
|
6
|
+
const userCount = await users.getUserCount()
|
|
7
|
+
console.log(`Syncing user count: ${userCount}`)
|
|
8
|
+
await quotas.setUsage(userCount, StaticQuotaName.USERS, QuotaUsageType.STATIC)
|
|
9
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import TestConfig from "../../../../tests/utilities/TestConfiguration"
|
|
2
|
+
import * as syncUsers from "../syncUsers"
|
|
3
|
+
import { quotas } from "@budibase/pro"
|
|
4
|
+
|
|
5
|
+
describe("syncUsers", () => {
|
|
6
|
+
let config = new TestConfig(false)
|
|
7
|
+
|
|
8
|
+
beforeEach(async () => {
|
|
9
|
+
await config.init()
|
|
10
|
+
})
|
|
11
|
+
|
|
12
|
+
afterAll(config.end)
|
|
13
|
+
|
|
14
|
+
it("syncs users", async () => {
|
|
15
|
+
return config.doInContext(null, async () => {
|
|
16
|
+
await config.createUser()
|
|
17
|
+
|
|
18
|
+
await syncUsers.run()
|
|
19
|
+
|
|
20
|
+
const usageDoc = await quotas.getQuotaUsage()
|
|
21
|
+
// default + additional user
|
|
22
|
+
const userCount = 2
|
|
23
|
+
expect(usageDoc.usageQuota.users).toBe(userCount)
|
|
24
|
+
})
|
|
25
|
+
})
|
|
26
|
+
})
|
package/src/migrations/index.ts
CHANGED
|
@@ -11,6 +11,7 @@ import env from "../environment"
|
|
|
11
11
|
// migration functions
|
|
12
12
|
import * as userEmailViewCasing from "./functions/userEmailViewCasing"
|
|
13
13
|
import * as syncQuotas from "./functions/syncQuotas"
|
|
14
|
+
import * as syncUsers from "./functions/usageQuotas/syncUsers"
|
|
14
15
|
import * as appUrls from "./functions/appUrls"
|
|
15
16
|
import * as tableSettings from "./functions/tableSettings"
|
|
16
17
|
import * as backfill from "./functions/backfill"
|
|
@@ -148,41 +148,6 @@ export async function exportApp(appId: string, config?: ExportOpts) {
|
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
/**
|
|
152
|
-
* Export all apps + global DB (if supplied) to a single tarball, this includes
|
|
153
|
-
* the attachments for each app as well.
|
|
154
|
-
* @param {object[]} appMetadata The IDs and names of apps to export.
|
|
155
|
-
* @param {string} globalDbContents The contents of the global DB to export as well.
|
|
156
|
-
* @return {string} The path to the tarball.
|
|
157
|
-
*/
|
|
158
|
-
export async function exportMultipleApps(
|
|
159
|
-
appMetadata: { appId: string; name: string }[],
|
|
160
|
-
globalDbContents?: string
|
|
161
|
-
) {
|
|
162
|
-
const tmpPath = join(budibaseTempDir(), uuid())
|
|
163
|
-
fs.mkdirSync(tmpPath)
|
|
164
|
-
let exportPromises: Promise<void>[] = []
|
|
165
|
-
// export each app to a directory, then move it into the complete export
|
|
166
|
-
const exportAndMove = async (appId: string, appName: string) => {
|
|
167
|
-
const path = await exportApp(appId)
|
|
168
|
-
await fs.promises.rename(path, join(tmpPath, appName))
|
|
169
|
-
}
|
|
170
|
-
for (let metadata of appMetadata) {
|
|
171
|
-
exportPromises.push(exportAndMove(metadata.appId, metadata.name))
|
|
172
|
-
}
|
|
173
|
-
// wait for all exports to finish
|
|
174
|
-
await Promise.all(exportPromises)
|
|
175
|
-
// add the global DB contents
|
|
176
|
-
if (globalDbContents) {
|
|
177
|
-
fs.writeFileSync(join(tmpPath, GLOBAL_DB_EXPORT_FILE), globalDbContents)
|
|
178
|
-
}
|
|
179
|
-
const appNames = appMetadata.map(metadata => metadata.name)
|
|
180
|
-
const tarPath = tarFilesToTmp(tmpPath, [...appNames, GLOBAL_DB_EXPORT_FILE])
|
|
181
|
-
// clear up the tmp path now tarball generated
|
|
182
|
-
fs.rmSync(tmpPath, { recursive: true, force: true })
|
|
183
|
-
return tarPath
|
|
184
|
-
}
|
|
185
|
-
|
|
186
151
|
/**
|
|
187
152
|
* Streams a backup of the database state for an app
|
|
188
153
|
* @param {string} appId The ID of the app which is to be backed up.
|
package/src/sdk/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { default as datasources } from "./app/datasources"
|
|
|
6
6
|
import { default as queries } from "./app/queries"
|
|
7
7
|
import { default as rows } from "./app/rows"
|
|
8
8
|
import { default as users } from "./users"
|
|
9
|
+
import { default as plugins } from "./plugins"
|
|
9
10
|
|
|
10
11
|
const sdk = {
|
|
11
12
|
backups,
|
|
@@ -16,6 +17,7 @@ const sdk = {
|
|
|
16
17
|
users,
|
|
17
18
|
datasources,
|
|
18
19
|
queries,
|
|
20
|
+
plugins,
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
// default export for TS
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { FileType, Plugin, PluginSource, PluginType } from "@budibase/types"
|
|
2
|
+
import {
|
|
3
|
+
db as dbCore,
|
|
4
|
+
objectStore,
|
|
5
|
+
plugins as pluginCore,
|
|
6
|
+
tenancy,
|
|
7
|
+
} from "@budibase/backend-core"
|
|
8
|
+
import { fileUpload } from "../../api/controllers/plugin/file"
|
|
9
|
+
import env from "../../environment"
|
|
10
|
+
import { clientAppSocket } from "../../websockets"
|
|
11
|
+
import { sdk as pro } from "@budibase/pro"
|
|
12
|
+
|
|
13
|
+
export async function fetch(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
|
+
export async function processUploaded(plugin: FileType, source?: PluginSource) {
|
|
30
|
+
const { metadata, directory } = await fileUpload(plugin)
|
|
31
|
+
pluginCore.validate(metadata?.schema)
|
|
32
|
+
|
|
33
|
+
// Only allow components in cloud
|
|
34
|
+
if (!env.SELF_HOSTED && metadata?.schema?.type !== PluginType.COMPONENT) {
|
|
35
|
+
throw new Error("Only component plugins are supported outside of self-host")
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const doc = await pro.plugins.storePlugin(metadata, directory, source)
|
|
39
|
+
clientAppSocket.emit("plugin-update", { name: doc.name, hash: doc.hash })
|
|
40
|
+
return doc
|
|
41
|
+
}
|
|
@@ -1,18 +1,22 @@
|
|
|
1
|
-
import { permissions, roles } from "@budibase/backend-core"
|
|
1
|
+
import { permissions, roles, utils } from "@budibase/backend-core"
|
|
2
2
|
import { createHomeScreen } from "../../constants/screens"
|
|
3
3
|
import { EMPTY_LAYOUT } from "../../constants/layouts"
|
|
4
4
|
import { cloneDeep } from "lodash/fp"
|
|
5
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
BUILTIN_ACTION_DEFINITIONS,
|
|
7
|
+
TRIGGER_DEFINITIONS,
|
|
8
|
+
} from "../../automations"
|
|
6
9
|
import {
|
|
7
10
|
Automation,
|
|
8
11
|
AutomationActionStepId,
|
|
12
|
+
AutomationStep,
|
|
13
|
+
AutomationStepType,
|
|
14
|
+
AutomationTrigger,
|
|
9
15
|
AutomationTriggerStepId,
|
|
10
16
|
Datasource,
|
|
11
17
|
SourceName,
|
|
12
18
|
} from "@budibase/types"
|
|
13
19
|
|
|
14
|
-
const { v4: uuidv4 } = require("uuid")
|
|
15
|
-
|
|
16
20
|
export function basicTable() {
|
|
17
21
|
return {
|
|
18
22
|
name: "TestTable",
|
|
@@ -71,19 +75,19 @@ export function view(tableId: string) {
|
|
|
71
75
|
}
|
|
72
76
|
|
|
73
77
|
export function automationStep(
|
|
74
|
-
actionDefinition =
|
|
75
|
-
) {
|
|
78
|
+
actionDefinition = BUILTIN_ACTION_DEFINITIONS.CREATE_ROW
|
|
79
|
+
): AutomationStep {
|
|
76
80
|
return {
|
|
77
|
-
id:
|
|
81
|
+
id: utils.newid(),
|
|
78
82
|
...actionDefinition,
|
|
79
83
|
}
|
|
80
84
|
}
|
|
81
85
|
|
|
82
86
|
export function automationTrigger(
|
|
83
87
|
triggerDefinition = TRIGGER_DEFINITIONS.ROW_SAVED
|
|
84
|
-
) {
|
|
88
|
+
): AutomationTrigger {
|
|
85
89
|
return {
|
|
86
|
-
id:
|
|
90
|
+
id: utils.newid(),
|
|
87
91
|
...triggerDefinition,
|
|
88
92
|
}
|
|
89
93
|
}
|
|
@@ -106,7 +110,7 @@ export function newAutomation({ steps, trigger }: any = {}) {
|
|
|
106
110
|
return automation
|
|
107
111
|
}
|
|
108
112
|
|
|
109
|
-
export function basicAutomation(appId?: string) {
|
|
113
|
+
export function basicAutomation(appId?: string): Automation {
|
|
110
114
|
return {
|
|
111
115
|
name: "My Automation",
|
|
112
116
|
screenId: "kasdkfldsafkl",
|
|
@@ -119,18 +123,22 @@ export function basicAutomation(appId?: string) {
|
|
|
119
123
|
tagline: "test",
|
|
120
124
|
icon: "test",
|
|
121
125
|
description: "test",
|
|
122
|
-
type:
|
|
126
|
+
type: AutomationStepType.TRIGGER,
|
|
123
127
|
id: "test",
|
|
124
128
|
inputs: {},
|
|
125
129
|
schema: {
|
|
126
|
-
inputs: {
|
|
127
|
-
|
|
130
|
+
inputs: {
|
|
131
|
+
properties: {},
|
|
132
|
+
},
|
|
133
|
+
outputs: {
|
|
134
|
+
properties: {},
|
|
135
|
+
},
|
|
128
136
|
},
|
|
129
137
|
},
|
|
130
138
|
steps: [],
|
|
131
139
|
},
|
|
132
140
|
type: "automation",
|
|
133
|
-
appId
|
|
141
|
+
appId: appId!,
|
|
134
142
|
}
|
|
135
143
|
}
|
|
136
144
|
|
|
@@ -154,7 +162,7 @@ export function loopAutomation(tableId: string, loopOpts?: any): Automation {
|
|
|
154
162
|
inputs: {
|
|
155
163
|
tableId,
|
|
156
164
|
},
|
|
157
|
-
schema:
|
|
165
|
+
schema: BUILTIN_ACTION_DEFINITIONS.QUERY_ROWS.schema,
|
|
158
166
|
},
|
|
159
167
|
{
|
|
160
168
|
id: "c",
|
|
@@ -163,7 +171,7 @@ export function loopAutomation(tableId: string, loopOpts?: any): Automation {
|
|
|
163
171
|
internal: true,
|
|
164
172
|
inputs: loopOpts,
|
|
165
173
|
blockToLoop: "d",
|
|
166
|
-
schema:
|
|
174
|
+
schema: BUILTIN_ACTION_DEFINITIONS.LOOP.schema,
|
|
167
175
|
},
|
|
168
176
|
{
|
|
169
177
|
id: "d",
|
|
@@ -173,7 +181,7 @@ export function loopAutomation(tableId: string, loopOpts?: any): Automation {
|
|
|
173
181
|
inputs: {
|
|
174
182
|
text: "log statement",
|
|
175
183
|
},
|
|
176
|
-
schema:
|
|
184
|
+
schema: BUILTIN_ACTION_DEFINITIONS.SERVER_LOG.schema,
|
|
177
185
|
},
|
|
178
186
|
],
|
|
179
187
|
trigger: {
|
|
@@ -27,8 +27,8 @@ import { processObject } from "@budibase/string-templates"
|
|
|
27
27
|
import { cloneDeep } from "lodash/fp"
|
|
28
28
|
import * as sdkUtils from "../sdk/utils"
|
|
29
29
|
import env from "../environment"
|
|
30
|
-
const FILTER_STEP_ID = actions.
|
|
31
|
-
const LOOP_STEP_ID = actions.
|
|
30
|
+
const FILTER_STEP_ID = actions.BUILTIN_ACTION_DEFINITIONS.FILTER.stepId
|
|
31
|
+
const LOOP_STEP_ID = actions.BUILTIN_ACTION_DEFINITIONS.LOOP.stepId
|
|
32
32
|
const CRON_STEP_ID = triggerDefs.CRON.stepId
|
|
33
33
|
const STOPPED_STATUS = { success: true, status: AutomationStatus.STOPPED }
|
|
34
34
|
|
|
@@ -5,6 +5,7 @@ import { join } from "path"
|
|
|
5
5
|
import { objectStore } from "@budibase/backend-core"
|
|
6
6
|
|
|
7
7
|
const DATASOURCE_PATH = join(budibaseTempDir(), "datasource")
|
|
8
|
+
const AUTOMATION_PATH = join(budibaseTempDir(), "automation")
|
|
8
9
|
|
|
9
10
|
export const getPluginMetadata = async (path: string) => {
|
|
10
11
|
let metadata: any = {}
|
|
@@ -33,12 +34,12 @@ export const getPluginMetadata = async (path: string) => {
|
|
|
33
34
|
return { metadata, directory: path }
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
async function getPluginImpl(path: string, plugin: Plugin) {
|
|
37
38
|
const hash = plugin.schema?.hash
|
|
38
|
-
if (!fs.existsSync(
|
|
39
|
-
fs.mkdirSync(
|
|
39
|
+
if (!fs.existsSync(path)) {
|
|
40
|
+
fs.mkdirSync(path)
|
|
40
41
|
}
|
|
41
|
-
const filename = join(
|
|
42
|
+
const filename = join(path, plugin.name)
|
|
42
43
|
const metadataName = `${filename}.bbmetadata`
|
|
43
44
|
if (fs.existsSync(filename)) {
|
|
44
45
|
const currentHash = fs.readFileSync(metadataName, "utf8")
|
|
@@ -62,3 +63,11 @@ export const getDatasourcePlugin = async (plugin: Plugin) => {
|
|
|
62
63
|
|
|
63
64
|
return require(filename)
|
|
64
65
|
}
|
|
66
|
+
|
|
67
|
+
export const getDatasourcePlugin = async (plugin: Plugin) => {
|
|
68
|
+
return getPluginImpl(DATASOURCE_PATH, plugin)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export const getAutomationPlugin = async (plugin: Plugin) => {
|
|
72
|
+
return getPluginImpl(AUTOMATION_PATH, plugin)
|
|
73
|
+
}
|
package/src/watch.ts
CHANGED
|
@@ -3,7 +3,7 @@ import env from "./environment"
|
|
|
3
3
|
import chokidar from "chokidar"
|
|
4
4
|
import fs from "fs"
|
|
5
5
|
import { constants, tenancy } from "@budibase/backend-core"
|
|
6
|
-
import
|
|
6
|
+
import pluginsSdk from "./sdk/plugins"
|
|
7
7
|
|
|
8
8
|
export function watch() {
|
|
9
9
|
const watchPath = path.join(env.PLUGINS_DIR, "./**/*.tar.gz")
|
|
@@ -27,7 +27,7 @@ export function watch() {
|
|
|
27
27
|
const split = path.split("/")
|
|
28
28
|
const name = split[split.length - 1]
|
|
29
29
|
console.log("Importing plugin:", path)
|
|
30
|
-
await
|
|
30
|
+
await pluginsSdk.processUploaded({ name, path })
|
|
31
31
|
} catch (err: any) {
|
|
32
32
|
const message = err?.message ? err?.message : err
|
|
33
33
|
console.error("Failed to import plugin:", message)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import Socket from "./websocket"
|
|
2
|
+
import authorized from "../middleware/authorized"
|
|
3
|
+
import http from "http"
|
|
4
|
+
import Koa from "koa"
|
|
5
|
+
import { permissions } from "@budibase/backend-core"
|
|
6
|
+
|
|
7
|
+
export default class ClientAppWebsocket extends Socket {
|
|
8
|
+
constructor(app: Koa, server: http.Server) {
|
|
9
|
+
super(app, server, "/socket/client", [authorized(permissions.BUILDER)])
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import authorized from "../middleware/authorized"
|
|
2
|
+
import Socket from "./websocket"
|
|
3
|
+
import { permissions } from "@budibase/backend-core"
|
|
4
|
+
import http from "http"
|
|
5
|
+
import Koa from "koa"
|
|
6
|
+
|
|
7
|
+
export default class GridSocket extends Socket {
|
|
8
|
+
constructor(app: Koa, server: http.Server) {
|
|
9
|
+
super(app, server, "/socket/grid", [authorized(permissions.BUILDER)])
|
|
10
|
+
|
|
11
|
+
this.io.on("connection", socket => {
|
|
12
|
+
const user = socket.data.user
|
|
13
|
+
console.log(`Spreadsheet user connected: ${user?.id}`)
|
|
14
|
+
|
|
15
|
+
// Socket state
|
|
16
|
+
let currentRoom: string
|
|
17
|
+
|
|
18
|
+
// Initial identification of connected spreadsheet
|
|
19
|
+
socket.on("select-table", async (tableId, callback) => {
|
|
20
|
+
// Leave current room
|
|
21
|
+
if (currentRoom) {
|
|
22
|
+
socket.to(currentRoom).emit("user-disconnect", socket.data.user)
|
|
23
|
+
socket.leave(currentRoom)
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Join new room
|
|
27
|
+
currentRoom = tableId
|
|
28
|
+
socket.join(currentRoom)
|
|
29
|
+
socket.to(currentRoom).emit("user-update", socket.data.user)
|
|
30
|
+
|
|
31
|
+
// Reply with all users in current room
|
|
32
|
+
const sockets = await this.io.in(currentRoom).fetchSockets()
|
|
33
|
+
callback({
|
|
34
|
+
users: sockets.map(socket => socket.data.user),
|
|
35
|
+
id: user.id,
|
|
36
|
+
})
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
// Handle users selecting a new cell
|
|
40
|
+
socket.on("select-cell", cellId => {
|
|
41
|
+
socket.data.user.selectedCellId = cellId
|
|
42
|
+
if (currentRoom) {
|
|
43
|
+
socket.to(currentRoom).emit("user-update", socket.data.user)
|
|
44
|
+
}
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
// Disconnection cleanup
|
|
48
|
+
socket.on("disconnect", () => {
|
|
49
|
+
if (currentRoom) {
|
|
50
|
+
socket.to(currentRoom).emit("user-disconnect", socket.data.user)
|
|
51
|
+
}
|
|
52
|
+
})
|
|
53
|
+
})
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import http from "http"
|
|
2
|
+
import Koa from "koa"
|
|
3
|
+
import GridSocket from "./grid"
|
|
4
|
+
import ClientAppSocket from "./client"
|
|
5
|
+
|
|
6
|
+
let clientAppSocket: ClientAppSocket
|
|
7
|
+
let gridSocket: GridSocket
|
|
8
|
+
|
|
9
|
+
export const initialise = (app: Koa, server: http.Server) => {
|
|
10
|
+
clientAppSocket = new ClientAppSocket(app, server)
|
|
11
|
+
gridSocket = new GridSocket(app, server)
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export { clientAppSocket, gridSocket }
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { Server } from "socket.io"
|
|
2
|
+
import http from "http"
|
|
3
|
+
import Koa from "koa"
|
|
4
|
+
import Cookies from "cookies"
|
|
5
|
+
import { userAgent } from "koa-useragent"
|
|
6
|
+
import { auth } from "@budibase/backend-core"
|
|
7
|
+
import currentApp from "../middleware/currentapp"
|
|
8
|
+
|
|
9
|
+
export default class Socket {
|
|
10
|
+
io: Server
|
|
11
|
+
|
|
12
|
+
constructor(
|
|
13
|
+
app: Koa,
|
|
14
|
+
server: http.Server,
|
|
15
|
+
path: string,
|
|
16
|
+
additionalMiddlewares?: any[]
|
|
17
|
+
) {
|
|
18
|
+
this.io = new Server(server, {
|
|
19
|
+
path,
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
// Attach default middlewares
|
|
23
|
+
const authenticate = auth.buildAuthMiddleware([], {
|
|
24
|
+
publicAllowed: true,
|
|
25
|
+
})
|
|
26
|
+
const middlewares = [
|
|
27
|
+
userAgent,
|
|
28
|
+
authenticate,
|
|
29
|
+
currentApp,
|
|
30
|
+
...(additionalMiddlewares || []),
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
// Apply middlewares
|
|
34
|
+
this.io.use(async (socket, next) => {
|
|
35
|
+
// Build fake koa context
|
|
36
|
+
const res = new http.ServerResponse(socket.request)
|
|
37
|
+
const ctx: any = {
|
|
38
|
+
...app.createContext(socket.request, res),
|
|
39
|
+
|
|
40
|
+
// Additional overrides needed to make our middlewares work with this
|
|
41
|
+
// fake koa context
|
|
42
|
+
cookies: new Cookies(socket.request, res),
|
|
43
|
+
get: (field: string) => socket.request.headers[field],
|
|
44
|
+
throw: (code: number, message: string) => {
|
|
45
|
+
throw new Error(message)
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
// Needed for koa-useragent middleware
|
|
49
|
+
headers: socket.request.headers,
|
|
50
|
+
header: socket.request.headers,
|
|
51
|
+
|
|
52
|
+
// We don't really care about the path since it will never contain
|
|
53
|
+
// an app ID
|
|
54
|
+
path: "/socket",
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Run all koa middlewares
|
|
58
|
+
try {
|
|
59
|
+
for (let [idx, middleware] of middlewares.entries()) {
|
|
60
|
+
await middleware(ctx, () => {
|
|
61
|
+
if (idx === middlewares.length - 1) {
|
|
62
|
+
// Middlewares are finished.
|
|
63
|
+
// Extract some data from our enriched koa context to persist
|
|
64
|
+
// as metadata for the socket
|
|
65
|
+
socket.data.user = {
|
|
66
|
+
id: ctx.user._id,
|
|
67
|
+
email: ctx.user.email,
|
|
68
|
+
}
|
|
69
|
+
next()
|
|
70
|
+
}
|
|
71
|
+
})
|
|
72
|
+
}
|
|
73
|
+
} catch (error: any) {
|
|
74
|
+
next(error)
|
|
75
|
+
}
|
|
76
|
+
})
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Emit an event to all sockets
|
|
80
|
+
emit(event: string, payload: any) {
|
|
81
|
+
this.io.sockets.emit(event, payload)
|
|
82
|
+
}
|
|
83
|
+
}
|