livekit-client 2.9.3 → 2.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10455,6 +10455,13 @@ class PublishDataError extends LivekitError {
10455
10455
  this.name = 'PublishDataError';
10456
10456
  }
10457
10457
  }
10458
+ class PublishTrackError extends LivekitError {
10459
+ constructor(message, status) {
10460
+ super(15, message);
10461
+ this.name = 'PublishTrackError';
10462
+ this.status = status;
10463
+ }
10464
+ }
10458
10465
  class SignalRequestError extends LivekitError {
10459
10466
  constructor(message, reason) {
10460
10467
  super(15, message);
@@ -11162,7 +11169,7 @@ function getOSVersion(ua) {
11162
11169
  return ua.includes('mac os') ? getMatch(/\(.+?(\d+_\d+(:?_\d+)?)/, ua, 1).replace(/_/g, '.') : undefined;
11163
11170
  }
11164
11171
 
11165
- var version$1 = "2.9.3";
11172
+ var version$1 = "2.9.5";
11166
11173
 
11167
11174
  const version = version$1;
11168
11175
  const protocolVersion = 15;
@@ -12145,16 +12152,22 @@ function isRemoteParticipant(p) {
12145
12152
  function splitUtf8(s, n) {
12146
12153
  // adapted from https://stackoverflow.com/a/6043797
12147
12154
  const result = [];
12148
- while (s.length > n) {
12155
+ let encoded = new TextEncoder().encode(s);
12156
+ while (encoded.length > n) {
12149
12157
  let k = n;
12150
- // Move back to find the start of a UTF-8 character
12151
- while ((s.charCodeAt(k) & 0xc0) === 0x80) {
12158
+ while (k > 0) {
12159
+ const byte = encoded[k];
12160
+ if (byte !== undefined && (byte & 0xc0) !== 0x80) {
12161
+ break;
12162
+ }
12152
12163
  k--;
12153
12164
  }
12154
- result.push(s.slice(0, k));
12155
- s = s.slice(k);
12165
+ result.push(encoded.slice(0, k));
12166
+ encoded = encoded.slice(k);
12167
+ }
12168
+ if (encoded.length > 0) {
12169
+ result.push(encoded);
12156
12170
  }
12157
- result.push(s);
12158
12171
  return result;
12159
12172
  }
12160
12173
 
@@ -12166,6 +12179,8 @@ function mergeDefaultOptions(options, audioDefaults, videoDefaults) {
12166
12179
  audioProcessor,
12167
12180
  videoProcessor
12168
12181
  } = extractProcessorsFromOptions(options !== null && options !== void 0 ? options : {});
12182
+ const defaultAudioProcessor = audioDefaults === null || audioDefaults === void 0 ? void 0 : audioDefaults.processor;
12183
+ const defaultVideoProcessor = videoDefaults === null || videoDefaults === void 0 ? void 0 : videoDefaults.processor;
12169
12184
  const clonedOptions = (_a = cloneDeep(optionsWithoutProcessor)) !== null && _a !== void 0 ? _a : {};
12170
12185
  if (clonedOptions.audio === true) clonedOptions.audio = {};
12171
12186
  if (clonedOptions.video === true) clonedOptions.video = {};
@@ -12173,15 +12188,15 @@ function mergeDefaultOptions(options, audioDefaults, videoDefaults) {
12173
12188
  if (clonedOptions.audio) {
12174
12189
  mergeObjectWithoutOverwriting(clonedOptions.audio, audioDefaults);
12175
12190
  (_b = (_d = clonedOptions.audio).deviceId) !== null && _b !== void 0 ? _b : _d.deviceId = 'default';
12176
- if (audioProcessor) {
12177
- clonedOptions.audio.processor = audioProcessor;
12191
+ if (audioProcessor || defaultAudioProcessor) {
12192
+ clonedOptions.audio.processor = audioProcessor !== null && audioProcessor !== void 0 ? audioProcessor : defaultAudioProcessor;
12178
12193
  }
12179
12194
  }
12180
12195
  if (clonedOptions.video) {
12181
12196
  mergeObjectWithoutOverwriting(clonedOptions.video, videoDefaults);
12182
12197
  (_c = (_e = clonedOptions.video).deviceId) !== null && _c !== void 0 ? _c : _e.deviceId = 'default';
12183
- if (videoProcessor) {
12184
- clonedOptions.video.processor = videoProcessor;
12198
+ if (videoProcessor || defaultVideoProcessor) {
12199
+ clonedOptions.video.processor = videoProcessor !== null && videoProcessor !== void 0 ? videoProcessor : defaultVideoProcessor;
12185
12200
  }
12186
12201
  }
12187
12202
  return clonedOptions;
@@ -12413,6 +12428,20 @@ function extractProcessorsFromOptions(options) {
12413
12428
  optionsWithoutProcessor: newOptions
12414
12429
  };
12415
12430
  }
12431
+ function getTrackSourceFromProto(source) {
12432
+ switch (source) {
12433
+ case TrackSource.CAMERA:
12434
+ return Track.Source.Camera;
12435
+ case TrackSource.MICROPHONE:
12436
+ return Track.Source.Microphone;
12437
+ case TrackSource.SCREEN_SHARE:
12438
+ return Track.Source.ScreenShare;
12439
+ case TrackSource.SCREEN_SHARE_AUDIO:
12440
+ return Track.Source.ScreenShareAudio;
12441
+ default:
12442
+ return Track.Source.Unknown;
12443
+ }
12444
+ }
12416
12445
 
12417
12446
  /**
12418
12447
  * @experimental
@@ -20062,13 +20091,13 @@ class LocalParticipant extends Participant {
20062
20091
  return __awaiter(this, void 0, void 0, function* () {
20063
20092
  var _a, _b;
20064
20093
  options !== null && options !== void 0 ? options : options = {};
20094
+ const mergedOptionsWithProcessors = mergeDefaultOptions(options, (_a = this.roomOptions) === null || _a === void 0 ? void 0 : _a.audioCaptureDefaults, (_b = this.roomOptions) === null || _b === void 0 ? void 0 : _b.videoCaptureDefaults);
20065
20095
  const {
20066
20096
  audioProcessor,
20067
20097
  videoProcessor,
20068
20098
  optionsWithoutProcessor
20069
- } = extractProcessorsFromOptions(options);
20070
- const mergedOptions = mergeDefaultOptions(optionsWithoutProcessor, (_a = this.roomOptions) === null || _a === void 0 ? void 0 : _a.audioCaptureDefaults, (_b = this.roomOptions) === null || _b === void 0 ? void 0 : _b.videoCaptureDefaults);
20071
- const constraints = constraintsForOptions(mergedOptions);
20099
+ } = extractProcessorsFromOptions(mergedOptionsWithProcessors);
20100
+ const constraints = constraintsForOptions(optionsWithoutProcessor);
20072
20101
  let stream;
20073
20102
  try {
20074
20103
  stream = yield navigator.mediaDevices.getUserMedia(constraints);
@@ -20092,7 +20121,6 @@ class LocalParticipant extends Participant {
20092
20121
  }
20093
20122
  return Promise.all(stream.getTracks().map(mediaStreamTrack => __awaiter(this, void 0, void 0, function* () {
20094
20123
  const isAudio = mediaStreamTrack.kind === 'audio';
20095
- isAudio ? mergedOptions.audio : mergedOptions.video;
20096
20124
  let trackConstraints;
20097
20125
  const conOrBool = isAudio ? constraints.audio : constraints.video;
20098
20126
  if (typeof conOrBool !== 'boolean') {
@@ -20288,9 +20316,27 @@ class LocalParticipant extends Participant {
20288
20316
  }();
20289
20317
  });
20290
20318
  }
20319
+ hasPermissionsToPublish(track) {
20320
+ if (!this.permissions) {
20321
+ this.log.warn('no permissions present for publishing track', Object.assign(Object.assign({}, this.logContext), getLogContextFromTrack(track)));
20322
+ return false;
20323
+ }
20324
+ const {
20325
+ canPublish,
20326
+ canPublishSources
20327
+ } = this.permissions;
20328
+ if (canPublish && (canPublishSources.length === 0 || canPublishSources.map(source => getTrackSourceFromProto(source)).includes(track.source))) {
20329
+ return true;
20330
+ }
20331
+ this.log.warn('insufficient permissions to publish', Object.assign(Object.assign({}, this.logContext), getLogContextFromTrack(track)));
20332
+ return false;
20333
+ }
20291
20334
  publish(track, opts, isStereo) {
20292
20335
  return __awaiter(this, void 0, void 0, function* () {
20293
20336
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
20337
+ if (!this.hasPermissionsToPublish(track)) {
20338
+ throw new PublishTrackError('failed to publish track, insufficient permissions', 403);
20339
+ }
20294
20340
  const existingTrackOfSource = Array.from(this.trackPublications.values()).find(publishedTrack => isLocalTrack(track) && publishedTrack.source === track.source);
20295
20341
  if (existingTrackOfSource && track.source !== Track.Source.Unknown) {
20296
20342
  this.log.info("publishing a second track with the same source: ".concat(track.source), Object.assign(Object.assign({}, this.logContext), getLogContextFromTrack(track)));
@@ -20893,10 +20939,10 @@ class LocalParticipant extends Participant {
20893
20939
  // Implement the sink
20894
20940
  write(text) {
20895
20941
  return __awaiter(this, void 0, void 0, function* () {
20896
- for (const textChunk of splitUtf8(text, STREAM_CHUNK_SIZE)) {
20942
+ for (const textByteChunk of splitUtf8(text, STREAM_CHUNK_SIZE)) {
20897
20943
  yield localP.engine.waitForBufferStatusLow(DataPacket_Kind.RELIABLE);
20898
20944
  const chunk = new DataStream_Chunk({
20899
- content: new TextEncoder().encode(textChunk),
20945
+ content: textByteChunk,
20900
20946
  streamId,
20901
20947
  chunkIndex: numberToBigInt(chunkId)
20902
20948
  });
@@ -22589,12 +22635,11 @@ class Room extends eventsExports.EventEmitter {
22589
22635
  }
22590
22636
  /**
22591
22637
  * Establishes the participant as a receiver for calls of the specified RPC method.
22592
- * Will overwrite any existing callback for the same method.
22593
22638
  *
22594
22639
  * @param method - The name of the indicated RPC method
22595
22640
  * @param handler - Will be invoked when an RPC request for this method is received
22596
22641
  * @returns A promise that resolves when the method is successfully registered
22597
- * @throws {Error} if the handler for a specific method has already been registered already
22642
+ * @throws {Error} If a handler for this method is already registered (must call unregisterRpcMethod first)
22598
22643
  *
22599
22644
  * @example
22600
22645
  * ```typescript
@@ -23317,7 +23362,7 @@ class Room extends eventsExports.EventEmitter {
23317
23362
  if (textBuffer) {
23318
23363
  textBuffer.info.attributes = Object.assign(Object.assign({}, textBuffer.info.attributes), trailer.attributes);
23319
23364
  textBuffer.controller.close();
23320
- this.byteStreamControllers.delete(trailer.streamId);
23365
+ this.textStreamControllers.delete(trailer.streamId);
23321
23366
  }
23322
23367
  const fileBuffer = this.byteStreamControllers.get(trailer.streamId);
23323
23368
  if (fileBuffer) {
@@ -24619,5 +24664,5 @@ function isFacingModeValue(item) {
24619
24664
  return item === undefined || allowedValues.includes(item);
24620
24665
  }
24621
24666
 
24622
- export { AudioPresets, BackupCodecPolicy, BaseKeyProvider, CheckStatus, Checker, ConnectionCheck, ConnectionError, ConnectionErrorReason, ConnectionQuality, ConnectionState, CriticalTimers, CryptorError, CryptorErrorReason, CryptorEvent, DataPacket_Kind, DefaultReconnectPolicy, DeviceUnsupportedError, DisconnectReason, EncryptionEvent, EngineEvent, ExternalE2EEKeyProvider, KeyHandlerEvent, KeyProviderEvent, LivekitError, LocalAudioTrack, LocalParticipant, LocalTrack, LocalTrackPublication, LocalVideoTrack, LogLevel, LoggerNames, MediaDeviceFailure, _ as Mutex, NegotiationError, Participant, ParticipantEvent, ParticipantInfo_Kind as ParticipantKind, PublishDataError, RemoteAudioTrack, RemoteParticipant, RemoteTrack, RemoteTrackPublication, RemoteVideoTrack, Room, RoomEvent, RpcError, ScreenSharePresets, SignalRequestError, SubscriptionError, Track, TrackEvent, TrackInvalidError, TrackPublication, TrackType, UnexpectedConnectionState, UnsupportedServer, VideoPreset, VideoPresets, VideoPresets43, VideoQuality, attachToElement, compareVersions, createAudioAnalyser, createE2EEKey, createKeyMaterialFromBuffer, createKeyMaterialFromString, createLocalAudioTrack, createLocalScreenTracks, createLocalTracks, createLocalVideoTrack, deriveKeys, detachTrack, facingModeFromDeviceLabel, facingModeFromLocalTrack, getBrowser, getEmptyAudioStreamTrack, getEmptyVideoStreamTrack, getLogger, importKey, isAudioTrack, isBackupCodec, isBrowserSupported, isE2EESupported, isInsertableStreamSupported, isLocalParticipant, isLocalTrack, isRemoteParticipant, isRemoteTrack, isScriptTransformSupported, isVideoFrame, isVideoTrack, needsRbspUnescaping, parseRbsp, protocolVersion, ratchet, setLogExtension, setLogLevel, supportsAV1, supportsAdaptiveStream, supportsDynacast, supportsVP9, version, videoCodecs, writeRbsp };
24667
+ export { AudioPresets, BackupCodecPolicy, BaseKeyProvider, CheckStatus, Checker, ConnectionCheck, ConnectionError, ConnectionErrorReason, ConnectionQuality, ConnectionState, CriticalTimers, CryptorError, CryptorErrorReason, CryptorEvent, DataPacket_Kind, DefaultReconnectPolicy, DeviceUnsupportedError, DisconnectReason, EncryptionEvent, EngineEvent, ExternalE2EEKeyProvider, KeyHandlerEvent, KeyProviderEvent, LivekitError, LocalAudioTrack, LocalParticipant, LocalTrack, LocalTrackPublication, LocalVideoTrack, LogLevel, LoggerNames, MediaDeviceFailure, _ as Mutex, NegotiationError, Participant, ParticipantEvent, ParticipantInfo_Kind as ParticipantKind, PublishDataError, PublishTrackError, RemoteAudioTrack, RemoteParticipant, RemoteTrack, RemoteTrackPublication, RemoteVideoTrack, Room, RoomEvent, RpcError, ScreenSharePresets, SignalRequestError, SubscriptionError, Track, TrackEvent, TrackInvalidError, TrackPublication, TrackType, UnexpectedConnectionState, UnsupportedServer, VideoPreset, VideoPresets, VideoPresets43, VideoQuality, attachToElement, compareVersions, createAudioAnalyser, createE2EEKey, createKeyMaterialFromBuffer, createKeyMaterialFromString, createLocalAudioTrack, createLocalScreenTracks, createLocalTracks, createLocalVideoTrack, deriveKeys, detachTrack, facingModeFromDeviceLabel, facingModeFromLocalTrack, getBrowser, getEmptyAudioStreamTrack, getEmptyVideoStreamTrack, getLogger, importKey, isAudioTrack, isBackupCodec, isBrowserSupported, isE2EESupported, isInsertableStreamSupported, isLocalParticipant, isLocalTrack, isRemoteParticipant, isRemoteTrack, isScriptTransformSupported, isVideoFrame, isVideoTrack, needsRbspUnescaping, parseRbsp, protocolVersion, ratchet, setLogExtension, setLogLevel, supportsAV1, supportsAdaptiveStream, supportsDynacast, supportsVP9, version, videoCodecs, writeRbsp };
24623
24668
  //# sourceMappingURL=livekit-client.esm.mjs.map