1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
import { onWithToken, send } from "../channel/connection";
import type { UnregisterHandler } from "../channel/messages/handler";
import type {
ShareAcceptedMessage,
RequestIceCandidateMessage,
ShareIceCandidateMessage,
} from "../channel/messages/messages";
export enum TransferType {
OFFER,
ANSWER,
}
export type Transfer = {
pc: RTCPeerConnection;
channel: RTCDataChannel;
type: TransferType;
};
const servers = {
iceServers: [
{
urls: [
"stun:stun1.l.google.com:19302",
"stun:stun2.l.google.com:19302",
],
},
],
iceCandidatePoolSize: 10,
};
export async function offer(request_token: string): Promise<Transfer> {
const transfer = createTransfer(TransferType.OFFER);
const offer = await transfer.pc.createOffer();
transfer.pc.setLocalDescription(offer);
transfer.pc.onicecandidate = event => {
const candidate = event.candidate;
if (event.candidate !== null) {
send("ice_candidate", { candidate, token: request_token });
}
};
send("accept_request", {
token: request_token,
sdp: offer.sdp,
type: offer.type,
});
onWithToken(
"share_accepted",
request_token,
(message: ShareAcceptedMessage, unregister) =>
onShareAccepted(transfer, message, unregister)
);
return transfer;
}
export async function answer(
offer: RTCSessionDescriptionInit
): Promise<Transfer> {
const transfer = createTransfer(TransferType.ANSWER);
const offerDescription = new RTCSessionDescription(offer);
transfer.pc.setRemoteDescription(offerDescription);
const answer = await transfer.pc.createAnswer();
transfer.pc.setLocalDescription(answer);
transfer.pc.onicecandidate = event => {
const candidate = event.candidate;
if (event.candidate !== null) {
send("ice_candidate", { candidate });
}
};
send("accept_share", {
sdp: offer.sdp,
type: offer.type,
});
return transfer;
}
function createTransfer(type: TransferType): Transfer {
const pc = new RTCPeerConnection(servers);
const channel = pc.createDataChannel("channel", {
negotiated: true,
id: 0,
});
channel.onopen = e => console.log("ooooyeeee");
return {
pc,
channel,
type,
};
}
function onShareAccepted(
transfer: Transfer,
message: ShareAcceptedMessage,
unregister: UnregisterHandler
) {
const token = message.token;
transfer.pc.setRemoteDescription(message);
const unregisterIce = onWithToken(
"ice_candidate",
token,
(message: RequestIceCandidateMessage) =>
onIncomingIceCandidate(transfer, message)
);
transfer.pc.onicegatheringstatechange = event => {
const connection = event.target as any;
console.log(connection.iceGatheringState);
if (connection.iceGatheringState === "complete") {
unregisterIce();
}
};
unregister();
}
function onIncomingIceCandidate(
transfer: Transfer,
message: ShareIceCandidateMessage | RequestIceCandidateMessage
) {
transfer.pc.addIceCandidate(message.candidate);
}
|