You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
631 B
15 lines
631 B
'use strict';
|
|
const moment = require('moment')
|
|
|
|
module.exports = async function factory (app, opts) {
|
|
|
|
app.socket.on('connection', async (socket) => {
|
|
console.info('WEB_SOCKET token:' + socket.handshake.query.token + ' 已连接:id ' + socket.id + ' 时间:' + moment(socket.handshake.time).format());
|
|
|
|
socket.on('disconnecting', async (reason) => {
|
|
const connectSeconds = moment().diff(moment(socket.handshake.time), 'seconds')
|
|
|
|
console.info('WEB_SOCKET token:' + socket.handshake.query.token + ' 已断开连接:' + reason + ' 连接时长:' + connectSeconds + 's');
|
|
})
|
|
})
|
|
}
|
|
|