1
0
Fork 0
mirror of synced 2024-06-27 18:40:42 +12:00

Clean up websocket initialisation

This commit is contained in:
Andrew Kingston 2022-08-22 18:24:34 +01:00
parent 668362d41a
commit b8bd1b51c1
4 changed files with 31 additions and 14 deletions

View file

@ -4,20 +4,23 @@ import { io } from "socket.io-client"
export const initWebsocket = () => {
const { inBuilder, location } = get(builderStore)
console.log(location)
// Only connect when we're inside the builder preview, for now
if (!inBuilder || !location) {
return
}
// Websocket
// Initialise connection
const tls = location.protocol === "https:"
const proto = tls ? "wss:" : "ws:"
const host = location.hostname
const port = location.port || (tls ? 433 : 80)
console.log(`${proto}//${host}:${port}`)
const socket = io(`${proto}//${host}:${port}`, {
path: "/socket/",
path: "/socket/client",
})
// Event handlers
socket.on("plugin-update", data => {
builderStore.actions.updateUsedPlugin(data.name, data.hash)
})

View file

@ -4,7 +4,7 @@ import { getGlobalDB } from "@budibase/backend-core/tenancy"
import { generatePluginID, getPluginParams } from "../../db/utils"
import { uploadDirectory } from "@budibase/backend-core/objectStore"
import { PluginType, FileType } from "@budibase/types"
import { io } from "../../app"
import { ClientAppSocket } from "../../app"
export async function getPlugins(type?: PluginType) {
const db = getGlobalDB()
@ -90,7 +90,7 @@ export async function processPlugin(plugin: FileType) {
jsUrl: `${bucketPath}${jsFileName}`,
}
const response = await db.put(doc)
io.sockets.emit("plugin-update", { name, hash })
ClientAppSocket.emit("plugin-update", { name, hash })
return {
...doc,
_rev: response.rev,

View file

@ -18,12 +18,12 @@ const { logAlert } = require("@budibase/backend-core/logging")
const { pinoSettings } = require("@budibase/backend-core")
const { Thread } = require("./threads")
const fs = require("fs")
const SocketIO = require("socket.io")
import redis from "./utilities/redis"
import * as migrations from "./migrations"
import { events, installation, tenancy } from "@budibase/backend-core"
import { createAdminUser, getChecklist } from "./utilities/workerRequests"
import { watch } from "./watch"
import { Websocket } from "./websocket"
const app = new Koa()
@ -69,14 +69,8 @@ if (env.isProd()) {
const server = http.createServer(app.callback())
destroyable(server)
// Websocket
export const io = SocketIO(server, {
path: "/socket/",
cors: {
origin: ["https://hmr.lan.kingston.dev"],
methods: ["GET", "POST"],
},
})
// initialise websockets
export const ClientAppSocket = new Websocket(server, "/socket/client")
let shuttingDown = false,
errCode = 0

View file

@ -0,0 +1,20 @@
import SocketIO from "socket.io"
export class Websocket {
socketIO: any
constructor(server: any, path: string) {
// @ts-ignore
this.socketIO = SocketIO(server, {
path,
cors: {
origin: "*",
},
})
}
// Emit an event to all sockets
emit(event: string, payload: any) {
this.socketIO.sockets.emit(event, payload)
}
}