Skip to content

Commit e272ca5

Browse files
committed
- Add overview graphic
- Disable Redis per default locally, option to enable it - Option to broadcast CRUD post-events to all sockets via `@websocket.broadcast.all` or `@ws.broadcast.all` - Remove Redis broadcast for kind `ws` on message receiving
1 parent fad0c16 commit e272ca5

12 files changed

+4525
-119
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## Version 0.2.1 - 2024-01-15
8+
## Version 0.3.0 - 2024-01-22
99

1010
### Added
1111

12+
- Add overview graphic
1213
- Disable Redis per default locally, option to enable it
14+
- Option to broadcast CRUD post-events to all sockets via `@websocket.broadcast.all` or `@ws.broadcast.all`
15+
16+
### Fixed
17+
18+
- Remove Redis broadcast for kind `ws` on message receiving
1319

1420
## Version 0.2.0 - 2024-01-11
1521

README.md

+23-6
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ In browser environment implement the websocket client: **index.html**
102102

103103
## Documentation
104104

105+
### Architecture Overview
106+
107+
![WebSocket Overview](./docs/assets/overview.png)
108+
105109
### WebSocket Server
106110

107111
The websocket server is exposed on `cds` object implementation-independent at `cds.ws` and implementation-specific at
@@ -154,8 +158,9 @@ are not exposed, as the service itself is not marked as websocket protocol.
154158
### Server Socket
155159

156160
Each CDS handler request context is extended to hold the current server `socket` instance of the event.
157-
It can be accessed via `req.context.socket` or `cds.context.socket`.
158-
Events can be directly emitted via the `socket` bypassing CDS runtime.
161+
It can be accessed via the service websocket facade via `req.context.ws.service` or `cds.context.ws.service`.
162+
In addition the native websocket server socket can be accessed via `req.context.ws.socket` or `cds.context.ws.socket`.
163+
Events can be directly emitted via the native `socket`, bypassing CDS runtime, if necessary.
159164

160165
### Middlewares
161166

@@ -258,10 +263,22 @@ CRUD events that modify entities automatically emit another event after successf
258263
- `<entity>:delete => <entity>:deleted`: Entity instance has been deleted
259264

260265
Because of security concerns, it can be controlled which data of those events is broadcast,
261-
via annotations `@websocket.broadcast` or `@ws.broadcast`.
262-
263-
- Propagate only key (default): `@websocket.broadcast = 'key'`, `@ws.broadcast = 'key'`
264-
- Propagate complete entity data: `@websocket.broadcast = 'data'`, `@ws.broadcast = 'data'`
266+
via annotations `@websocket.broadcast` or `@ws.broadcast` on entity level.
267+
268+
- Propagate only key via one of the following options (default, if no annotation is present):
269+
- `@websocket.broadcast = 'key'`
270+
- `@websocket.broadcast.content = 'key'`
271+
- `@ws.broadcast = 'key'`
272+
- `@ws.broadcast.content = 'key'`
273+
- Propagate complete entity data via one of the following options:
274+
- `@websocket.broadcast = 'data'`
275+
- `@websocket.broadcast.content = 'data'`
276+
- `@ws.broadcast = 'data'`
277+
- `@ws.broadcast.content = 'data'`
278+
279+
Per default, this event is broadcast to every connected socket, expect the socket, that was called with the CRUD event.
280+
To also include the triggering socket within the broadcast, this can be controlled via annotations
281+
`@websocket.broadcast.all` or `@ws.broadcast.all` on entity level.
265282

266283
### Examples
267284

0 commit comments

Comments
 (0)