-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSocketService.js
94 lines (73 loc) · 2.87 KB
/
SocketService.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
const socketIO = require('socket.io')
const ptyService = require('./PtyService.js')
const fs = require('fs')
const path = require('path')
const { defaultReadPath } = require('./config.js')
class SocketService {
constructor() {
this.socket = null;
this.pty = null
}
attachServer(server){
if(!server){
throw new Error('Server not found')
}
const io = socketIO(server, {cors:{origin:"*"}})
console.log('Created socket server. Waiting for client connection.');
// connection event - when client connects
io.on('connection', socket => {
console.log('client connect to socket : ', socket.id)
this.socket = socket;
// send files and dir from default read path / init path
let defaultReadResponse = fs.readdirSync(defaultReadPath).map(file => path.join(defaultReadPath,file))
this.socket.emit('dir_read_output', defaultReadResponse)
this.socket.on('disconnect', () => {
console.log('Disconnected Socket: ', socket.id)
})
// create a new pty service for client
this.pty = new ptyService(this.socket)
// attach event listener for socket.io
this.socket.on('input', input => {
// runs this listener when socket receives "input" events from socket.io client
// input event is emitted on client side when user types in terminal UI
this.pty.write(input)
})
// code related to reading files
this.socket.on('file_read', data => {
let readPath = data;
let readResponse;
if(readPath.includes('.')){
try {
readResponse = fs.readFileSync(readPath, 'utf8');
} catch (err) {
console.error(err);
}
}else{
readResponse = fs.readdirSync(readPath).map(file => path.join(readPath,file))
}
if(typeof readResponse === 'object'){
this.socket.emit('dir_read_output', readResponse)
}else{
let name = readPath.split('/')[readPath.split('/').length - 1];
let fileObj = {
name,
extName: name.split('.')[1],
path: readPath,
value: readResponse
}
this.socket.emit('file_read_output', fileObj)
}
})
// code related to writing files
this.socket.on('file_change', data => {
let file = data.path;
try{
fs.writeFileSync(file, data.value);
} catch(err){
console.log(err);
}
})
})
}
}
module.exports = SocketService;