@@ -2,10 +2,14 @@ import { type ITunnelClient, TunnelClient } from "./tunnel.client.ts";
2
2
import { Transport } from "./transport.ts" ;
3
3
import { DEFAULT_LOG_SINK , Logger , PRETTY_LOG_SINK } from "./logger.ts" ;
4
4
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" ;
7
10
import { retry } from "./util.ts" ;
8
11
12
+ const BASE_URL = "https://signal.pulsebeam.dev/twirp" ;
9
13
const PREPARE_INITIAL_DELAY_MS = 50 ;
10
14
const PREPARE_MAX_RETRY = 3 ;
11
15
@@ -25,10 +29,11 @@ export type ISession = Pick<
25
29
> ;
26
30
27
31
export interface PeerOptions {
28
- baseUrl : string ;
29
32
groupId : string ;
30
33
peerId : string ;
31
34
token : string ;
35
+ baseUrl ?: string ;
36
+ forceRelay ?: boolean ;
32
37
iceServers ?: RTCIceServer [ ] ;
33
38
}
34
39
@@ -58,7 +63,7 @@ export class Peer {
58
63
59
64
const rtcConfig : RTCConfiguration = {
60
65
bundlePolicy : "balanced" ,
61
- iceTransportPolicy : "all" ,
66
+ iceTransportPolicy : ! ! opts . forceRelay ? "relay" : "all" ,
62
67
iceCandidatePoolSize : 0 ,
63
68
iceServers : opts . iceServers ,
64
69
} ;
@@ -131,7 +136,7 @@ function isTwirpRecoverable(err: unknown): boolean {
131
136
export async function createPeer ( opts : PeerOptions ) : Promise < Peer > {
132
137
// TODO: add hook for refresh token
133
138
const twirp = new TwirpFetchTransport ( {
134
- baseUrl : opts . baseUrl ,
139
+ baseUrl : opts . baseUrl || BASE_URL ,
135
140
sendJson : false ,
136
141
jsonOptions : {
137
142
emitDefaultValues : true , // treat zero values as values instead of undefined.
@@ -161,7 +166,8 @@ export async function createPeer(opts: PeerOptions): Promise<Peer> {
161
166
maxDelay : 1000 ,
162
167
maxRetries : 5 ,
163
168
isRecoverable : isTwirpRecoverable ,
164
- } ) ;
169
+ } ,
170
+ ) ;
165
171
if ( resp === null ) {
166
172
throw new Error ( "createPeer aborted" ) ;
167
173
}
0 commit comments