GoScrobble/cmd/go-scrobble/main.go
Daniel Mason 08f0cb6c80
Add MBID
Add ability to set custom port
2021-03-27 19:34:08 +13:00

53 lines
1002 B
Go

package main
import (
"fmt"
"log"
"os"
"strconv"
"strings"
"time"
"git.m2.nz/go-scrobble/internal/goscrobble"
"github.com/joho/godotenv"
)
func main() {
fmt.Println("Starting goscrobble")
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
// Store JWT secret
goscrobble.JwtToken = []byte(os.Getenv("JWT_SECRET"))
// Store JWT expiry
goscrobble.JwtExpiry = 86400
jwtExpiryStr := os.Getenv("JWT_EXPIRY")
if jwtExpiryStr != "" {
i, err := strconv.ParseFloat(jwtExpiryStr, 64)
if err != nil {
panic("Invalid JWT_EXPIRY value")
}
goscrobble.JwtExpiry = time.Duration(i) * time.Second
}
// Ignore reverse proxies
goscrobble.ReverseProxies = strings.Split(os.Getenv("REVERSE_PROXIES"), ",")
// Store port
port := os.Getenv("PORT")
if port == "" {
port = "42069"
}
// Boot up DB connection for life of application
goscrobble.InitDb()
defer goscrobble.CloseDbConn()
// Boot up API webserver \o/
goscrobble.HandleRequests(port)
}