mirror of
https://github.com/skidoodle/spotify-ws
synced 2026-04-28 11:17:40 +02:00
refactor: clean up and improve codebase
This commit is contained in:
+5
-2
@@ -1,5 +1,8 @@
|
|||||||
# Required (Spotify API credentials)
|
# Required (Spotify API credentials, https://gist.github.com/skidoodle/9a9dc9c8802434f7fc0da94ebe4dba18)
|
||||||
CLIENT_ID=
|
CLIENT_ID=
|
||||||
CLIENT_SECRET=
|
CLIENT_SECRET=
|
||||||
REFRESH_TOKEN=
|
REFRESH_TOKEN=
|
||||||
# LOG_LEVEL=DEBUG (optional)
|
# Optional
|
||||||
|
# LOG_LEVEL=DEBUG|WARN|ERROR
|
||||||
|
# ALLOWED_ORIGINS=http://localhost:3000
|
||||||
|
# SERVER_PORT=3000
|
||||||
|
|||||||
+4
-3
@@ -1,14 +1,15 @@
|
|||||||
FROM golang:alpine AS builder
|
FROM golang:1.22.4 AS builder
|
||||||
ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64
|
ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY go.mod go.sum ./
|
COPY go.mod go.sum ./
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN go build -o spotify-ws .
|
RUN go build -ldflags="-s -w" -o spotify-ws .
|
||||||
|
|
||||||
FROM gcr.io/distroless/static:nonroot
|
FROM gcr.io/distroless/static:nonroot
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=builder /app/spotify-ws .
|
COPY --from=builder --chown=nonroot:nonroot /app/spotify-ws .
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s CMD curl --fail http://localhost:3000/health || exit 1
|
||||||
USER nonroot:nonroot
|
USER nonroot:nonroot
|
||||||
CMD ["./spotify-ws"]
|
CMD ["./spotify-ws"]
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
services:
|
||||||
|
spotify-ws:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
container_name: spotify-ws
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
environment:
|
||||||
|
- REFRESH_TOKEN=${REFRESH_TOKEN}
|
||||||
|
- CLIENT_SECRET=${CLIENT_SECRET}
|
||||||
|
- CLIENT_ID=${CLIENT_ID}
|
||||||
|
#- LOG_LEVEL=DEBUG
|
||||||
|
#- ALLOWED_ORIGINS=http://localhost:3000
|
||||||
|
#- SERVER_PORT=3000
|
||||||
+11
-3
@@ -6,7 +6,15 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
environment:
|
environment:
|
||||||
- REFRESH_TOKEN=
|
- REFRESH_TOKEN=${REFRESH_TOKEN}
|
||||||
- CLIENT_SECRET=
|
- CLIENT_SECRET=${CLIENT_SECRET}
|
||||||
- CLIENT_ID=
|
- CLIENT_ID=${CLIENT_ID}
|
||||||
#- LOG_LEVEL=DEBUG
|
#- LOG_LEVEL=DEBUG
|
||||||
|
# ALLOWED_ORIGINS=http://localhost:3000
|
||||||
|
# SERVER_PORT=3000
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 3
|
||||||
|
start_period: 5s
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
@@ -17,216 +18,336 @@ import (
|
|||||||
"golang.org/x/oauth2"
|
"golang.org/x/oauth2"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
// Configuration holds application settings
|
||||||
serverPort = ":3000"
|
type Configuration struct {
|
||||||
tokenRefreshURL = "https://accounts.spotify.com/api/token"
|
ServerPort string
|
||||||
apiRetryDelay = 3 * time.Second
|
AllowedOrigins []string
|
||||||
heartbeatDelay = 3 * time.Second
|
LogLevel logrus.Level
|
||||||
)
|
Spotify struct {
|
||||||
|
ClientID string
|
||||||
|
ClientSecret string
|
||||||
|
RefreshToken string
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
config Configuration
|
||||||
clients = make(map[*websocket.Conn]bool)
|
clients = make(map[*websocket.Conn]bool)
|
||||||
clientsMutex sync.RWMutex
|
clientsMutex sync.RWMutex
|
||||||
broadcast = make(chan *spotify.CurrentlyPlaying)
|
broadcast = make(chan *spotify.CurrentlyPlaying)
|
||||||
connect = make(chan *websocket.Conn)
|
connectChan = make(chan *websocket.Conn)
|
||||||
disconnect = make(chan *websocket.Conn)
|
|
||||||
|
|
||||||
upgrader = websocket.Upgrader{
|
upgrader = websocket.Upgrader{
|
||||||
CheckOrigin: func(r *http.Request) bool {
|
|
||||||
return true
|
|
||||||
},
|
|
||||||
HandshakeTimeout: 10 * time.Second,
|
HandshakeTimeout: 10 * time.Second,
|
||||||
ReadBufferSize: 1024,
|
ReadBufferSize: 1024,
|
||||||
WriteBufferSize: 1024,
|
WriteBufferSize: 1024,
|
||||||
}
|
}
|
||||||
|
|
||||||
spotifyClient spotify.Client
|
spotifyClient spotify.Client
|
||||||
tokenSource oauth2.TokenSource
|
tokenSource oauth2.TokenSource
|
||||||
config *oauth2.Config
|
lastState struct {
|
||||||
lastPlayingState *bool
|
sync.RWMutex
|
||||||
lastTrackState *spotify.CurrentlyPlaying
|
track *spotify.CurrentlyPlaying
|
||||||
|
playing bool
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
defaultPort = ":3000"
|
||||||
|
tokenRefreshURL = "https://accounts.spotify.com/api/token"
|
||||||
|
apiRetryDelay = 3 * time.Second
|
||||||
|
heartbeatInterval = 3 * time.Second
|
||||||
|
writeTimeout = 10 * time.Second
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
logrus.SetFormatter(&logrus.TextFormatter{ForceColors: true})
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
loadEnv()
|
defer cancel()
|
||||||
|
|
||||||
config = &oauth2.Config{
|
initializeApplication()
|
||||||
ClientID: os.Getenv("CLIENT_ID"),
|
initializeSpotifyClient()
|
||||||
ClientSecret: os.Getenv("CLIENT_SECRET"),
|
|
||||||
Endpoint: oauth2.Endpoint{
|
|
||||||
TokenURL: tokenRefreshURL,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
token := &oauth2.Token{RefreshToken: os.Getenv("REFRESH_TOKEN")}
|
|
||||||
tokenSource = config.TokenSource(context.Background(), token)
|
|
||||||
|
|
||||||
httpClient := oauth2.NewClient(context.Background(), tokenSource)
|
router := http.NewServeMux()
|
||||||
spotifyClient = spotify.NewClient(httpClient)
|
router.HandleFunc("/", connectionHandler)
|
||||||
|
router.HandleFunc("/health", healthHandler)
|
||||||
http.HandleFunc("/", connectionHandler)
|
|
||||||
http.HandleFunc("/health", healthHandler)
|
|
||||||
|
|
||||||
stop := make(chan os.Signal, 1)
|
|
||||||
signal.Notify(stop, os.Interrupt, syscall.SIGTERM)
|
|
||||||
|
|
||||||
go trackFetcher()
|
|
||||||
go messageHandler()
|
|
||||||
go connectionManager()
|
|
||||||
|
|
||||||
server := &http.Server{
|
server := &http.Server{
|
||||||
Addr: serverPort,
|
Addr: config.ServerPort,
|
||||||
|
Handler: router,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
go trackFetcher(ctx)
|
||||||
|
go messageHandler(ctx)
|
||||||
|
go connectionManager(ctx)
|
||||||
|
|
||||||
|
startServer(server, ctx)
|
||||||
|
handleShutdown(server, cancel)
|
||||||
|
}
|
||||||
|
|
||||||
|
func initializeApplication() {
|
||||||
|
logrus.SetFormatter(&logrus.TextFormatter{
|
||||||
|
FullTimestamp: true,
|
||||||
|
TimestampFormat: time.RFC3339,
|
||||||
|
ForceColors: true,
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := loadConfiguration(); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
upgrader.CheckOrigin = func(r *http.Request) bool {
|
||||||
|
if len(config.AllowedOrigins) == 0 {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
origin := r.Header.Get("Origin")
|
||||||
|
for _, allowed := range config.AllowedOrigins {
|
||||||
|
if origin == allowed {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadConfiguration() error {
|
||||||
|
_ = godotenv.Load()
|
||||||
|
|
||||||
|
required := map[string]*string{
|
||||||
|
"CLIENT_ID": &config.Spotify.ClientID,
|
||||||
|
"CLIENT_SECRET": &config.Spotify.ClientSecret,
|
||||||
|
"REFRESH_TOKEN": &config.Spotify.RefreshToken,
|
||||||
|
}
|
||||||
|
|
||||||
|
for key, ptr := range required {
|
||||||
|
value := os.Getenv(key)
|
||||||
|
if value == "" {
|
||||||
|
return fmt.Errorf("missing required environment variable: %s", key)
|
||||||
|
}
|
||||||
|
*ptr = value
|
||||||
|
}
|
||||||
|
|
||||||
|
config.ServerPort = defaultPort
|
||||||
|
if port := os.Getenv("SERVER_PORT"); port != "" {
|
||||||
|
config.ServerPort = ":" + strings.TrimLeft(port, ":")
|
||||||
|
}
|
||||||
|
|
||||||
|
config.AllowedOrigins = strings.Split(os.Getenv("ALLOWED_ORIGINS"), ",")
|
||||||
|
|
||||||
|
logLevel := strings.ToLower(os.Getenv("LOG_LEVEL"))
|
||||||
|
switch logLevel {
|
||||||
|
case "debug":
|
||||||
|
config.LogLevel = logrus.DebugLevel
|
||||||
|
case "warn":
|
||||||
|
config.LogLevel = logrus.WarnLevel
|
||||||
|
case "error":
|
||||||
|
config.LogLevel = logrus.ErrorLevel
|
||||||
|
default:
|
||||||
|
config.LogLevel = logrus.InfoLevel
|
||||||
|
}
|
||||||
|
logrus.SetLevel(config.LogLevel)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func initializeSpotifyClient() {
|
||||||
|
token := &oauth2.Token{RefreshToken: config.Spotify.RefreshToken}
|
||||||
|
oauthConfig := &oauth2.Config{
|
||||||
|
ClientID: config.Spotify.ClientID,
|
||||||
|
ClientSecret: config.Spotify.ClientSecret,
|
||||||
|
Endpoint: oauth2.Endpoint{TokenURL: tokenRefreshURL},
|
||||||
|
}
|
||||||
|
|
||||||
|
tokenSource = oauthConfig.TokenSource(context.Background(), token)
|
||||||
|
spotifyClient = spotify.NewClient(oauth2.NewClient(context.Background(), tokenSource))
|
||||||
|
}
|
||||||
|
|
||||||
|
func startServer(server *http.Server, _ context.Context) {
|
||||||
go func() {
|
go func() {
|
||||||
logrus.Infof("Server started on %s", serverPort)
|
logrus.Infof("Server starting on %s", config.ServerPort)
|
||||||
if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
||||||
logrus.Fatalf("Server failed: %v", err)
|
logrus.Fatalf("Server failed to start: %v", err)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
<-stop
|
func handleShutdown(server *http.Server, cancel context.CancelFunc) {
|
||||||
logrus.Info("Shutting down server...")
|
sigChan := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM)
|
||||||
|
<-sigChan
|
||||||
|
|
||||||
|
logrus.Info("Initiating graceful shutdown...")
|
||||||
|
cancel()
|
||||||
|
|
||||||
|
ctx, cancelTimeout := context.WithTimeout(context.Background(), 5*time.Second)
|
||||||
|
defer cancelTimeout()
|
||||||
|
|
||||||
clientsMutex.Lock()
|
clientsMutex.Lock()
|
||||||
for client := range clients {
|
for client := range clients {
|
||||||
_ = client.Close()
|
client.Close()
|
||||||
}
|
}
|
||||||
clientsMutex.Unlock()
|
clientsMutex.Unlock()
|
||||||
|
|
||||||
if err := server.Shutdown(context.Background()); err != nil {
|
if err := server.Shutdown(ctx); err != nil {
|
||||||
logrus.Fatalf("Server shutdown failed: %v", err)
|
logrus.Errorf("Server shutdown error: %v", err)
|
||||||
}
|
|
||||||
logrus.Info("Server exited cleanly")
|
|
||||||
}
|
|
||||||
|
|
||||||
func loadEnv() {
|
|
||||||
if err := godotenv.Load(); err != nil {
|
|
||||||
logrus.Warn("Could not load .env file, falling back to system environment")
|
|
||||||
}
|
|
||||||
|
|
||||||
requiredVars := []string{"CLIENT_ID", "CLIENT_SECRET", "REFRESH_TOKEN"}
|
|
||||||
for _, v := range requiredVars {
|
|
||||||
if os.Getenv(v) == "" {
|
|
||||||
logrus.Fatalf("Missing required environment variable: %s", v)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
logLevel := strings.ToLower(os.Getenv("LOG_LEVEL"))
|
|
||||||
if logLevel == "debug" {
|
|
||||||
logrus.SetLevel(logrus.DebugLevel)
|
|
||||||
logrus.Info("Log level set to DEBUG")
|
|
||||||
} else {
|
|
||||||
logrus.SetLevel(logrus.InfoLevel)
|
|
||||||
logrus.Info("Log level set to INFO")
|
|
||||||
}
|
}
|
||||||
|
logrus.Info("Server shutdown complete")
|
||||||
}
|
}
|
||||||
|
|
||||||
func connectionHandler(w http.ResponseWriter, r *http.Request) {
|
func connectionHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("X-Source", "github.com/skidoodle/spotify-ws")
|
||||||
ws, err := upgrader.Upgrade(w, r, nil)
|
ws, err := upgrader.Upgrade(w, r, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Errorf("Failed to upgrade to WebSocket: %v", err)
|
logrus.Errorf("WebSocket upgrade failed: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
connect <- ws
|
|
||||||
|
|
||||||
clientsMutex.RLock()
|
// Add client to the pool
|
||||||
if lastTrackState != nil {
|
clientsMutex.Lock()
|
||||||
if err := ws.WriteJSON(lastTrackState); err != nil {
|
clients[ws] = true
|
||||||
logrus.Errorf("Failed to send initial state to client: %v", err)
|
clientsMutex.Unlock()
|
||||||
|
|
||||||
|
logrus.Debugf("New client connected: %s", ws.RemoteAddr())
|
||||||
|
|
||||||
|
// Send initial state if available
|
||||||
|
sendInitialState(ws)
|
||||||
|
|
||||||
|
// Start monitoring the connection
|
||||||
|
go monitorConnection(ws)
|
||||||
|
}
|
||||||
|
|
||||||
|
func connectionManager(ctx context.Context) {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return
|
||||||
|
case client := <-connectChan:
|
||||||
|
// Add client to the pool
|
||||||
|
clientsMutex.Lock()
|
||||||
|
clients[client] = true
|
||||||
|
clientsMutex.Unlock()
|
||||||
|
|
||||||
|
logrus.Debugf("New client connected: %s", client.RemoteAddr())
|
||||||
|
|
||||||
|
// Send initial state if available
|
||||||
|
sendInitialState(client)
|
||||||
|
|
||||||
|
// Start monitoring the connection
|
||||||
|
go monitorConnection(client)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
clientsMutex.RUnlock()
|
}
|
||||||
|
|
||||||
|
func monitorConnection(ws *websocket.Conn) {
|
||||||
defer func() {
|
defer func() {
|
||||||
disconnect <- ws
|
// Clean up the connection
|
||||||
|
clientsMutex.Lock()
|
||||||
|
delete(clients, ws)
|
||||||
|
clientsMutex.Unlock()
|
||||||
|
|
||||||
|
// Close the WebSocket connection
|
||||||
|
ws.Close()
|
||||||
|
logrus.Debugf("Client disconnected: %s", ws.RemoteAddr())
|
||||||
}()
|
}()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
if _, _, err := ws.ReadMessage(); err != nil {
|
// Set a read deadline to detect dead connections
|
||||||
|
ws.SetReadDeadline(time.Now().Add(30 * time.Second))
|
||||||
|
|
||||||
|
// Attempt to read a message (even though we don't expect any)
|
||||||
|
_, _, err := ws.NextReader()
|
||||||
|
if err != nil {
|
||||||
|
// Check if the error is a normal closure
|
||||||
|
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseNormalClosure) {
|
||||||
|
logrus.Debugf("Client disconnected unexpectedly: %v", err)
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func connectionManager() {
|
func sendInitialState(client *websocket.Conn) {
|
||||||
|
lastState.RLock()
|
||||||
|
defer lastState.RUnlock()
|
||||||
|
|
||||||
|
if lastState.track != nil {
|
||||||
|
if err := client.WriteJSON(lastState.track); err != nil {
|
||||||
|
logrus.Errorf("Failed to send initial state: %v", err)
|
||||||
|
client.Close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func messageHandler(ctx context.Context) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case client := <-connect:
|
case <-ctx.Done():
|
||||||
clientsMutex.Lock()
|
return
|
||||||
clients[client] = true
|
case msg := <-broadcast:
|
||||||
clientsMutex.Unlock()
|
broadcastToClients(msg)
|
||||||
logrus.Debugf("New client connected: %v", client.RemoteAddr())
|
|
||||||
case client := <-disconnect:
|
|
||||||
clientsMutex.Lock()
|
|
||||||
if _, ok := clients[client]; ok {
|
|
||||||
delete(clients, client)
|
|
||||||
logrus.Debugf("Client disconnected: %v", client.RemoteAddr())
|
|
||||||
}
|
|
||||||
clientsMutex.Unlock()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func messageHandler() {
|
func broadcastToClients(msg *spotify.CurrentlyPlaying) {
|
||||||
for msg := range broadcast {
|
clientsMutex.RLock()
|
||||||
clientsMutex.RLock()
|
defer clientsMutex.RUnlock()
|
||||||
for client := range clients {
|
|
||||||
if err := client.WriteJSON(msg); err != nil {
|
for client := range clients {
|
||||||
logrus.Errorf("Failed to send message to client: %v", err)
|
client.SetWriteDeadline(time.Now().Add(writeTimeout))
|
||||||
disconnect <- client
|
if err := client.WriteJSON(msg); err != nil {
|
||||||
}
|
logrus.Debugf("Broadcast failed: %v", err)
|
||||||
|
client.Close()
|
||||||
}
|
}
|
||||||
clientsMutex.RUnlock()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func trackFetcher() {
|
func trackFetcher(ctx context.Context) {
|
||||||
|
ticker := time.NewTicker(heartbeatInterval)
|
||||||
|
defer ticker.Stop()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
current, err := fetchCurrentlyPlaying()
|
select {
|
||||||
if err != nil {
|
case <-ctx.Done():
|
||||||
logrus.Errorf("Error fetching currently playing track: %v", err)
|
return
|
||||||
time.Sleep(apiRetryDelay)
|
case <-ticker.C:
|
||||||
continue
|
fetchAndBroadcastState()
|
||||||
}
|
}
|
||||||
|
|
||||||
if current != nil {
|
|
||||||
clientsMutex.Lock()
|
|
||||||
lastTrackState = current
|
|
||||||
clientsMutex.Unlock()
|
|
||||||
|
|
||||||
if lastPlayingState == nil || *lastPlayingState != current.Playing {
|
|
||||||
logrus.Debugf("Playback state changed: is_playing=%v", current.Playing)
|
|
||||||
broadcast <- current
|
|
||||||
lastPlayingState = ¤t.Playing
|
|
||||||
}
|
|
||||||
|
|
||||||
if current.Playing {
|
|
||||||
broadcast <- current
|
|
||||||
time.Sleep(heartbeatDelay)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
time.Sleep(heartbeatDelay)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func fetchCurrentlyPlaying() (*spotify.CurrentlyPlaying, error) {
|
func fetchAndBroadcastState() {
|
||||||
current, err := spotifyClient.PlayerCurrentlyPlaying()
|
current, err := spotifyClient.PlayerCurrentlyPlaying()
|
||||||
if err != nil && err.Error() == "token expired" {
|
if err != nil {
|
||||||
logrus.Warn("Spotify token expired, refreshing token...")
|
logrus.Errorf("Failed to fetch playback state: %v", err)
|
||||||
newToken, err := tokenSource.Token()
|
time.Sleep(apiRetryDelay)
|
||||||
if err != nil {
|
return
|
||||||
return nil, err
|
}
|
||||||
}
|
|
||||||
httpClient := oauth2.NewClient(context.Background(), oauth2.StaticTokenSource(newToken))
|
updateState(current)
|
||||||
spotifyClient = spotify.NewClient(httpClient)
|
}
|
||||||
return spotifyClient.PlayerCurrentlyPlaying()
|
|
||||||
|
func updateState(current *spotify.CurrentlyPlaying) {
|
||||||
|
lastState.Lock()
|
||||||
|
defer lastState.Unlock()
|
||||||
|
|
||||||
|
if current == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
stateChanged := lastState.track == nil ||
|
||||||
|
lastState.track.Item.ID != current.Item.ID ||
|
||||||
|
lastState.playing != current.Playing
|
||||||
|
|
||||||
|
lastState.track = current
|
||||||
|
lastState.playing = current.Playing
|
||||||
|
|
||||||
|
if stateChanged || current.Playing {
|
||||||
|
broadcast <- current
|
||||||
}
|
}
|
||||||
return current, err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func healthHandler(w http.ResponseWriter, r *http.Request) {
|
func healthHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("Content-Type", "text/plain")
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
_, _ = w.Write([]byte("OK"))
|
w.Write([]byte("OK"))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ docker run -p 3000:3000 spotify-ws:main
|
|||||||
```sh
|
```sh
|
||||||
git clone https://github.com/skidoodle/spotify-ws
|
git clone https://github.com/skidoodle/spotify-ws
|
||||||
cd spotify-ws
|
cd spotify-ws
|
||||||
go get
|
|
||||||
go run main.go
|
go run main.go
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -30,17 +29,19 @@ go run main.go
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
services:
|
services:
|
||||||
spotify-ws:
|
spotify-ws:
|
||||||
container_name: spotify-ws
|
image: ghcr.io/skidoodle/spotify-ws:main
|
||||||
image: 'ghcr.io/skidoodle/spotify-ws:main'
|
container_name: spotify-ws
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
ports:
|
||||||
- REFRESH_TOKEN=
|
- "3000:3000"
|
||||||
- CLIENT_SECRET=
|
environment:
|
||||||
- CLIENT_ID=
|
- REFRESH_TOKEN=${REFRESH_TOKEN}
|
||||||
#- LOG_LEVEL=debug
|
- CLIENT_SECRET=${CLIENT_SECRET}
|
||||||
ports:
|
- CLIENT_ID=${CLIENT_ID}
|
||||||
- '3000:3000'
|
#- LOG_LEVEL=DEBUG
|
||||||
|
#- ALLOWED_ORIGINS=http://localhost:3000
|
||||||
|
#- SERVER_PORT=3000
|
||||||
```
|
```
|
||||||
|
|
||||||
### Docker run
|
### Docker run
|
||||||
@@ -51,10 +52,9 @@ docker run \
|
|||||||
--name=spotify-ws \
|
--name=spotify-ws \
|
||||||
--restart=unless-stopped \
|
--restart=unless-stopped \
|
||||||
-p 3000:3000 \
|
-p 3000:3000 \
|
||||||
-e CLIENT_ID= \
|
-e CLIENT_ID=${CLIENT_ID} \
|
||||||
-e CLIENT_SECRET= \
|
-e CLIENT_SECRET=${CLIENT_SECRET} \
|
||||||
-e REFRESH_TOKEN= \
|
-e REFRESH_TOKEN=${REFRESH_TOKEN} \
|
||||||
#-e LOG_LEVEL=DEBUG \
|
|
||||||
ghcr.io/skidoodle/spotify-ws:main
|
ghcr.io/skidoodle/spotify-ws:main
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user