Compare commits
2 Commits
8a537e80e3
...
d7b7ebfef9
| Author | SHA1 | Date | |
|---|---|---|---|
| d7b7ebfef9 | |||
| 8f3b2fd6e2 |
@@ -85,12 +85,8 @@ app.get(
|
||||
'/ocpp/:chargePointId',
|
||||
upgradeWebSocket((c) => {
|
||||
const chargePointId = c.req.param('chargePointId')
|
||||
if (!chargePointId) {
|
||||
throw new Error('Missing chargePointId route param')
|
||||
}
|
||||
const connInfo = getConnInfo(c)
|
||||
const requestedProtocol = c.req.header('sec-websocket-protocol')
|
||||
return createOcppHandler(chargePointId, connInfo.remote.address, requestedProtocol)
|
||||
return createOcppHandler(chargePointId, connInfo.remote.address)
|
||||
}),
|
||||
)
|
||||
|
||||
|
||||
@@ -9,8 +9,6 @@ export const useDrizzle = () => {
|
||||
if (!pgPoolInstance || !drizzleInstance) {
|
||||
pgPoolInstance = new Pool({
|
||||
connectionString: process.env.DATABASE_CONNECTION_STRING,
|
||||
connectionTimeoutMillis: 3000,
|
||||
idleTimeoutMillis: 10000,
|
||||
})
|
||||
drizzleInstance = drizzle({ client: pgPoolInstance, schema })
|
||||
}
|
||||
|
||||
@@ -8,29 +8,14 @@ import type {
|
||||
} from '../types.ts'
|
||||
|
||||
const DEFAULT_HEARTBEAT_INTERVAL = 60
|
||||
const BOOT_NOTIFICATION_DB_TIMEOUT_MS = 3000
|
||||
|
||||
function withTimeout<T>(promise: Promise<T>, timeoutMs: number, label: string) {
|
||||
return Promise.race<T>([
|
||||
promise,
|
||||
new Promise<T>((_, reject) => {
|
||||
setTimeout(() => reject(new Error(`${label} timed out after ${timeoutMs}ms`)), timeoutMs)
|
||||
}),
|
||||
])
|
||||
}
|
||||
|
||||
export async function handleBootNotification(
|
||||
payload: BootNotificationRequest,
|
||||
ctx: OcppConnectionContext,
|
||||
): Promise<BootNotificationResponse> {
|
||||
const db = useDrizzle()
|
||||
const currentTime = dayjs().toISOString()
|
||||
|
||||
console.log(`[OCPP] BootNotification ${ctx.chargePointIdentifier} received`)
|
||||
|
||||
try {
|
||||
const [cp] = await withTimeout(
|
||||
db
|
||||
const [cp] = await db
|
||||
.insert(chargePoint)
|
||||
.values({
|
||||
id: crypto.randomUUID(),
|
||||
@@ -65,10 +50,7 @@ export async function handleBootNotification(
|
||||
updatedAt: dayjs().toDate(),
|
||||
},
|
||||
})
|
||||
.returning(),
|
||||
BOOT_NOTIFICATION_DB_TIMEOUT_MS,
|
||||
`BootNotification persistence for ${ctx.chargePointIdentifier}`,
|
||||
)
|
||||
.returning()
|
||||
|
||||
const status = cp.registrationStatus
|
||||
ctx.isRegistered = status === 'Accepted'
|
||||
@@ -76,18 +58,8 @@ export async function handleBootNotification(
|
||||
console.log(`[OCPP] BootNotification ${ctx.chargePointIdentifier} status=${status}`)
|
||||
|
||||
return {
|
||||
currentTime,
|
||||
currentTime: dayjs().toISOString(),
|
||||
interval: DEFAULT_HEARTBEAT_INTERVAL,
|
||||
status,
|
||||
}
|
||||
} catch (error) {
|
||||
ctx.isRegistered = false
|
||||
console.error(`[OCPP] BootNotification ${ctx.chargePointIdentifier} persistence failed:`, error)
|
||||
|
||||
return {
|
||||
currentTime,
|
||||
interval: DEFAULT_HEARTBEAT_INTERVAL,
|
||||
status: 'Pending',
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,26 +92,6 @@ function sendCallError(
|
||||
)
|
||||
}
|
||||
|
||||
function pickOcppSubprotocol(
|
||||
negotiatedProtocol?: string | null,
|
||||
requestedHeader?: string | null,
|
||||
) {
|
||||
if (negotiatedProtocol && isSupportedOCPP(negotiatedProtocol)) {
|
||||
return negotiatedProtocol
|
||||
}
|
||||
|
||||
if (!requestedHeader) {
|
||||
return null
|
||||
}
|
||||
|
||||
const requestedProtocols = requestedHeader
|
||||
.split(',')
|
||||
.map((value) => value.trim())
|
||||
.filter(Boolean)
|
||||
|
||||
return requestedProtocols.find((protocol) => isSupportedOCPP(protocol)) ?? null
|
||||
}
|
||||
|
||||
/**
|
||||
* Factory that produces a hono-ws event handler object for a single
|
||||
* OCPP WebSocket connection.
|
||||
@@ -119,11 +99,7 @@ function pickOcppSubprotocol(
|
||||
* Usage in route:
|
||||
* upgradeWebSocket((c) => createOcppHandler(c.req.param('chargePointId'), remoteAddr))
|
||||
*/
|
||||
export function createOcppHandler(
|
||||
chargePointIdentifier: string,
|
||||
remoteAddr?: string,
|
||||
requestedProtocolHeader?: string,
|
||||
) {
|
||||
export function createOcppHandler(chargePointIdentifier: string, remoteAddr?: string) {
|
||||
const ctx: OcppConnectionContext = {
|
||||
chargePointIdentifier,
|
||||
isRegistered: false,
|
||||
@@ -131,14 +107,14 @@ export function createOcppHandler(
|
||||
|
||||
return {
|
||||
onOpen(_evt: Event, ws: WSContext) {
|
||||
const subProtocol = pickOcppSubprotocol(ws.protocol, requestedProtocolHeader)
|
||||
if (!subProtocol) {
|
||||
const subProtocol = ws.protocol ?? 'unknown'
|
||||
if (!isSupportedOCPP(subProtocol)) {
|
||||
ws.close(1002, 'Unsupported subprotocol')
|
||||
return
|
||||
}
|
||||
ocppConnections.set(chargePointIdentifier, ws)
|
||||
console.log(
|
||||
`[OCPP] ${chargePointIdentifier} connected (${subProtocol})` +
|
||||
`[OCPP] ${chargePointIdentifier} connected` +
|
||||
(remoteAddr ? ` from ${remoteAddr}` : ''),
|
||||
)
|
||||
},
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
#define MG_ARCH MG_ARCH_ESP32
|
||||
#define MG_TLS MG_TLS_MBED // Use ESP-IDF built-in mbedTLS for WSS support
|
||||
|
||||
Reference in New Issue
Block a user