mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-19 09:06:14 +00:00
fix: align streaming_token with Bose protocol to avoid 502 errors
This commit is contained in:
@@ -204,9 +204,20 @@ func (s *Server) HandleMargeStreamingToken(w http.ResponseWriter, _ *http.Reques
|
||||
// In a real production environment, this would be a JWT or similar signed token.
|
||||
// Some speakers might expect a specific format; we use a distinctive prefix
|
||||
// to indicate it's a locally generated token.
|
||||
token := "st-local-token-" + strconv.FormatInt(time.Now().Unix(), 10)
|
||||
w.Header().Set("Authorization", "Bearer "+token)
|
||||
tokenValue := "st-local-token-" + strconv.FormatInt(time.Now().Unix(), 10)
|
||||
bearerToken := models.NewBearerToken(tokenValue)
|
||||
|
||||
data, err := xml.Marshal(bearerToken)
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
w.Header().Set("Content-Type", "application/vnd.bose.streaming-v1.2+xml")
|
||||
w.Header().Set("Authorization", bearerToken.GetAuthHeader())
|
||||
w.WriteHeader(http.StatusOK)
|
||||
_, _ = w.Write([]byte(xml.Header))
|
||||
_, _ = w.Write(data)
|
||||
}
|
||||
|
||||
// HandleMargeCustomerSupport handles Marge customer support uploads.
|
||||
|
||||
@@ -471,10 +471,23 @@ func TestMargeAdvancedFeatures(t *testing.T) {
|
||||
t.Errorf("Expected status OK, got %v", res.Status)
|
||||
}
|
||||
|
||||
contentType := res.Header.Get("Content-Type")
|
||||
if contentType != "application/vnd.bose.streaming-v1.2+xml" {
|
||||
t.Errorf("Invalid content type: %s", contentType)
|
||||
}
|
||||
|
||||
token := res.Header.Get("Authorization")
|
||||
if !strings.HasPrefix(token, "Bearer st-local-token-") {
|
||||
t.Errorf("Invalid token header: %s", token)
|
||||
}
|
||||
|
||||
body, _ := io.ReadAll(res.Body)
|
||||
if !strings.Contains(string(body), "<bearertoken") {
|
||||
t.Errorf("Response body missing <bearertoken: %s", body)
|
||||
}
|
||||
if !strings.Contains(string(body), token) {
|
||||
t.Errorf("Response body missing token value: %s", body)
|
||||
}
|
||||
})
|
||||
|
||||
t.Run("CustomerSupport", func(t *testing.T) {
|
||||
|
||||
@@ -279,6 +279,7 @@ func (m *Manager) checkIsMigrated(summary *MigrationSummary, deviceIP string) {
|
||||
// Case 2: /etc/hosts + Trust CA Migration
|
||||
// Check if /etc/hosts contains redirections for Bose domains
|
||||
client := m.NewSSH(deviceIP)
|
||||
|
||||
hostsContent, err := client.Run("cat /etc/hosts")
|
||||
if err == nil {
|
||||
boseDomains := []string{
|
||||
|
||||
Reference in New Issue
Block a user