Skip to content

Commit ccf3e0d

Browse files
committed
add forceRelay and optional baseUrl
1 parent c68c069 commit ccf3e0d

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

demo-react/src/peer.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { createPeer, type ISession, type Peer } from "@pulsebeam/peer";
22
import { create } from "zustand";
33
import { produce } from "immer";
44

5-
const BASE_URL = "https://signal.pulsebeam.dev/twirp";
6-
// const BASE_URL = "https://localhost:8443/twirp";
5+
const BASE_URL = "https://localhost:443/twirp";
76
const DEFAULT_GROUP = "default";
87
const DEFAULT_CONNECT_TIMEOUT_MS = 3_000;
98

@@ -39,13 +38,17 @@ export const usePeerStore = create<PeerState>((set, get) => ({
3938

4039
set({ loading: true });
4140
try {
41+
const urlParams = new URLSearchParams(window.location.search);
42+
const forceRelay = urlParams.get("forceRelay");
43+
4244
const resp = await fetch(`/auth?id=${peerId}`);
4345
const token = await resp.text();
4446
const p = await createPeer({
4547
baseUrl: BASE_URL,
4648
groupId: DEFAULT_GROUP,
4749
peerId,
4850
token,
51+
forceRelay: forceRelay != null,
4952
});
5053

5154
p.onsession = (s) => {

peer/peer.ts

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ import { type ITunnelClient, TunnelClient } from "./tunnel.client.ts";
22
import { Transport } from "./transport.ts";
33
import { DEFAULT_LOG_SINK, Logger, PRETTY_LOG_SINK } from "./logger.ts";
44
import { Session } from "./session.ts";
5-
import { RpcError, UnaryCall, RpcOptions } from "@protobuf-ts/runtime-rpc";
6-
import { TwirpErrorCode, TwirpFetchTransport } from "@protobuf-ts/twirp-transport";
5+
import { RpcError, RpcOptions, UnaryCall } from "@protobuf-ts/runtime-rpc";
6+
import {
7+
TwirpErrorCode,
8+
TwirpFetchTransport,
9+
} from "@protobuf-ts/twirp-transport";
710
import { retry } from "./util.ts";
811

12+
const BASE_URL = "https://signal.pulsebeam.dev/twirp";
913
const PREPARE_INITIAL_DELAY_MS = 50;
1014
const PREPARE_MAX_RETRY = 3;
1115

@@ -25,10 +29,11 @@ export type ISession = Pick<
2529
>;
2630

2731
export interface PeerOptions {
28-
baseUrl: string;
2932
groupId: string;
3033
peerId: string;
3134
token: string;
35+
baseUrl?: string;
36+
forceRelay?: boolean;
3237
iceServers?: RTCIceServer[];
3338
}
3439

@@ -58,7 +63,7 @@ export class Peer {
5863

5964
const rtcConfig: RTCConfiguration = {
6065
bundlePolicy: "balanced",
61-
iceTransportPolicy: "all",
66+
iceTransportPolicy: !!opts.forceRelay ? "relay" : "all",
6267
iceCandidatePoolSize: 0,
6368
iceServers: opts.iceServers,
6469
};
@@ -131,7 +136,7 @@ function isTwirpRecoverable(err: unknown): boolean {
131136
export async function createPeer(opts: PeerOptions): Promise<Peer> {
132137
// TODO: add hook for refresh token
133138
const twirp = new TwirpFetchTransport({
134-
baseUrl: opts.baseUrl,
139+
baseUrl: opts.baseUrl || BASE_URL,
135140
sendJson: false,
136141
jsonOptions: {
137142
emitDefaultValues: true, // treat zero values as values instead of undefined.
@@ -161,7 +166,8 @@ export async function createPeer(opts: PeerOptions): Promise<Peer> {
161166
maxDelay: 1000,
162167
maxRetries: 5,
163168
isRecoverable: isTwirpRecoverable,
164-
});
169+
},
170+
);
165171
if (resp === null) {
166172
throw new Error("createPeer aborted");
167173
}

0 commit comments

Comments
 (0)