代码拉取完成,页面将自动刷新
/*
Nging is a toolbox for webmasters
Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package server
import (
"github.com/admpub/nging/application/handler"
"github.com/admpub/sockjs-go/sockjs"
"github.com/admpub/websocket"
"github.com/webx-top/com"
"github.com/webx-top/echo"
)
func InfoBySockJS(c sockjs.Session) error {
send := make(chan interface{})
//push(writer)
go func() {
for {
b, err := com.JSONEncode(<-send)
if err != nil {
handler.WebSocketLogger.Error(`Push error: `, err.Error())
continue
}
message := com.Bytes2str(b)
if err := c.Send(message); err != nil {
handler.WebSocketLogger.Error(`Push error: `, err.Error())
return
}
}
}()
//echo
exec := func(session sockjs.Session) error {
for {
message, err := session.Recv()
if err != nil {
return err
}
switch message {
case `ping`: // Net/Memory/CPU
send <- realTimeStatus
case `pingAll`:
info := &DynamicInformation{}
send <- info.Init()
}
}
}
err := exec(c)
if err != nil {
handler.WebSocketLogger.Error(err)
}
close(send)
return nil
}
func InfoByWebsocket(c *websocket.Conn, ctx echo.Context) error {
send := make(chan interface{})
//push(writer)
go func() {
for {
message := <-send
if err := c.WriteJSON(message); err != nil {
handler.WebSocketLogger.Error(`Push error: `, err.Error())
return
}
}
}()
//echo
exec := func(conn *websocket.Conn) error {
for {
_, message, err := conn.ReadMessage()
if err != nil {
return err
}
switch com.Bytes2str(message) {
case `ping`: // Net/Memory/CPU
send <- realTimeStatus
case `pingAll`:
info := &DynamicInformation{}
send <- info.Init()
}
}
}
err := exec(c)
if err != nil {
handler.WebSocketLogger.Error(err)
}
close(send)
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。