pronounsfu/backend/main.go

96 lines
2.1 KiB
Go
Raw Normal View History

2022-05-02 08:19:37 -07:00
package main
import (
"context"
2022-07-05 13:21:28 -07:00
"io/fs"
2022-05-02 08:19:37 -07:00
"net/http"
"os"
"os/signal"
"strings"
2022-05-02 08:19:37 -07:00
"codeberg.org/u1f320/pronouns.cc/backend/log"
"codeberg.org/u1f320/pronouns.cc/backend/server"
"codeberg.org/u1f320/pronouns.cc/frontend"
2022-07-05 13:21:28 -07:00
"emperror.dev/errors"
2022-05-02 08:19:37 -07:00
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
2022-05-12 07:41:32 -07:00
_ "github.com/joho/godotenv/autoload"
2022-05-02 08:19:37 -07:00
)
func main() {
port := ":" + os.Getenv("PORT")
s, err := server.New()
if err != nil {
log.Fatalf("Error creating server: %v", err)
}
// mount api routes
mountRoutes(s)
r := chi.NewMux()
setupFrontend(r, s)
2022-05-02 08:19:37 -07:00
e := make(chan error)
// run server in another goroutine (for gracefully shutting down, see below)
go func() {
e <- http.ListenAndServe(port, r)
2022-05-02 08:19:37 -07:00
}()
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt)
defer stop()
log.Infof("API server running at %v!", port)
select {
case <-ctx.Done():
log.Info("Interrupt signal received, shutting down...")
s.DB.Close()
return
case err := <-e:
log.Fatalf("Error running server: %v", err)
}
}
func setupFrontend(r chi.Router, s *server.Server) {
r.Use(middleware.Recoverer)
2022-07-05 13:21:28 -07:00
r.Get("/@{user}", nil)
r.Get("/@{user}/{member}", nil)
r.Mount("/api", s.Router)
r.NotFound(func(w http.ResponseWriter, r *http.Request) {
2022-07-05 13:21:28 -07:00
data, err := frontend.Data.ReadFile("dist" + r.URL.Path)
if err != nil {
if errors.Is(err, fs.ErrNotExist) {
data, err = frontend.Data.ReadFile("dist/index.html")
if err != nil && !errors.Is(err, fs.ErrNotExist) {
log.Errorf("serving frontend file: %v", err)
http.Error(w, "Internal server error", http.StatusInternalServerError)
return
}
http.Error(w, "Not found", http.StatusNotFound)
return
}
log.Errorf("serving frontend file: %v", err)
http.Error(w, "Internal server error", http.StatusInternalServerError)
return
}
if strings.HasSuffix(r.URL.Path, ".js") {
w.Header().Add("content-type", "application/javascript")
} else if strings.HasSuffix(r.URL.Path, ".css") {
w.Header().Add("content-type", "text/css")
} else {
w.Header().Add("content-type", "text/html")
}
w.Write(data)
})
}