grain/main.go

92 lines
2.3 KiB
Go
Raw Normal View History

2024-07-19 22:07:04 +00:00
package main
import (
"fmt"
2024-08-06 19:35:52 +00:00
app "grain/app/src"
"grain/app/src/api"
"grain/app/src/routes"
2024-07-30 15:27:38 +00:00
"grain/config"
2024-07-31 15:56:55 +00:00
configTypes "grain/config/types"
relay "grain/server"
"grain/server/db"
"grain/server/utils"
2024-07-31 15:28:41 +00:00
"log"
"net/http"
2024-08-01 11:54:59 +00:00
"time"
2024-07-19 22:07:04 +00:00
"golang.org/x/net/websocket"
)
func main() {
2024-07-31 18:41:48 +00:00
utils.EnsureFileExists("config.yml", "app/static/examples/config.example.yml")
utils.EnsureFileExists("relay_metadata.json", "app/static/examples/relay_metadata.example.json")
2024-07-31 15:28:41 +00:00
cfg, err := config.LoadConfig("config.yml")
if err != nil {
log.Fatal("Error loading config: ", err)
}
2024-07-31 15:28:41 +00:00
client, err := db.InitDB(cfg)
if err != nil {
log.Fatal("Error initializing database: ", err)
}
2024-07-31 15:28:41 +00:00
defer db.DisconnectDB(client)
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-08-09 12:55:30 +00:00
err = utils.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-08-01 14:48:24 +00:00
mux.HandleFunc("/", ListenAndServe)
2024-08-06 19:35:52 +00:00
mux.HandleFunc("/import-results", api.ImportEvents)
mux.HandleFunc("/import-events", routes.ImportEvents)
2024-08-01 14:48:24 +00:00
mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("app/static"))))
mux.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {
2024-07-31 19:54:42 +00:00
http.ServeFile(w, r, "app/static/img/favicon.ico")
2024-08-01 14:48:24 +00:00
})
2024-07-30 13:58:20 +00:00
return mux
}
2024-07-31 15:56:55 +00:00
func startServer(config *configTypes.ServerConfig, mux *http.ServeMux) {
2024-08-01 11:54:59 +00:00
server := &http.Server{
Addr: config.Server.Port,
Handler: mux,
2024-08-08 12:40:23 +00:00
ReadTimeout: time.Duration(config.Server.ReadTimeout) * time.Second,
WriteTimeout: time.Duration(config.Server.WriteTimeout) * time.Second,
IdleTimeout: time.Duration(config.Server.IdleTimeout) * time.Second,
2024-08-01 11:54:59 +00:00
}
fmt.Printf("Server is running on http://localhost%s\n", config.Server.Port)
2024-08-01 11:54:59 +00:00
err := server.ListenAndServe()
if err != nil {
fmt.Println("Error starting server:", err)
}
}
2024-08-08 12:40:23 +00:00
2024-08-01 14:43:17 +00:00
var wsServer = &websocket.Server{
2024-08-08 12:40:23 +00:00
Handshake: func(config *websocket.Config, r *http.Request) error {
// Skip origin check
return nil
},
Handler: websocket.Handler(relay.WebSocketHandler),
2024-08-01 14:43:17 +00:00
}
2024-07-25 13:57:24 +00:00
func ListenAndServe(w http.ResponseWriter, r *http.Request) {
2024-08-08 12:40:23 +00:00
if r.Header.Get("Upgrade") == "websocket" {
wsServer.ServeHTTP(w, r)
} else if r.Header.Get("Accept") == "application/nostr+json" {
2024-08-09 12:55:30 +00:00
utils.RelayInfoHandler(w, r)
2024-08-08 12:40:23 +00:00
} else {
app.RootHandler(w, r)
}
}