When a session expires close any event streams that have been opened with that session. This prevents an attacker with a leaked session cookie from opening a stream and receiving updates indefinitely without being detected. By sending the session the event stream is opened with when the stream is established this closure on session expiry also serves as a way for a user agent to be notified whenever its own access level changes.
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
/*
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
export default defineEventHandler(async event => {
|
|
const session = await getServerSession(event, false);
|
|
if (!session)
|
|
return;
|
|
|
|
return await serverSessionToApi(event, session);
|
|
})
|