This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
RaceBot/server/server.go
2024-08-28 13:14:10 +07:00

61 lines
1.1 KiB
Go

package server
import (
"encoding/json"
"fmt"
"log"
"net"
"git.rouggy.com/rouggy/RaceBot/internal/domain"
"git.rouggy.com/rouggy/RaceBot/models"
)
type Server struct {
listenAddr string
listener net.Listener
Conn net.Conn
}
func NewServer(listenAddr string) *Server {
return &Server{
listenAddr: listenAddr,
}
}
func (s *Server) Start(cfg *domain.Config) {
tcpAddr, _ := net.ResolveTCPAddr("tcp", cfg.Host+":"+cfg.Port)
s.listener, _ = net.ListenTCP("tcp", tcpAddr)
log.Printf("[Server] Server is running on %v:%v", cfg.Host, cfg.Port)
for {
s.Conn, _ = s.listener.Accept()
go s.handleRequest()
}
}
func (s *Server) handleRequest() {
r := models.NewRace()
d := json.NewDecoder(s.Conn)
err := d.Decode(&r)
log.Println(r, err)
//we make a buffer to hold the incoming data.
buf := make([]byte, 1024)
// Read the incoming connection into the buffer.
reqLen, err := s.Conn.Read(buf)
if err != nil {
fmt.Println("Error reading:", err.Error())
}
// Print the message to the console.
log.Println(string(buf[:reqLen]))
// Close the connection when you're done with it.
s.Conn.Close()
}