-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathProgressReport3.aspx
More file actions
465 lines (398 loc) · 17.9 KB
/
Copy pathProgressReport3.aspx
File metadata and controls
465 lines (398 loc) · 17.9 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
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
460
461
462
463
464
465
<%@ Page Title="" Language="C#" MasterPageFile="~/masterPage1.Master" AutoEventWireup="true" CodeBehind="ProgressReport3.aspx.cs" Inherits="System.pages.ProgressReport3" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style>
#divThemes {
display: none;
margin: 15px 0;
}
</style>
<link id="linkThemeFile" href="/cssjs/MySqlBackup-Progress-Widget-Theme/steampunk.css" rel="stylesheet" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="div-center-framed-content">
<h1>Progress Report 3 - Web Socket</h1>
<button type="button" id="btnBackup">Backup</button>
<button type="button" id="btnRestore">Restore</button>
<button type="button" id="btnStop">Stop</button>
<input type="file" id="fileRestore" />
<button type="button" onclick="changeTheme();">Change Theme</button>
<div id="divThemes">
<button type="button" onclick="changeTheme('light');">Light</button>
<button type="button" onclick="changeTheme('dark');">Dark</button>
<button type="button" onclick="changeTheme('cyberpunk');">Cyberpunk</button>
<button type="button" onclick="changeTheme('retro');">Retro Terminal</button>
<button type="button" onclick="changeTheme('steampunk');">
Steampunk<br />
Victorian</button>
<button type="button" onclick="changeTheme('solarfire');">
Solar<br />
Fire</button>
<button type="button" onclick="changeTheme('hud');">
Futuristic<br />
HUD</button>
</div>
<div id="progress_bar_container">
<div id="progress_bar_indicator">
<span id="labelPercent" style="display: none;">0</span> %
</div>
</div>
<div class="div_task_status">
<table>
<tr>
<td>Task ID</td>
<td>
<span id="labelTaskId"></span>
</td>
</tr>
<tr>
<td>Time</td>
<td>Start: <span id="lableTimeStart"></span>
/
End: <span id="lableTimeEnd"></span>
/
Elapse: <span id="lableTimeElapse"></span>
</td>
</tr>
<tr>
<td>Task Status</td>
<td colspan="3">
<span id="labelTaskStatus"></span><span id="labelTaskMessage"></span>
</td>
</tr>
<tr>
<td>Backup File</td>
<td>Download: <span id="labelSqlFilename"></span>
<br />
SHA 256: <span id="labelSha256"></span>
</td>
</tr>
<tr>
<td>Current Table</td>
<td>
<span id="labelCurTableName"></span>(<span id="labelCurTableIndex"></span> / <span id="labelTotalTables"></span>)
</td>
</tr>
<tr>
<td>All Tables Rows</td>
<td>
<span id="labelCurrentRowsAllTables"></span>/ <span id="labelTotalRowsAllTable">0</span>
</td>
</tr>
<tr>
<td>Current Table Rows</td>
<td>
<span id="labelCurrentRowsCurrentTables"></span>/ <span id="labelTotalRowsCurrentTable">0</span>
</td>
</tr>
<tr>
<td>Total Bytes</td>
<td>
<span id="labelCurrentBytes"></span>/ <span id="lableTotalBytes"></span>
</td>
</tr>
</table>
</div>
</div>
<script>
let divThemes = document.querySelector("#divThemes");
let linkThemeFile = document.getElementById("linkThemeFile");
let fileRestore = document.querySelector("#fileRestore");
let labelSqlFilename = document.querySelector("#labelSqlFilename");
let labelSha256 = document.querySelector("#labelSha256");
let progress_bar_indicator = document.querySelector("#progress_bar_indicator");
let labelPercent = document.querySelector("#labelPercent");
let labelTaskId = document.querySelector("#labelTaskId");
let lableTimeStart = document.querySelector("#lableTimeStart");
let lableTimeEnd = document.querySelector("#lableTimeEnd");
let lableTimeElapse = document.querySelector("#lableTimeElapse");
let taskStatus = document.querySelector("#labelTaskStatus");
let taskMessage = document.querySelector("#labelTaskMessage");
let labelCurTableName = document.querySelector("#labelCurTableName");
let labelCurTableIndex = document.querySelector("#labelCurTableIndex");
let labelTotalTables = document.querySelector("#labelTotalTables");
let labelCurrentRowsAllTables = document.querySelector("#labelCurrentRowsAllTables");
let labelTotalRowsAllTable = document.querySelector("#labelTotalRowsAllTable");
let labelCurrentRowsCurrentTables = document.querySelector("#labelCurrentRowsCurrentTables");
let labelTotalRowsCurrentTable = document.querySelector("#labelTotalRowsCurrentTable");
let labelCurrentBytes = document.querySelector("#labelCurrentBytes");
let lableTotalBytes = document.querySelector("#lableTotalBytes");
// Routed URL API Endpoint
let urlApiEndpoint = "/apiProgressReport3";
function changeTheme(themename) {
if (themename)
linkThemeFile.href = `/cssjs/MySqlBackup-Progress-Widget-Theme/${themename}.css`;
divThemes.style.display = divThemes.style.display == "block" ? "none" : "block";
}
// Global variables
let currentTaskId = 0;
let webSocket = null;
let isConnecting = false;
// Button references (add to existing button declarations)
const btnBackup = document.querySelector('#btnBackup');
const btnRestore = document.querySelector('#btnRestore');
const btnStop = document.querySelector('#btnStop');
const buttons = { btnBackup, btnRestore, btnStop };
// Add event listeners
btnBackup.addEventListener('click', startBackup);
btnRestore.addEventListener('click', startRestore);
btnStop.addEventListener('click', stopTask);
async function startBackup() {
resetUIValues();
disableButtons();
try {
const formData = new FormData();
formData.append('action', 'start_backup');
const result = await fetch(urlApiEndpoint, {
method: 'POST',
body: formData,
credentials: 'include'
});
if (result.ok) {
let jsonObject = await result.json();
currentTaskId = jsonObject.TaskId;
showGoodMessage("Success", jsonObject.Status);
connectWebSocket(currentTaskId);
}
else {
let errMsg = await result.text();
showErrorMessage("Error", errMsg);
enableButtons();
}
} catch (err) {
showErrorMessage("Error", err.message);
enableButtons();
}
}
async function startRestore() {
resetUIValues();
if (!fileRestore.files || fileRestore.files.length === 0) {
showErrorMessage("Error", "Please select a file to restore");
return;
}
disableButtons();
try {
const formData = new FormData();
formData.append('action', 'start_restore');
formData.append('file', fileRestore.files[0]);
const result = await fetch(urlApiEndpoint, {
method: 'POST',
body: formData,
credentials: 'include'
});
if (result.ok) {
let jsonObject = await result.json();
currentTaskId = jsonObject.TaskId;
showGoodMessage("Success", jsonObject.Status);
connectWebSocket(currentTaskId);
}
else {
let errMsg = await result.text();
showErrorMessage("Error", errMsg);
enableButtons();
}
} catch (err) {
showErrorMessage("Error", err.message);
enableButtons();
}
}
async function stopTask() {
if (!currentTaskId || currentTaskId === 0) {
showErrorMessage("Error", "No active task to stop");
return;
}
try {
const formData = new FormData();
formData.append('action', 'stop');
formData.append('taskid', currentTaskId);
const result = await fetch(urlApiEndpoint, {
method: 'POST',
body: formData,
credentials: 'include'
});
if (result.ok) {
showGoodMessage("Success", "Stop request sent to server");
} else {
let errMsg = await result.text();
showErrorMessage("Error", errMsg);
}
} catch (err) {
showErrorMessage("Error", err.message);
}
}
// WebSocket Functions
function connectWebSocket(taskId) {
if (isConnecting || (webSocket && webSocket.readyState === WebSocket.OPEN)) {
return;
}
isConnecting = true;
// Determine WebSocket URL (ws:// or wss://)
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
const wsUrl = `${protocol}//${window.location.host}/${urlApiEndpoint}`;
try {
webSocket = new WebSocket(wsUrl);
webSocket.onopen = function () {
console.log('WebSocket connected');
isConnecting = false;
// Subscribe to task updates
webSocket.send(`subscribe:${taskId}`);
};
webSocket.onmessage = function (event) {
try {
const data = JSON.parse(event.data);
if (data.Error) {
showErrorMessage("WebSocket Error", data.Error);
return;
}
updateUIValues(data);
// Close WebSocket when task is completed
if (data.IsCompleted || data.HasError || data.IsCancelled) {
closeWebSocket();
}
} catch (err) {
console.error('Error parsing WebSocket message:', err);
}
};
webSocket.onclose = function (event) {
console.log('WebSocket closed:', event.code, event.reason);
isConnecting = false;
webSocket = null;
enableButtons();
};
webSocket.onerror = function (error) {
console.error('WebSocket error:', error);
isConnecting = false;
showErrorMessage("Connection Error", "WebSocket connection failed");
enableButtons();
};
} catch (err) {
console.error('Failed to create WebSocket:', err);
isConnecting = false;
showErrorMessage("Connection Error", "Failed to establish WebSocket connection");
enableButtons();
}
}
function closeWebSocket() {
if (webSocket) {
if (webSocket.readyState === WebSocket.OPEN) {
webSocket.close(1000, "Task completed");
}
webSocket = null;
}
isConnecting = false;
}
// UI Update Functions
function resetUIValues() {
labelTaskId.textContent = "--";
lableTimeStart.textContent = "---";
lableTimeEnd.textContent = "---";
lableTimeElapse.textContent = "---";
labelPercent.textContent = "0";
labelCurTableName.textContent = "---";
labelCurTableIndex.textContent = "--";
labelTotalTables.textContent = "--";
labelCurrentRowsAllTables.textContent = "--";
labelTotalRowsAllTable.textContent = "--";
labelCurrentRowsCurrentTables.textContent = "--";
labelTotalRowsCurrentTable.textContent = "--";
labelCurrentBytes.textContent = "--";
lableTotalBytes.textContent = "--";
// Reset progress bar
progress_bar_indicator.style.width = '0%';
labelPercent.style.display = "none";
// Reset status
taskStatus.textContent = "---";
taskMessage.textContent = "";
labelSqlFilename.textContent = "---";
labelSha256.textContent = "---";
// Reset status styling
const statusCell = taskStatus.closest('td');
if (statusCell) {
statusCell.className = "";
}
}
function updateUIValues(taskInfo) {
// Basic task information
labelTaskId.textContent = taskInfo.TaskId || "--";
lableTimeStart.textContent = taskInfo.TimeStartDisplay || "---";
lableTimeEnd.textContent = taskInfo.TimeEndDisplay || "---";
lableTimeElapse.textContent = taskInfo.TimeUsedDisplay || "---";
// Progress bar and percentage
const percent = taskInfo.PercentCompleted || 0;
labelPercent.style.display = "block";
labelPercent.textContent = percent;
progress_bar_indicator.style.width = percent + '%';
// Task status with color coding
const statusCell = taskStatus.closest('td');
if (taskInfo.HasError) {
taskStatus.textContent = "Error: ";
taskMessage.textContent = taskInfo.ErrorMsg || "";
if (statusCell) statusCell.className = "status-error";
}
else if (taskInfo.IsCancelled) {
taskStatus.textContent = "Cancelled";
taskMessage.textContent = "";
if (statusCell) statusCell.className = "status-error";
}
else if (taskInfo.IsCompleted) {
taskStatus.textContent = "Completed";
taskMessage.textContent = "";
if (statusCell) statusCell.className = "status-complete";
}
else {
taskStatus.textContent = `Running (${taskInfo.TaskTypeName})`;
taskMessage.textContent = "";
if (statusCell) statusCell.className = "status-running";
}
// File information
if (taskInfo.FileName && taskInfo.FileName.length > 0) {
if (taskInfo.FileDownloadWebPath) {
labelSqlFilename.innerHTML = `<a href='${taskInfo.FileDownloadWebPath}' target='_blank'>${taskInfo.FileName}</a>`;
} else {
labelSqlFilename.textContent = taskInfo.FileName;
}
} else {
labelSqlFilename.textContent = "---";
}
labelSha256.textContent = taskInfo.FileSha256 || "---";
// Task type specific data
if (taskInfo.TaskType === 1) {
// Backup
labelCurTableName.textContent = taskInfo.CurrentTableName || "---";
labelCurTableIndex.textContent = taskInfo.CurrentTableIndex || "--";
labelTotalTables.textContent = taskInfo.TotalTables || "--";
labelCurrentRowsAllTables.textContent = taskInfo.CurrentRows || "--";
labelTotalRowsAllTable.textContent = taskInfo.TotalRows || "--";
labelCurrentRowsCurrentTables.textContent = taskInfo.CurrentRowsCurrentTable || "--";
labelTotalRowsCurrentTable.textContent = taskInfo.TotalRowsCurrentTable || "--";
}
else if (taskInfo.TaskType === 2) {
// Restore
labelCurrentBytes.textContent = formatBytes(taskInfo.CurrentBytes) || "--";
lableTotalBytes.textContent = formatBytes(taskInfo.TotalBytes) || "--";
}
}
// Utility Functions
function formatBytes(bytes) {
if (!bytes || bytes === 0) return '0 B';
const k = 1024;
const sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}
function disableButtons() {
btnBackup.disabled = true;
btnRestore.disabled = true;
btnStop.disabled = false; // Keep stop button enabled
}
function enableButtons() {
btnBackup.disabled = false;
btnRestore.disabled = false;
btnStop.disabled = false;
currentTaskId = 0;
}
// Cleanup on page unload
window.addEventListener('beforeunload', function () {
closeWebSocket();
});
</script>
</asp:Content>