-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.js
291 lines (237 loc) · 7.64 KB
/
app.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
var createError = require("http-errors")
var express = require("express")
var path = require("path")
// var cookieParser = require('cookie-parser');
// var logger = require('morgan');
var indexRouter = require("./app/index")
var debug = require("debug")("myapp:server")
var http = require("http")
// const logger = { info: msg => console.log(msg) }
// const loggerCls = clsProxify("clsKeyLogger", logger)
const createNamespace = require("cls-hooked").createNamespace
const pino = require("pino")
const uuidv4 = require("uuid/v4")
const clsProxifyNamespace = createNamespace("app")
const clsProxify = (clsKey, targetToProxify) => {
const proxified = new Proxy(targetToProxify, {
get(target, property, receiver) {
target = clsProxifyNamespace.get(clsKey) || target
return Reflect.get(target, property, receiver)
},
construct(target, args) {
target = clsProxifyNamespace.get(clsKey) || target
return Reflect.construct(target, args)
}
})
return proxified
}
const logger = pino()
const app = express()
const createClsProxy = (req) => {
const headerRequestID = req.headers.traceparent
const loggerProxy = {
info: (msg) => `${headerRequestID}: ${msg}`
}
// this value will be accesible in CLS by key 'clsKeyLogger'
// it will be used as a proxy for `loggerCls`
return loggerProxy
}
// app.use(clsMiddleware)
const clsProxifyExpressMiddleware = (clsKey, createClsProxy) => (req, res, next) => {
clsProxifyNamespace.bindEmitter(req)
clsProxifyNamespace.bindEmitter(res)
const traceID = uuidv4()
console.log(traceID, "traceID")
const loggerWithTraceId = logger.child({ traceID })
clsProxifyNamespace.run(() => {
const proxyValue = createClsProxy(req, res)
clsProxifyNamespace.set("clsKeyLogger", proxyValue)
next()
})
}
const loggerCls = new Proxy(logger, {
get(target, property, receiver) {
// Fallback to our original logger if there is no child logger in CLS
target = clsProxifyNamespace.get("loggerCls") || target
return Reflect.get(target, property, receiver)
}
})
const clsMiddleware = (req, res, next) => {
// req and res are event emitters. We want to access CLS context inside of their event callbacks
clsProxifyNamespace.bind(req)
clsProxifyNamespace.bind(res)
const traceID = uuidv4()
const loggerWithTraceId = logger.child({ traceID })
clsProxifyNamespace.run(() => {
clsProxifyNamespace.set("loggerCls", loggerWithTraceId)
next()
})
}
//
// app.use(clsProxifyExpressMiddleware("clsKeyLogger", createClsProxy))
app.use(clsMiddleware)
app.get("/test", (req, res) => {
loggerCls.info("My message!")
res.json({
code: 1,
data: {
}
})
// Logs `${headerRequestID}: My message!` into the console
// Say, we send GET /test with header 'Traceparent' set to 12345
// It's going to log '12345: My message!'s
// If it doesn't find anything in CLS by key 'clsKeyLogger' it uses the original `logger` and logs 'My message!'
})
const fs = require("fs")
const Busboy = require("busboy")
// const sideThread = require("./sideThread")
// sideThread.parseJSAsync().then(res => {
// console.log("object", res)
// })
// sideThread()
// console.log(sideThread, typeof sideThread)
const assert = require("assert")
//使用express框架自带的static中间件,用来管理静态资源
app.use("/", express.static(__dirname + "/"))
//上传文件必须是post方式并且需要指定上传的路径
const allowHeaders =
"Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With, Authorization"
app.all("*", function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*")
//Access-Control-Allow-Headers ,可根据浏览器的F12查看,把对应的粘贴在这里就行
res.header("Access-Control-Allow-Headers", allowHeaders)
res.header("Access-Control-Allow-Methods", "*")
res.header("Content-Type", "application/json;charset=utf-8")
// 设置服务器支持的所有跨域请求的方法
res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
if (req.method.toLowerCase() == 'options') {
console.log('get options');
res.send(200); // 让options尝试请求快速结束
} else {
next();
}
})
// view engine setup
// app.set('views', path.join(__dirname, 'views'));
// app.set('view engine', 'jade');
// app.use(logger('dev'));
app.use(express.json())
app.use(
express.urlencoded({
extended: false
})
)
// app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public")))
app.use(indexRouter)
// catch 404 and forward to error handler
app.use(function (req, res, next) {
next(createError(404))
})
app.use(function (req, res, next) {
res.io = io
next()
})
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message
res.locals.error = req.app.get("env") === "development" ? err : {}
// render the error page
res.status(err.status || 500)
res.render("error")
})
// #!/usr/bin/env node
/**
* Module dependencies.
*/
// var app = require('../app');
/**
* Get port from environment and store in Express.
*/
var port = normalizePort(process.env.PORT || "3001")
app.set("port sdf", port)
/**
* Create HTTP server.
*/
var server = http.createServer(app)
/**
* Listen on provided port, on all network interfaces.
*/
console.log("Express app started on port " + port)
let io = require("socket.io")(server, {
path: "/test",
serveClient: false,
// below are engine.IO options
pingInterval: 10000,
pingTimeout: 5000,
cookie: false
})
console.log("port", port)
server.listen(port)
server.on("error", onError)
server.on("listening", onListening)
/**
* Normalize a port into a number, string, or false.
*/
function normalizePort(val) {
var port = parseInt(val, 10)
if (isNaN(port)) {
// named pipe
return val
}
if (port >= 0) {
// port number
return port
}
return false
}
/**
* Event listener for HTTP server "error" event.
*/
function onError(error) {
if (error.syscall !== "listen") {
throw error
}
var bind = typeof port === "string" ? "Pipe " + port : "Port " + port
// handle specific listen errors with friendly messages
switch (error.code) {
case "EACCES":
console.error(bind + " requires elevated privileges")
process.exit(1)
break
case "EADDRINUSE":
console.error(bind + " is already in use")
process.exit(1)
break
default:
throw error
}
}
/**
* Event listener for HTTP server "listening" event.
*/
function onListening() {
var addr = server.address()
var bind = typeof addr === "string" ? "pipe " + addr : "port " + addr.port
debug("Listening on " + bind)
}
// sideThread()
app.get("/", (req, res) => {
console.log("kaishi socket jintiang", res.io)
res.io.on("connection", function (socket) {
// socket相关监听都要放在这个回调里
console.log("a user connected")
// socket.on("disconnect", function () {
// console.log("a user go out")
// })
// socket.on("msg", function (obj) {
// //延迟3s返回信息给客户端
// setTimeout(function () {
// console.log("the websokcet message is" + obj)
// io.emit("msg", obj)
// }, 3000)
// })
})
res.send("Hello World!")
})