-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
613 lines (522 loc) · 17 KB
/
script.js
File metadata and controls
613 lines (522 loc) · 17 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
let fileSystem = {
'/': {
type: 'directory',
content: {
'home': {
type: 'directory',
content: {
'guest': {
type: 'directory',
content: {
'welcome.txt': {
type: 'file',
content: 'Welcome to Unix Terminal Simulator!\nCreated by 7OOT\n\nType "help" to see available commands.'
},
'documents': {
type: 'directory',
content: {}
}
}
}
}
},
'etc': {
type: 'directory',
content: {
'config.txt': {
type: 'file',
content: 'System configuration file'
}
}
},
'tmp': {
type: 'directory',
content: {}
}
}
}
};
let currentPath = '/home/guest';
let previousPath = '/home/guest';
let commandHistory = [];
let historyIndex = -1;
const output = document.getElementById('output');
const commandInput = document.getElementById('commandInput');
const prompt = document.getElementById('prompt');
const terminal = document.getElementById('terminal');
window.onload = function () {
printBanner();
updatePrompt();
commandInput.focus();
};
terminal.addEventListener('click', () => {
commandInput.focus();
});
commandInput.addEventListener('keydown', function (e) {
if (e.key === 'Enter') {
const command = commandInput.value.trim();
if (command) {
addToHistory(command);
executeCommand(command);
} else {
printPrompt();
}
commandInput.value = '';
historyIndex = commandHistory.length;
} else if (e.key === 'ArrowUp') {
e.preventDefault();
if (historyIndex > 0) {
historyIndex--;
commandInput.value = commandHistory[historyIndex];
}
} else if (e.key === 'ArrowDown') {
e.preventDefault();
if (historyIndex < commandHistory.length - 1) {
historyIndex++;
commandInput.value = commandHistory[historyIndex];
} else {
historyIndex = commandHistory.length;
commandInput.value = '';
}
} else if (e.key === 'Tab') {
e.preventDefault();
autocomplete();
}
});
function printBanner() {
const banner = `
_ _ __ _ _ _
/\\/\\ (_)_ __ (_) _\\ |__ ___| | |
/ \\| | '_ \\| \\ \\| '_ \\ / _ \\ | |
/ /\\/\\ \\ | | | | |\\ \\ | | | __/ | |
\\/ \\/_|_| |_|_\\__/_| |_|\\___|_|_|
by 7OOT
Type 'help' for available commands.
`;
printOutput(banner, 'banner');
}
function printOutput(text, className = '') {
const line = document.createElement('div');
line.className = 'output-line ' + className;
line.textContent = text;
output.appendChild(line);
scrollToBottom();
}
function printHTML(html, className = '') {
const line = document.createElement('div');
line.className = 'output-line ' + className;
line.innerHTML = html;
output.appendChild(line);
scrollToBottom();
}
function printPrompt() {
const line = document.createElement('div');
line.className = 'output-line';
line.innerHTML = `<span class="prompt">${prompt.textContent}</span>`;
output.appendChild(line);
scrollToBottom();
}
function scrollToBottom() {
terminal.scrollTop = terminal.scrollHeight;
}
function updatePrompt() {
const displayPath = currentPath.replace('/home/guest', '~');
prompt.textContent = `MiniShell:${displayPath}$`;
}
function addToHistory(command) {
commandHistory.push(command);
if (commandHistory.length > 100) {
commandHistory.shift();
}
}
function executeCommand(input) {
printHTML(`<span class="prompt">${prompt.textContent}</span> ${escapeHtml(input)}`);
const parts = input.trim().split(/\s+/);
const command = parts[0].toLowerCase();
const args = parts.slice(1);
switch (command) {
case 'help':
showHelp();
break;
case 'clear':
output.innerHTML = '';
break;
case 'ls':
listDirectory(args[0]);
break;
case 'pwd':
printWorkingDirectory();
break;
case 'cd':
changeDirectory(args[0]);
break;
case 'mkdir':
makeDirectory(args[0]);
break;
case 'rmdir':
removeDirectory(args[0]);
break;
case 'touch':
createFile(args[0]);
break;
case 'rm':
removeFile(args[0]);
break;
case 'cat':
displayFile(args[0]);
break;
case 'echo':
echoText(args);
break;
case 'date':
showDate();
break;
case 'history':
showHistory();
break;
case 'whoami':
printOutput('guest', 'info');
break;
case 'uname':
printOutput('Unix Terminal Simulator v1.0', 'info');
break;
case 'env':
showEnvironment();
break;
case '':
break;
default:
printOutput(`Command not found: ${command}. Type 'help' for available commands.`, 'error');
}
}
function showHelp() {
const helpText = `
<div class="help-section">
<div class="help-title">=== Available Commands ===</div>
<div class="help-command">ls [path] - List directory contents</div>
<div class="help-command">pwd - Print working directory</div>
<div class="help-command">cd <dir> - Change directory (cd ~ for home, cd - for previous, cd .. for parent)</div>
<div class="help-command">mkdir <dir> - Create a new directory</div>
<div class="help-command">rmdir <dir> - Remove an empty directory</div>
<div class="help-command">touch <file> - Create a new file</div>
<div class="help-command">rm <file> - Delete a file</div>
<div class="help-command">cat <file> - Display file contents</div>
<div class="help-command">echo <text> - Display a line of text</div>
<div class="help-command">date - Display current date and time</div>
<div class="help-command">history - Show command history</div>
<div class="help-command">whoami - Display current user</div>
<div class="help-command">uname - Display system information</div>
<div class="help-command">env - Show environment information</div>
<div class="help-command">clear - Clear the screen</div>
<div class="help-command">help - Show this help message</div>
</div>`;
printHTML(helpText);
}
function listDirectory(path) {
const targetPath = resolvePath(path || currentPath);
const dir = getNode(targetPath);
if (!dir) {
printOutput(`ls: cannot access '${path}': No such file or directory`, 'error');
return;
}
if (dir.type !== 'directory') {
printOutput(`ls: ${path}: Not a directory`, 'error');
return;
}
printOutput(`Directory: ${targetPath}`, 'info');
printOutput('----------------------------------------', 'info');
const entries = Object.keys(dir.content);
if (entries.length === 0) {
printOutput('(empty)', 'warning');
} else {
let dirCount = 0;
let fileCount = 0;
entries.sort().forEach(name => {
const item = dir.content[name];
if (item.type === 'directory') {
printOutput(`📁 ${name}/`, 'directory');
dirCount++;
} else {
const size = item.content ? item.content.length : 0;
printOutput(`📄 ${name} (${size} bytes)`, 'file');
fileCount++;
}
});
printOutput(`\nTotal: ${dirCount} directories, ${fileCount} files`, 'warning');
}
}
function printWorkingDirectory() {
printOutput(currentPath, 'info');
}
function changeDirectory(path) {
if (!path) {
currentPath = '/home/guest';
updatePrompt();
return;
}
if (path === '-') {
const temp = currentPath;
currentPath = previousPath;
previousPath = temp;
printOutput(`Changed to: ${currentPath}`, 'success');
updatePrompt();
return;
}
if (path === '~') {
currentPath = '/home/guest';
updatePrompt();
return;
}
const targetPath = resolvePath(path);
const dir = getNode(targetPath);
if (!dir) {
printOutput(`cd: ${path}: No such file or directory`, 'error');
return;
}
if (dir.type !== 'directory') {
printOutput(`cd: ${path}: Not a directory`, 'error');
return;
}
previousPath = currentPath;
currentPath = targetPath;
printOutput(`Changed to: ${currentPath}`, 'success');
updatePrompt();
}
function makeDirectory(name) {
if (!name) {
printOutput('mkdir: missing operand', 'error');
return;
}
const targetPath = resolvePath(name);
const parentPath = getParentPath(targetPath);
const dirName = getBaseName(targetPath);
const parent = getNode(parentPath);
if (!parent) {
printOutput(`mkdir: cannot create directory '${name}': No such file or directory`, 'error');
return;
}
if (parent.type !== 'directory') {
printOutput(`mkdir: cannot create directory '${name}': Not a directory`, 'error');
return;
}
if (parent.content[dirName]) {
printOutput(`mkdir: cannot create directory '${name}': File exists`, 'error');
return;
}
parent.content[dirName] = {
type: 'directory',
content: {}
};
printOutput(`Directory created: ${name}`, 'success');
}
function removeDirectory(name) {
if (!name) {
printOutput('rmdir: missing operand', 'error');
return;
}
const targetPath = resolvePath(name);
const parentPath = getParentPath(targetPath);
const dirName = getBaseName(targetPath);
const parent = getNode(parentPath);
if (!parent) {
printOutput(`rmdir: failed to remove '${name}': No such file or directory`, 'error');
return;
}
const dir = parent.content[dirName];
if (!dir) {
printOutput(`rmdir: failed to remove '${name}': No such file or directory`, 'error');
return;
}
if (dir.type !== 'directory') {
printOutput(`rmdir: failed to remove '${name}': Not a directory`, 'error');
return;
}
if (Object.keys(dir.content).length > 0) {
printOutput(`rmdir: failed to remove '${name}': Directory not empty`, 'error');
return;
}
delete parent.content[dirName];
printOutput(`Directory removed: ${name}`, 'success');
}
function createFile(name) {
if (!name) {
printOutput('touch: missing file operand', 'error');
return;
}
const targetPath = resolvePath(name);
const parentPath = getParentPath(targetPath);
const fileName = getBaseName(targetPath);
const parent = getNode(parentPath);
if (!parent) {
printOutput(`touch: cannot touch '${name}': No such file or directory`, 'error');
return;
}
if (parent.type !== 'directory') {
printOutput(`touch: cannot touch '${name}': Not a directory`, 'error');
return;
}
if (!parent.content[fileName]) {
parent.content[fileName] = {
type: 'file',
content: ''
};
printOutput(`File created: ${name}`, 'success');
} else {
printOutput(`File already exists: ${name}`, 'warning');
}
}
function removeFile(name) {
if (!name) {
printOutput('rm: missing operand', 'error');
return;
}
const targetPath = resolvePath(name);
const parentPath = getParentPath(targetPath);
const fileName = getBaseName(targetPath);
const parent = getNode(parentPath);
if (!parent) {
printOutput(`rm: cannot remove '${name}': No such file or directory`, 'error');
return;
}
const file = parent.content[fileName];
if (!file) {
printOutput(`rm: cannot remove '${name}': No such file or directory`, 'error');
return;
}
if (file.type === 'directory') {
printOutput(`rm: cannot remove '${name}': Is a directory`, 'error');
return;
}
delete parent.content[fileName];
printOutput(`File deleted: ${name}`, 'success');
}
function displayFile(name) {
if (!name) {
printOutput('cat: missing file operand', 'error');
return;
}
const targetPath = resolvePath(name);
const file = getNode(targetPath);
if (!file) {
printOutput(`cat: ${name}: No such file or directory`, 'error');
return;
}
if (file.type === 'directory') {
printOutput(`cat: ${name}: Is a directory`, 'error');
return;
}
if (!file.content || file.content.length === 0) {
printOutput('(File is empty)', 'warning');
} else {
printOutput(`\n--- ${name} ---`, 'info');
const lines = file.content.split('\n');
lines.forEach((line, index) => {
printHTML(`<span class="line-number">${(index + 1).toString().padStart(3, ' ')}</span>${escapeHtml(line)}`);
});
printOutput('--- End of file ---\n', 'info');
}
}
function echoText(args) {
const text = args.join(' ');
printOutput(text);
}
function showDate() {
const now = new Date();
printOutput(`Current date/time: ${now.toString()}`, 'info');
}
function showHistory() {
if (commandHistory.length === 0) {
printOutput('No command history yet.', 'warning');
return;
}
printOutput('\n=== Command History ===', 'info');
commandHistory.forEach((cmd, index) => {
printHTML(`<span class="command-history">${(index + 1).toString().padStart(4, ' ')}: ${escapeHtml(cmd)}</span>`);
});
printOutput('');
}
function showEnvironment() {
printOutput('\n=== Environment Information ===', 'info');
printOutput('USER: guest', 'warning');
printOutput('HOME: /home/guest', 'warning');
printOutput('SHELL: /bin/bash', 'warning');
printOutput('PWD: ' + currentPath, 'warning');
printOutput('TERM: xterm-256color', 'warning');
printOutput('');
}
function autocomplete() {
const input = commandInput.value;
const parts = input.split(' ');
const lastPart = parts[parts.length - 1];
if (parts.length === 1) {
const commands = ['help', 'clear', 'ls', 'pwd', 'cd', 'mkdir', 'rmdir', 'touch', 'rm', 'cat', 'echo', 'date', 'history', 'whoami', 'uname', 'env'];
const matches = commands.filter(cmd => cmd.startsWith(lastPart));
if (matches.length === 1) {
commandInput.value = matches[0] + ' ';
} else if (matches.length > 1) {
printOutput('\n' + matches.join(' '), 'info');
printPrompt();
}
} else {
const dir = getNode(currentPath);
if (dir && dir.type === 'directory') {
const entries = Object.keys(dir.content);
const matches = entries.filter(name => name.startsWith(lastPart));
if (matches.length === 1) {
parts[parts.length - 1] = matches[0];
commandInput.value = parts.join(' ') + ' ';
} else if (matches.length > 1) {
printOutput('\n' + matches.join(' '), 'info');
printPrompt();
}
}
}
}
function resolvePath(path) {
if (!path) return currentPath;
if (path.startsWith('/')) {
return normalizePath(path);
}
if (path === '~') {
return '/home/guest';
}
return normalizePath(currentPath + '/' + path);
}
function normalizePath(path) {
const parts = path.split('/').filter(p => p && p !== '.');
const result = [];
for (const part of parts) {
if (part === '..') {
result.pop();
} else {
result.push(part);
}
}
return '/' + result.join('/');
}
function getNode(path) {
if (path === '/') return fileSystem['/'];
const parts = path.split('/').filter(p => p);
let current = fileSystem['/'];
for (const part of parts) {
if (!current.content || !current.content[part]) {
return null;
}
current = current.content[part];
}
return current;
}
function getParentPath(path) {
const parts = path.split('/').filter(p => p);
parts.pop();
return '/' + parts.join('/');
}
function getBaseName(path) {
const parts = path.split('/').filter(p => p);
return parts[parts.length - 1];
}
function escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}