-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
419 lines (364 loc) · 14.3 KB
/
Copy pathmain.js
File metadata and controls
419 lines (364 loc) · 14.3 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
var id = window.location.href.split("/")[3].replace(/[^a-zA-Z0-9]/g, '')
if (id == ''){
id = makeid(6)
console.log(id)
window.location.href = "/"+id
}
var incoming = false
var theConnection = null;
var isRemoteAlive = null;
var connectionTracker = null;
var liveCounter = 0
var liveCounter_ = 0
function mainFunction() {
console.log("Starting mainFunction, trying to connect to PeerJS server...")
// Test PeerJS server connectivity first
fetch('https://peerjs.codeshare.live/')
.then(response => {
console.log("PeerJS server responded:", response.status)
return response.text()
})
.then(data => {
console.log("PeerJS server response:", data.substring(0, 100) + "...")
})
.catch(err => {
console.log("PeerJS server connection test failed:", err)
})
var peer = new Peer(id, {
host: 'peerjs.codeshare.live',
port: 443,
path: '/',
secure: true,
debug: 2, // Add debug logging
config: {
'iceServers': [
{ urls: 'stun:stun.l.google.com:19302' },
{ urls: 'stun:stun1.l.google.com:19302' },
{ urls: 'stun:stun2.l.google.com:19302' },
{ urls: 'stun:stun3.l.google.com:19302' },
{
urls: 'turn:openrelay.metered.ca:80',
username: 'openrelayproject',
credential: 'openrelayproject'
},
{
urls: 'turn:openrelay.metered.ca:443',
username: 'openrelayproject',
credential: 'openrelayproject'
},
{
urls: 'turns:openrelay.metered.ca:443?transport=tcp',
username: 'openrelayproject',
credential: 'openrelayproject'
}
// Temporarily commenting out your TURN server to test
// {
// urls: 'turn:ice.codeshare.live:3478',
// username: 'testuser',
// credential: 'testpass'
// }
],
'iceCandidatePoolSize': 10,
'iceTransportPolicy': 'all' // Use all available transports
}
});
peer.on("connection", (conn)=>{
console.log("Incoming connection received")
theConnection = conn
// Monitor ICE connection state on host side
if(conn.peerConnection) {
conn.peerConnection.oniceconnectionstatechange = () => {
console.log("Host ICE connection state:", conn.peerConnection.iceConnectionState)
}
conn.peerConnection.onconnectionstatechange = () => {
console.log("Host connection state:", conn.peerConnection.connectionState)
}
}
conn.on("data", (data)=>{
getData(data)
})
conn.on("open", ()=>{
console.log("Connection opened, sending initial data")
let data = window.editor ? window.editor.getValue() : ""
sendData(data)
})
conn.on("close", ()=>{
console.log("Connection closed")
})
conn.on("error", (err)=>{
console.log("Connection error:", err)
})
})
peer.on("open", (id)=>{
setHost()
console.log("Host peer opened with ID:", id)
console.log("Waiting for connections...")
window.addEventListener("beforeunload", ()=>{
peer.destroy()
})
})
peer.on("disconnected", ()=>{
console.log("Peer disconnected from server")
})
peer.on("error", (err)=>{
console.log("Peer error:", err.type, err)
if(err.type==="unavailable-id") {
console.log("ID unavailable, becoming remote peer")
var peer1 = new Peer({
host: 'peerjs.codeshare.live',
port: 443,
path: '/',
secure: true,
debug: 2, // Add debug logging
config: {
'iceServers': [
{ urls: 'stun:stun.l.google.com:19302' },
{ urls: 'stun:stun1.l.google.com:19302' },
{ urls: 'stun:stun2.l.google.com:19302' },
{ urls: 'stun:stun3.l.google.com:19302' },
{
urls: 'turn:openrelay.metered.ca:80',
username: 'openrelayproject',
credential: 'openrelayproject'
},
{
urls: 'turn:openrelay.metered.ca:443',
username: 'openrelayproject',
credential: 'openrelayproject'
},
{
urls: 'turns:openrelay.metered.ca:443?transport=tcp',
username: 'openrelayproject',
credential: 'openrelayproject'
}
// Temporarily commenting out your TURN server to test
// {
// urls: 'turn:ice.codeshare.live:3478',
// username: 'testuser',
// credential: 'testpass'
// }
],
'iceCandidatePoolSize': 10,
'iceTransportPolicy': 'all' // Use all available transports
}
});
peer1.on("open", (newId)=>{
console.log("Peer1 opened with ID:", newId, "connecting to:", id)
setRemote()
// Test if target peer exists by making a connection attempt
console.log("Testing if target peer", id, "exists...")
// Add a small delay before connecting
setTimeout(() => {
const conn = peer1.connect(id, {
reliable: true,
serialization: 'json'
});
theConnection = conn
// Monitor ICE connection state
if(conn.peerConnection) {
conn.peerConnection.oniceconnectionstatechange = () => {
console.log("ICE connection state:", conn.peerConnection.iceConnectionState)
}
conn.peerConnection.onconnectionstatechange = () => {
console.log("Connection state:", conn.peerConnection.connectionState)
}
conn.peerConnection.onicegatheringstatechange = () => {
console.log("ICE gathering state:", conn.peerConnection.iceGatheringState)
}
conn.peerConnection.onicecandidate = (event) => {
if (event.candidate) {
console.log("ICE candidate:", event.candidate.type, event.candidate.address || 'hidden')
} else {
console.log("ICE gathering completed")
}
}
}
// Set connection timeout
const connectionTimeout = setTimeout(() => {
console.log("Connection attempt timed out after 30 seconds")
conn.close()
}, 30000) // Increased to 30 seconds
conn.on("data", (data)=>{
getData(data)
})
conn.on("open", ()=>{
console.log("Remote connection established successfully")
clearTimeout(connectionTimeout)
connectionTracker = true
sendData("!!!PING!!!")
let interval = setInterval(()=>{
if(connectionTracker === false) {
clearInterval(interval)
console.log("Connection lost, reconnecting...")
mainFunction()
} else {
connectionTracker = false
}
}, 2100)
})
conn.on("close", ()=>{
console.log("Remote connection closed, reconnecting...")
clearTimeout(connectionTimeout)
mainFunction()
})
conn.on("error", (err)=>{
console.log("Remote connection error:", err)
clearTimeout(connectionTimeout)
})
}, 2000) // Increased delay to 2 seconds
})
peer1.on("error", (err)=>{
console.log("Peer1 error:", err.type, err)
if(err.type === "peer-unavailable") {
console.log("Target peer not found, retrying in 5 seconds...")
setTimeout(()=>{
mainFunction()
}, 5000) // Increased retry delay
}
})
} else if(err.type === "network") {
console.log("Network error, retrying in 3 seconds...")
setTimeout(()=>{
mainFunction()
}, 3000)
} else if(err.type === "server-error") {
console.log("Server error (possibly peer discovery disabled), continuing anyway...")
// Don't retry, just continue - the peer is still connected
}
})
}
mainFunction()
async function getData(data) {
console.log("Data received:", typeof data, data.length ? data.length + " characters" : data)
if(data === "!!!PING!!!") {
connectionTracker = true
displayLive()
liveCounter = liveCounter + 1
setTimeout(()=>{
// console.log("PING")
liveCounter = liveCounter + 1
sendData("!!!PING!!!")
}, 1000)
} else {
displayLive()
incoming = true
if(window.editor) {
window.editor.setValue(data)
console.log("Editor updated with received data")
} else {
console.log("Editor not ready yet")
}
incoming = false
}
}
// Check if other peer is connected or not
setInterval(()=>{
console.log(isRemoteAlive, liveCounter, liveCounter_)
if(liveCounter != liveCounter_) {
isRemoteAlive = true
liveCounter_ = liveCounter
} else {
displayNotLive()
isRemoteAlive = false
}
}, 3400)
// Display Live not Live
let indicator = document.querySelector(".indicator")
let peerMode = document.querySelector(".peerMode")
function displayLive() {
indicator.style.backgroundColor = '#17825d'
}
function displayNotLive() {
indicator.style.backgroundColor = 'rgb(204, 72, 72)'
}
function setHost() {
console.log("HOWNOWER")
peerMode.style.backgroundColor = 'purple'
}
function setRemote() {
peerMode.style.backgroundColor = 'yellow'
}
function sendData(data) {
if(theConnection && theConnection.open) {
theConnection.send(data)
console.log("Data sent:", data.length + " characters")
} else {
console.log("Connection not ready, cannot send data")
}
}
require.config({ paths: { 'vs': 'https://unpkg.com/monaco-editor@latest/min/vs' }});
window.MonacoEnvironment = { getWorkerUrl: () => proxy };
let proxy = URL.createObjectURL(new Blob([`
self.MonacoEnvironment = {
baseUrl: 'https://unpkg.com/monaco-editor@latest/min/'
};
importScripts('https://unpkg.com/monaco-editor@latest/min/vs/base/worker/workerMain.js');
`], { type: 'text/javascript' }));
require(["vs/editor/editor.main"], function () {
window.editor = monaco.editor.create(document.getElementById('editor'), {
value: [].join('\n'),
language: null,
theme: 'vs-dark'
});
// Add a small delay to ensure editor is fully initialized
setTimeout(() => {
window.editor.getModel().onDidChangeContent((event) => {
if(!incoming) {
let data = window.editor.getValue()
console.log("Editor changed, sending data:", data.length + " characters")
sendData(data)
}
});
console.log("Monaco editor initialized and ready")
}, 100);
});
function makeid(length) {
let result = '';
const characters = 'abcdefghijklmnopqrstuvwxyz0123456789';
const charactersLength = characters.length;
let counter = 0;
while (counter < length) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
counter += 1;
}
return result;
}
let searchbar = document.querySelector(".link")
searchbar.innerHTML = "codeshare.live/"+id
// Fix CSS
let editor = document.querySelector(".editor")
let container = document.querySelector(".container").clientHeight
let header = document.querySelector(".header").clientHeight
let footer = document.querySelector(".footer").clientHeight
editor.style.height = container - header - footer + "px"
let downloadButton = document.querySelector(".download")
downloadButton.onclick = () => {
console.log("click")
download(id+".txt", window.editor.getValue())
}
function download(filename, text) {
var element = document.createElement('a');
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
element.setAttribute('download', filename);
element.style.display = 'none';
document.body.appendChild(element);
element.click();
document.body.removeChild(element);
}
let copy = document.querySelector(".copy")
let copied = document.querySelector(".copied")
copy.onclick = () => {
console.log(navigator.clipboard)
navigator.clipboard.writeText(window.editor.getValue());
copy.style.display = "none"
copied.style.display = "block"
setTimeout(()=>{
copy.style.display = "block"
copied.style.display = "none"
}, 2000)
}
let languageSelector = document.querySelector("#language")
languageSelector.onchange = (e)=>{
let lang = languageSelector.value
window.monaco.editor.setModelLanguage(window.monaco.editor.getModels()[0], lang)
}