-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
191 lines (181 loc) · 7.22 KB
/
index.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
var http = require('http');
var fs = require('fs');
var socketIO=require("socket.io");
// var io = require('socket.io')(http);
// 引入进来的是模块,模块中有方法,下一步就是使用方法
// Node.js一个最主要的特点:执行的基本都是函数
/////////// http /////////////
function todata(data){//对接收到的参数进行url解码
console.log(decodeURIComponent(data))
return decodeURIComponent(data)
}
// 创建服务
var myServer = http.createServer(function(req,res){
res.setHeader('Access-Control-Allow-Origin', '*');
// 服务器返回数据
function back(obj){
res.end(JSON.stringify(obj));
}
if(req.url=='/'){
console.log('首页加载')
fs.readFile('index.html', function(err, data) {
res.writeHead(200, { "Content-type": "text/html;charset=utf-8" });
res.write(data);
res.end()
});
}
if(req.url=='/getImage'){
fs.readFile('background.png', function(err, data) {
res.writeHead(200, { "Content-type": "binary" });
res.end(data);
});
}
})
//服务端等着客户端请求需要做一个监听。通过创建的服务。
//监听
myServer.listen('3000',function(err){
if(err){
console.log(err);
throw err;
}
console.log("文件服务器已开启。端口号为:3000");
})
/////////// http /////////////
/////////// net /////////////
const io = socketIO(myServer, {
// ...
})
io.on("connection", (socket) => {
console.log('socket建立连接')
fs.readFile('./users.txt','utf-8',(err,users)=>{
console.log(users.toString())
io.emit("parter",users.toString());
})
fs.readFile('./content.txt','utf-8',(err,allRecord)=>{
io.emit("getMsg",allRecord.toString());
})
socket.on('logintime',(data)=>{
console.log(data)
fs.readFile('./record.txt','utf-8',(err,record)=>{
if(!err){
if(record.toString().includes(data.nick)){
// console.log('当前时间戳'+Date.now())
// console.log(record.toString())
record.toString().split(',').forEach(s=>{
if(s.split(':')[0]==data.nick){
var reRecord=record.toString().replace(s.split(':')[1],data.time)
// console.log(reRecord)
fs.writeFile('record.txt','',(err)=>{
if(!err){
fs.writeFile('record.txt',reRecord,(err)=>{
if(!err){
console.log('旧昵称'+data.nick+'登录时间更新成功!')
}
})
}
})
}
})
}else{
fs.writeFile('record.txt',record.toString()+data.nick+':'+data.time+',',(err)=>{
if(!err){
console.log('新昵称'+data.nick+'登录时间更新成功!')
}
})
}
}else{
console.log('登录记录record.txt文件不存在')
}
})
})
socket.on('login',(data)=>{
var nick=data.nick
fs.readFile('./users.txt','utf-8',(err,users)=>{
if(!err){
console.log(users.toString())
console.log(nick)
if(!users.toString().includes(nick)){
fs.writeFile('users.txt',users.toString()+nick+',',(err)=>{
if(!err){
console.log('新备注添加成功!')
}
fs.readFile('./users.txt','utf-8',(err,users)=>{
console.log(users.toString())
io.emit("parter",users.toString());
})
})
}
}else{
console.log('用户列表users.txt文件不存在')
}
})
})
socket.on('download',(data)=>{
console.log(data.content)
fs.readFile('./files.txt','utf-8',(err,files)=>{
console.log(files.toString().split('&').filter(s=>!!s))
files.toString().split('&').filter(s=>!!s).forEach((s)=>{
if(JSON.parse(s.trim()).download==data.content){
socket.emit("file",JSON.parse(s.trim()));
}
})
})
})
socket.on('send',(data)=>{
if(!data.download){
fs.readFile('./content.txt','utf-8',(err,content)=>{
if(!err){
var all=content.toString()+JSON.stringify(data)+'-'
var temparr=all.split('-').filter(s=>!!s)
console.log(temparr)
var needsave=[]
if(temparr.length>30){
needsave=temparr.splice(temparr.length-30,temparr.length-1)
}else{
needsave=temparr
}
fs.writeFile('content.txt',needsave.join('-')+'-',(err)=>{
if(!err){
console.log('聊天记录更新成功')
fs.readFile('./content.txt','utf-8',(err,allRecord)=>{
io.emit("getMsg",allRecord.toString());
})
}
})
}else{
console.log('聊天记录content.txt文件不存在!')
}
})
}else{
console.log(data)
fs.readFile('./files.txt','utf-8',(err,files)=>{
if(!err){
fs.writeFile('files.txt',files.toString()+JSON.stringify(data)+'&',(err)=>{
if(!err){
console.log('上传文件成功!')
fs.readFile('./content.txt','utf-8',(err,content)=>{
if(!err){
data.content=data.download
data.download=true
fs.writeFile('content.txt',content.toString()+JSON.stringify(data)+'-',(err)=>{
if(!err){
console.log('文件记录成功!')
fs.readFile('./content.txt','utf-8',(err,allRecord)=>{
io.emit("getMsg",allRecord.toString());
})
}
})
}
})
}else{
console.log(err)
}
})
}else{
console.log('文件目录files.txt不存在!')
}
})
}
})
})
/////////// net /////////////