mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
53 lines
1002 B
Go
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)
|
|
}
|