grain/main.go

70 lines
1.5 KiB
Go
Raw Normal View History

2024-07-19 22:07:04 +00:00
package main
import (
"fmt"
"log"
"net/http"
2024-07-30 15:27:38 +00:00
"grain/config"
2024-07-23 17:30:29 +00:00
"grain/relay"
"grain/relay/db"
2024-07-23 20:40:39 +00:00
"grain/web"
2024-07-19 22:07:04 +00:00
"golang.org/x/net/websocket"
)
func main() {
2024-07-30 15:51:05 +00:00
cfg, err := config.LoadConfiguration()
if err != nil {
log.Fatal("Error loading config: ", err)
}
2024-07-30 15:51:05 +00:00
err = db.InitializeDatabase(cfg)
if err != nil {
log.Fatal("Error initializing database: ", err)
}
defer db.DisconnectDB()
2024-07-20 12:41:47 +00:00
2024-07-30 15:51:05 +00:00
config.SetupRateLimiter(cfg)
config.SetupSizeLimiter(cfg)
2024-07-30 13:58:20 +00:00
2024-07-30 15:51:05 +00:00
err = web.LoadRelayMetadataJSON()
2024-07-30 13:58:20 +00:00
if err != nil {
log.Fatal("Failed to load relay metadata: ", err)
}
mux := setupRoutes()
2024-07-30 15:27:38 +00:00
startServer(cfg, mux)
2024-07-30 13:58:20 +00:00
}
func setupRoutes() *http.ServeMux {
2024-07-23 20:40:39 +00:00
mux := http.NewServeMux()
2024-07-25 13:57:24 +00:00
mux.HandleFunc("/", ListenAndServe)
2024-07-23 20:40:39 +00:00
mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("web/static"))))
mux.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "web/static/img/favicon.ico")
})
2024-07-30 13:58:20 +00:00
return mux
}
2024-07-30 15:27:38 +00:00
func startServer(config *config.Config, mux *http.ServeMux) {
fmt.Printf("Server is running on http://localhost%s\n", config.Server.Port)
2024-07-30 13:58:20 +00:00
err := http.ListenAndServe(config.Server.Port, mux)
if err != nil {
fmt.Println("Error starting server:", err)
}
}
2024-07-25 13:57:24 +00:00
func ListenAndServe(w http.ResponseWriter, r *http.Request) {
if r.Header.Get("Upgrade") == "websocket" {
websocket.Handler(func(ws *websocket.Conn) {
relay.WebSocketHandler(ws)
}).ServeHTTP(w, r)
2024-07-28 20:25:20 +00:00
} else if r.Header.Get("Accept") == "application/nostr+json" {
web.RelayInfoHandler(w, r)
2024-07-25 13:57:24 +00:00
} else {
web.RootHandler(w, r)
}
}