GoScrobble/cmd/go-scrobble/main.go
Daniel Mason 5fd9d41069
- Login flow working..
- Jellyfin scrobble working
- Returns scrobbles via API for authed users /api/v1/user/{uuid}/scrobble
- Add redis handler + funcs
- Move middleware to pass in uuid as needed
2021-03-29 20:58:43 +13:00

57 lines
1.0 KiB
Go

package main
import (
"fmt"
"log"
"os"
"strconv"
"strings"
"time"
"github.com/joho/godotenv"
"gitlab.com/idanoo/go-scrobble/internal/goscrobble"
)
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
goscrobble.InitDb()
defer goscrobble.CloseDbConn()
// Boot up Redis connection
goscrobble.InitRedis()
defer goscrobble.CloseRedisConn()
// Boot up API webserver \o/
goscrobble.HandleRequests(port)
}