-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ULMS-2832 Added Broker client, deprecated Conference, Event clients
- Loading branch information
Showing
9 changed files
with
238 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
/* eslint-disable unicorn/prevent-abbreviations */ | ||
// eslint-disable-next-line unicorn/prefer-node-protocol | ||
import EventEmitter from 'events' | ||
import MQTTPattern from 'mqtt-pattern' | ||
|
||
import Codec from './codec' | ||
|
||
/** | ||
* Agent reader configuration | ||
* @name AgentReaderConfig | ||
* @type {object} | ||
* @property {string} agent_id | ||
* @property {boolean} receive_audio | ||
* @property {boolean} receive_video | ||
*/ | ||
|
||
/** | ||
* Agent writer configuration | ||
* @name AgentWriterConfig | ||
* @type {object} | ||
* @property {string} agent_id | ||
* @property {boolean} send_audio | ||
* @property {boolean} send_video | ||
* @property {number} video_remb | ||
*/ | ||
|
||
const entityEventsEnum = { | ||
AGENT_UPDATE: 'agent.update', | ||
AGENT_WRITER_CONFIG_UPDATE: 'agent_writer_config.update', | ||
CONFERENCE_ROOM_CLOSE: 'conference_room.close', | ||
CONFERENCE_ROOM_ENTER: 'conference_room.enter', | ||
CONFERENCE_ROOM_LEAVE: 'conference_room.leave', | ||
EVENT_CREATE: 'event.create', | ||
EVENT_ROOM_ENTER: 'event_room.enter', | ||
EVENT_ROOM_LEAVE: 'event_room.leave', | ||
EVENT_ROOM_UPDATE: 'event_room.update', | ||
GROUP_UPDATE: 'video_group.update', | ||
RTC_STREAM_AGENT_SPEAKING: 'rtc_stream.agent_speaking', | ||
RTC_STREAM_UPDATE: 'rtc_stream.update', | ||
} | ||
|
||
const ROOM_CLOSE_EVENT = 'room.close' | ||
const ROOM_ENTER_EVENT = 'room.enter' | ||
const ROOM_LEAVE_EVENT = 'room.leave' | ||
const ROOM_UPDATE_EVENT = 'room.update' | ||
|
||
const appNameToEventNameMap = { | ||
'conference.svc.netology-group.services': { | ||
'room.close': entityEventsEnum.CONFERENCE_ROOM_CLOSE, | ||
'room.enter': entityEventsEnum.CONFERENCE_ROOM_ENTER, | ||
'room.leave': entityEventsEnum.CONFERENCE_ROOM_LEAVE, | ||
}, | ||
'event.svc.netology-group.services': { | ||
'room.enter': entityEventsEnum.EVENT_ROOM_ENTER, | ||
'room.leave': entityEventsEnum.EVENT_ROOM_LEAVE, | ||
'room.update': entityEventsEnum.EVENT_ROOM_UPDATE, | ||
}, | ||
} | ||
const eventNamesToTransform = new Set([ | ||
ROOM_CLOSE_EVENT, | ||
ROOM_ENTER_EVENT, | ||
ROOM_LEAVE_EVENT, | ||
ROOM_UPDATE_EVENT, | ||
]) | ||
|
||
class Broker { | ||
/** | ||
* Entity events enum | ||
* @returns {{ | ||
* AGENT_UPDATE: string, | ||
* AGENT_WRITER_CONFIG_UPDATE: string, | ||
* CONFERENCE_ROOM_CLOSE: string, | ||
* CONFERENCE_ROOM_ENTER: string, | ||
* CONFERENCE_ROOM_LEAVE: string, | ||
* EVENT_CREATE: string, | ||
* EVENT_ROOM_ENTER: string, | ||
* EVENT_ROOM_LEAVE: string, | ||
* EVENT_ROOM_UPDATE: string, | ||
* GROUP_UPDATE: string, | ||
* RTC_STREAM_AGENT_SPEAKING: string, | ||
* RTC_STREAM_UPDATE: string, | ||
* }} | ||
*/ | ||
static get events() { | ||
return entityEventsEnum | ||
} | ||
|
||
constructor(mqttClient) { | ||
this.mqtt = mqttClient | ||
|
||
this.codec = new Codec( | ||
(data) => JSON.stringify(data), | ||
(data) => { | ||
let payload | ||
|
||
try { | ||
payload = JSON.parse(data.toString()) | ||
} catch { | ||
payload = {} | ||
} | ||
|
||
return payload | ||
} | ||
) | ||
this.ee = new EventEmitter() | ||
|
||
this.bindListeners() | ||
} | ||
|
||
bindListeners() { | ||
this.mqtt.on( | ||
this.mqtt.constructor.events.MESSAGE, | ||
this.messageHandler.bind(this) | ||
) | ||
} | ||
|
||
messageHandler(topic, message, packet) { | ||
const payload = this.codec.decode(message) | ||
const { | ||
properties: { | ||
userProperties: { label, type }, | ||
}, | ||
} = packet | ||
|
||
if (type === 'event' && payload !== undefined) { | ||
if (eventNamesToTransform.has(label)) { | ||
const topicParams = MQTTPattern.exec( | ||
`apps/+appName/api/v1/rooms/+roomId/events`, | ||
topic | ||
) | ||
|
||
if (topicParams !== null) { | ||
const { appName } = topicParams | ||
const transformedLabel = appNameToEventNameMap[appName][label] | ||
|
||
const event = { | ||
type: transformedLabel, | ||
data: payload, | ||
} | ||
|
||
this.ee.emit(transformedLabel, event) | ||
} else { | ||
console.warn('[topicParams] no parameters') // eslint-disable-line no-console | ||
} | ||
} else { | ||
const event = { | ||
type: label, | ||
data: payload, | ||
} | ||
|
||
this.ee.emit(label, event) | ||
} | ||
} else { | ||
// do nothing | ||
console.log('[messageHandler] ignore message', type) // eslint-disable-line no-console | ||
} | ||
} | ||
|
||
on(eventName, eventHandler) { | ||
this.ee.addListener(eventName, eventHandler) | ||
} | ||
|
||
off(eventName, eventHandler) { | ||
this.ee.removeListener(eventName, eventHandler) | ||
} | ||
|
||
destroy() { | ||
this.ee.removeAllListeners() | ||
} | ||
} | ||
|
||
export default Broker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters