2022-08-18 14:29:49 +02:00
|
|
|
import path from "path"
|
2023-01-11 10:37:37 +01:00
|
|
|
import env from "./environment"
|
2022-08-18 14:29:49 +02:00
|
|
|
import chokidar from "chokidar"
|
|
|
|
import fs from "fs"
|
2022-11-22 20:49:59 +01:00
|
|
|
import { constants, tenancy } from "@budibase/backend-core"
|
2022-09-15 15:57:27 +02:00
|
|
|
import { processUploadedPlugin } from "./api/controllers/plugin"
|
2022-08-18 14:29:49 +02:00
|
|
|
|
|
|
|
export function watch() {
|
|
|
|
const watchPath = path.join(env.PLUGINS_DIR, "./**/*.tar.gz")
|
|
|
|
chokidar
|
|
|
|
.watch(watchPath, {
|
|
|
|
ignored: "**/node_modules",
|
2022-09-01 13:51:28 +02:00
|
|
|
awaitWriteFinish: {
|
|
|
|
pollInterval: 100,
|
|
|
|
stabilityThreshold: 250,
|
|
|
|
},
|
|
|
|
usePolling: true,
|
|
|
|
interval: 250,
|
2022-08-18 14:29:49 +02:00
|
|
|
})
|
|
|
|
.on("all", async (event: string, path: string) => {
|
|
|
|
// Sanity checks
|
|
|
|
if (!path?.endsWith(".tar.gz") || !fs.existsSync(path)) {
|
|
|
|
return
|
|
|
|
}
|
2022-11-22 20:49:59 +01:00
|
|
|
await tenancy.doInTenant(constants.DEFAULT_TENANT_ID, async () => {
|
2022-08-18 14:29:49 +02:00
|
|
|
try {
|
|
|
|
const split = path.split("/")
|
|
|
|
const name = split[split.length - 1]
|
|
|
|
console.log("Importing plugin:", path)
|
2022-09-15 15:57:27 +02:00
|
|
|
await processUploadedPlugin({ name, path })
|
2022-09-02 20:32:15 +02:00
|
|
|
} catch (err: any) {
|
|
|
|
const message = err?.message ? err?.message : err
|
|
|
|
console.error("Failed to import plugin:", message)
|
2022-08-18 14:29:49 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|