-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
459 lines (405 loc) · 15.6 KB
/
server.js
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
const express = require('express')
const http = require('http')
const WebSocket = require('ws')
const path = require('path')
const fs = require('fs-extra')
const open = require('openurl')
const { exec } = require('child_process')
require('dotenv').config() // Load environment variables from .env
const argsv = process.argv.slice(2)
if (argsv[0] !== 'test') {
// Obtén la ubicación del directorio donde se encuentra el ejecutable
const executablePath = path.dirname(process.execPath)
// Cambia el directorio de trabajo actual a la ubicación del ejecutable
process.chdir(executablePath)
}
// The icons for the web page titles are obtained from:
// https://www.iconfinder.com/search?q=&designer=kmgdesignid&price=free
const {
loadDataFromYAML,
saveVariablesToYAML,
createDataYAML,
startTimer,
pauseCrono,
pauseCdown,
pauseExtensible,
resetCrono,
resetCdown,
stopCdown,
stopExtensible,
resetExtensible,
sendVariableData,
initConfig,
saveConfig,
editTimeTimer,
editTimeCdowntime,
getFonts
} = require('./functions')
const app = express()
const server = http.createServer(app)
const wss = new WebSocket.Server({ server })
// Variable to store the list of system fonts
const fontOptions = getFonts()
// Load variables from the YAML file at server startup
let GlobalVariables
// Determines the folder name based on the operating system
const appFolder = process.platform === 'darwin' ? 'Resources' : 'resources'
// Build the path to the package.json file
GlobalVariables = loadDataFromYAML((argsv[0] === 'test') ? './core/db.yaml' : `./${appFolder}/app/core/db.yaml`)
try {
Object.keys(GlobalVariables).forEach((key) => {
if (GlobalVariables[key].status === 'started') {
GlobalVariables[key].status = 'paused'
}
})
saveVariablesToYAML(GlobalVariables)
} catch (error) {
GlobalVariables = {}
}
let Config;
(async () => {
Config = await initConfig()
saveConfig(Config)
})()
const actions = {
reloadPage: () => sendToAllClients({ action: 'reload' }),
themeChange: (ws, data) => {
Config.themeDark = data.themeDark
saveConfig(Config)
sendToAllClients({ action: 'reload' })
},
langChange: (ws, data) => {
Config.lang = data.lang
saveConfig(Config)
sendToAllClients({ action: 'reload' })
},
startTimer: (ws, data) => startTimer(wss, GlobalVariables, data.classElement),
pauseCrono: (ws, data) => pauseCrono(wss, GlobalVariables, data.classElement),
pauseCdown: (ws, data) => pauseCdown(wss, GlobalVariables, data.classElement),
pauseExtensible: (ws, data) => pauseExtensible(wss, GlobalVariables, data.classElement),
resetCrono: (ws, data) => resetCrono(wss, GlobalVariables, data.classElement),
resetCdown: (ws, data) => resetCdown(wss, GlobalVariables, data.classElement),
resetExtensible: (ws, data) => resetExtensible(wss, GlobalVariables, data.classElement),
stopCdown: (ws, data) => stopCdown(wss, GlobalVariables, data.classElement),
stopExtensible: (ws, data) => stopExtensible(wss, GlobalVariables, data.classElement),
changeTimeCdown: (ws, data) => handleChangeTimeCdown(data),
changeTimeCdownTime: (ws, data) => handleChangeTimeCdownTime(data),
changeTimeExtensible: (ws, data) => handleChangeTimeExtensible(data),
changeTimezoneTime: (ws, data) => {
handleChangeTimezoneTime(data)
sendToAllClients({ action: 'reload' })
},
editMsg: (ws, data) => editMsg(data),
checkboxStopAdd: (ws, data) => changeCheckboxStopAdd(data),
checkboxPauseAdd: (ws, data) => changeCheckboxPauseAdd(data),
changeFormat: (ws, data) => changeFormat(data),
changeFormatExtCrono: (ws, data) => changeFormatExtCrono(data),
changeFormatExtCdown: (ws, data) => changeFormatExtCdown(data),
editTime: (ws, data) => editTime(data),
changeFont: (ws, data) => changeFont(data),
changeSize: (ws, data) => changeSize(data),
textFormat: (ws, data) => changeTextFormat(data),
align: (ws, data) => changeAlign(data),
changeColor: (ws, data) => changeColor(data),
getVariables: (ws, data) => sendVariableData(ws, GlobalVariables, Config, data.classElement),
createData: (ws, data) => createData(data),
removeData: (ws, data) => removeData(data),
stopCode: () => {
console.log('The code has stopped successfully')
process.exit()
}
}
function sendToAllClients (data) {
wss.clients.forEach((client) => {
if (client.readyState === WebSocket.OPEN) {
client.send(JSON.stringify(data))
}
})
}
function handleChangeTimeCdown (data) {
GlobalVariables[data.classElement].textMilliseconds = data.time
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
if (GlobalVariables[data.classElement].status === 'ended') {
resetCdown(wss, GlobalVariables, data.classElement)
}
}
function handleChangeTimeCdownTime (data) {
GlobalVariables[data.classElement].endDatetime = data.time
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function handleChangeTimeExtensible (data) {
GlobalVariables[data.classElement].textMilliseconds = data.time
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
if (GlobalVariables[data.classElement].status === 'ended') {
resetExtensible(wss, GlobalVariables, data.classElement)
}
}
function handleChangeTimezoneTime (data) {
GlobalVariables[data.classElement].timezone = data.timezone
saveVariablesToYAML(GlobalVariables)
sendToAllClients({ action: 'reload' })
}
function editMsg (data) {
GlobalVariables[data.classElement].msgEnd = data.msg
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeCheckboxStopAdd (data) {
GlobalVariables[data.classElement].enableStopAdd = data.value
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeCheckboxPauseAdd (data) {
GlobalVariables[data.classElement].enablePauseAdd = data.value
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeFormat (data) {
const classElement = data.classElement
GlobalVariables[classElement].formatTime = data.format
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeFormatExtCrono (data) {
const classElement = data.classElement
GlobalVariables[classElement].formatTimeCrono = data.format
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeFormatExtCdown (data) {
const classElement = data.classElement
GlobalVariables[classElement].formatTimeCdown = data.format
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function editTime (data) {
const classElement = data.classElement
const status = GlobalVariables[classElement].status
const enablePauseAdd = GlobalVariables[classElement].enablePauseAdd
const enableStopAdd = GlobalVariables[classElement].enableStopAdd
if (
classElement.startsWith('crono') ||
(classElement.startsWith('cdown') && !classElement.startsWith('cdowntime') && status !== 'ended') ||
(classElement.startsWith('extensible') && (
status === 'started' ||
(status === 'paused' && enablePauseAdd) ||
(status === 'stopped' && enableStopAdd)
))
) {
editTimeTimer(wss, GlobalVariables, data.time, classElement)
} else if (classElement.startsWith('cdowntime')) {
editTimeCdowntime(wss, GlobalVariables, data.time, classElement)
}
}
function changeFont (data) {
GlobalVariables[data.classElement].font = data.font
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeSize (data) {
GlobalVariables[data.classElement].size = data.size
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeTextFormat (data) {
const classElement = data.classElement
switch (data.format) {
case 'bold':
GlobalVariables[classElement].bold = !GlobalVariables[classElement].bold
break
case 'italic':
GlobalVariables[classElement].italic = !GlobalVariables[classElement].italic
break
case 'underline':
GlobalVariables[classElement].underline = !GlobalVariables[classElement].underline
break
}
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeAlign (data) {
GlobalVariables[data.classElement].align = data.align
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function changeColor (data) {
GlobalVariables[data.classElement].colorText = data.color
sendToAllClients(GlobalVariables)
saveVariablesToYAML(GlobalVariables)
}
function createData (data) {
const page = createDataYAML(GlobalVariables, data.classType)
// Determines the folder name based on the operating system
const appFolder = process.platform === 'darwin' ? 'Resources' : 'resources'
fs.copy(
// Build the path to the package.json file
argsv[0] === 'test' ? `./core/template/${data.classType}` : `./${appFolder}/app/core/template/${data.classType}`,
argsv[0] === 'test' ? `./core/${page}` : `./${appFolder}/app/core/${page}`
)
.then(() => {
console.log('Folder copied successfully.')
})
.catch((err) => {
console.error('Error copying the folder:', err)
})
}
function removeData (data) {
delete GlobalVariables[data.remove]
// Determines the folder name based on the operating system
const appFolder = process.platform === 'darwin' ? 'Resources' : 'resources'
// Build the path to the package.json file
fs.remove(argsv[0] === 'test' ? `./core/${data.remove}` : `./${appFolder}/app/core/${data.remove}`)
.then(() => {
// console.log(`Folder deleted successfully: ${folderToDelete}`);
})
.catch((error) => {
console.error(`Error deleting the folder: ${error}`)
})
saveVariablesToYAML(GlobalVariables)
}
// WebSocket connections handling
wss.on('connection', (ws) => {
ws.send(JSON.stringify({ fonts: fontOptions }))
ws.on('message', (message) => {
const data = JSON.parse(message)
// Determines the folder name based on the operating system
const appFolder = process.platform === 'darwin' ? 'Resources' : 'resources'
// Build the path to the package.json file
GlobalVariables = loadDataFromYAML(argsv[0] === 'test' ? './core/db.yaml' : `./${appFolder}/app/core/db.yaml`)
if (actions[data.action]) {
actions[data.action](ws, data)
}
ws.send(JSON.stringify(GlobalVariables))
})
})
// Configure static routes for HTML files
app.use(express.static(path.join(__dirname, 'core')))
// Configure route for timer/view
app.get('/:classElement/view', (req, res) => {
const classElement = req.params.classElement
res.sendFile(path.join(__dirname, `core/${classElement}/view/index.html`))
})
// Configure route for timer/control
app.get('/:classElement/control', (req, res) => {
const classElement = req.params.classElement
res.sendFile(path.join(__dirname, `core/${classElement}/control/index.html`))
})
app.get('/:classElement/control&:request', (req, res) => {
const classElement = req.params.classElement
const request = req.params.request
GlobalVariables = loadDataFromYAML((argsv[0] === 'test') ? './core/db.yaml' : `./${appFolder}/app/core/db.yaml`)
// Here you can check the value of 'request' and perform the corresponding action
if (request === 'start' && !classElement.startsWith('cdowntime') && !classElement.startsWith('time')) {
// Simulate pressing the "Start" button by sending a WebSocket message
startTimer(wss, GlobalVariables)
} else if (request === 'pause' && classElement.startsWith('crono')) {
// Simulate pressing the "Pause" button by sending a WebSocket message
pauseCrono(wss, GlobalVariables, classElement)
} else if (request === 'pause' && classElement.startsWith('cdown') && !classElement.startsWith('cdowntime')) {
// Simulate pressing the "Pause" button by sending a WebSocket message
pauseCdown(wss, GlobalVariables, classElement)
} else if (request === 'startpause' && classElement.startsWith('crono')) {
const status = GlobalVariables[classElement].status
if (status === 'started') {
pauseCrono(wss, GlobalVariables, classElement)
} else if (status === 'paused' || status === 'stopped') {
startTimer(wss, GlobalVariables, classElement)
}
} else if (request === 'startpause' && classElement.startsWith('cdown') && !classElement.startsWith('cdowntime')) {
const status = GlobalVariables[classElement].status
if (status === 'started') {
pauseCdown(wss, GlobalVariables, classElement)
} else if (status === 'paused' || status === 'stopped') {
startTimer(wss, GlobalVariables, classElement)
}
} else if (request === 'reset' && classElement.startsWith('crono')) {
// Simulate pressing the "Reset" button by sending a WebSocket message
resetCrono(wss, GlobalVariables, classElement)
} else if (request === 'reset' && classElement.startsWith('cdown') && !classElement.startsWith('cdowntime')) {
// Simulate pressing the "Reset" button by sending a WebSocket message
resetCdown(wss, GlobalVariables, classElement)
} else if (
!classElement.startsWith('time') &&
request.split('=')[0] === 'addtime'
) {
if (classElement.startsWith('cdowntime')) {
editTimeCdowntime(
wss,
GlobalVariables,
`+${request.split('=')[1]}`,
classElement
)
} else {
editTimeTimer(
wss,
GlobalVariables,
`+${request.split('=')[1]}`,
classElement
)
}
} else if (
!classElement.startsWith('time') &&
request.split('=')[0] === 'subtime'
) {
if (classElement.startsWith('cdowntime')) {
editTimeCdowntime(
wss,
GlobalVariables,
`-${request.split('=')[1]}`,
classElement
)
} else {
editTimeTimer(
wss,
GlobalVariables,
`-${request.split('=')[1]}`,
classElement
)
}
}
// Redirect back to the control page
res.sendFile(path.join(__dirname, `core/${classElement}/control/blank.html`))
})
// Other server configuration (port, etc.)
function openUrlWhenConfigExists () {
if (Config) {
const customBrowser = process.env.BROWSER // Get the value of the BROWSER environment variable
if (customBrowser) {
try {
// If the BROWSER environment variable is defined, try to open that browser
const url = `http://localhost:${PORT}`
switch (process.platform) {
case 'darwin': // macOS
exec(`open -a "${customBrowser}" ${url}`)
break
case 'win32': // Windows
exec(`start ${customBrowser} ${url}`)
break
case 'linux': // Linux
exec(`${customBrowser} ${url}`)
break
default:
console.error('Unsupported operating system.')
}
} catch {
open.open(`http://localhost:${PORT}`)
}
} else {
// If the BROWSER environment variable is not defined, open the default browser
open.open(`http://localhost:${PORT}`)
}
} else {
// Configuration doesn't exist yet, wait and check again in a moment
setTimeout(openUrlWhenConfigExists, 1000) // Wait for 1 second before checking again
}
}
// Start the server
const PORT = process.env.PORT || 5001
server.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`)
// Open the default browser at 'http://localhost:5001' after starting the server using 'open'.
openUrlWhenConfigExists()
})