|
import * as Y from 'yjs' |
|
import { Observable } from 'lib0/observable' |
|
import { Encryption } from 'socket:network' |
|
import { applyAwarenessUpdate, Awareness, encodeAwarenessUpdate, removeAwarenessStates } from 'y-protocols/awareness.js' |
|
import { Buffer } from 'buffer' |
|
|
|
export class SocketProvider extends Observable<string> { |
|
doc: Y.Doc |
|
awareness: Awareness |
|
cluster: any |
|
|
|
constructor(socket: any, roomname: string, doc: Y.Doc) { |
|
super() |
|
|
|
this.doc = doc |
|
this.awareness = new Awareness(this.doc) |
|
const _this = this |
|
|
|
void Encryption.createSharedKey(roomname).then((sharedKey) => { |
|
socket.subcluster({ sharedKey }).then((cluster: any) => { |
|
_this.cluster = cluster |
|
|
|
_this.cluster.on('verify', _this._verifyHandler) |
|
_this.cluster.on('update', _this._clusterUpdateHandler) |
|
_this.doc.on('update', _this._docUpdateHandler) |
|
_this.cluster.on('awareness', _this._clusterAwarenessHandler) |
|
_this.awareness.on('update', _this._awarenessUpdateHandler) |
|
|
|
_this.cluster.emit('verify', Buffer.from(Y.encodeStateVector(_this.doc).buffer)) |
|
}) |
|
}) |
|
} |
|
|
|
_verifyHandler = (vector: Buffer) => { |
|
const update = Y.encodeStateAsUpdate(this.doc, new Uint8Array(vector.buffer)) |
|
if (update.byteLength > 2) { |
|
this.cluster.emit('update', Buffer.from(update.buffer)) |
|
} |
|
} |
|
|
|
_clusterUpdateHandler = (update: Buffer, _packetPublish: any) => { |
|
Y.applyUpdate(this.doc, new Uint8Array(update.buffer), 'socket') |
|
} |
|
|
|
_docUpdateHandler = (update: Uint8Array, origin: any) => { |
|
if (origin !== 'socket') { |
|
this.cluster.emit('update', Buffer.from(update.buffer)) |
|
} |
|
} |
|
|
|
_clusterAwarenessHandler = (update: Buffer) => { |
|
applyAwarenessUpdate(this.awareness, new Uint8Array(update.buffer), 'socket') |
|
} |
|
|
|
_awarenessUpdateHandler = ({ added, updated, removed }: { added: []; updated: []; removed: [] }, origin: any) => { |
|
if (origin !== 'socket') { |
|
this.cluster.emit( |
|
'awareness', |
|
Buffer.from(encodeAwarenessUpdate(this.awareness, [...added, ...updated, ...removed]).buffer), |
|
) |
|
} |
|
} |
|
|
|
destroy() { |
|
this.doc.off('update', this._docUpdateHandler) |
|
removeAwarenessStates( |
|
this.awareness, |
|
Array.from(this.awareness.getStates().keys()).filter((client) => client !== this.doc.clientID), |
|
'provider', |
|
) |
|
this.awareness.destroy() |
|
// this.cluster.destroy() |
|
super.destroy() |
|
} |
|
} |