forked from chanbakjsd/TerraOceanPlugin
43 lines
747 B
Go
43 lines
747 B
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/gorilla/websocket"
|
|
)
|
|
|
|
var upgrader = websocket.Upgrader{
|
|
ReadBufferSize: 1024,
|
|
WriteBufferSize: 1024,
|
|
}
|
|
|
|
func newConnection(w http.ResponseWriter, r *http.Request) {
|
|
ws, err := upgrader.Upgrade(w, r, nil)
|
|
if err != nil {
|
|
fmt.Fprint(w, "You must use the websocket protocol to connect to this endpoint.", err)
|
|
}
|
|
defer ws.Close()
|
|
|
|
newSession(ws)
|
|
for {
|
|
_, p, err := ws.ReadMessage()
|
|
if err != nil {
|
|
disconnectSession(ws)
|
|
break
|
|
}
|
|
|
|
msg := string(p)
|
|
handleIncomingMessage(ws, msg)
|
|
}
|
|
}
|
|
|
|
func StartServer(port int) {
|
|
hostLocation := ":" + strconv.Itoa(port)
|
|
http.HandleFunc("/ws", newConnection)
|
|
|
|
log.Fatal(http.ListenAndServe(hostLocation, nil))
|
|
}
|