mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 08:36:13 +00:00
- Refactored soundtouch-cli from monolithic main.go to modular command structure - Added urfave/cli/v2 dependency for better CLI organization - Created separate command files for all SoundTouch features: * cmd_discover.go - Device discovery commands * cmd_info.go - Device information commands * cmd_volume.go - Volume control commands * cmd_playback.go - Playback control commands * cmd_source.go - Source selection commands * cmd_bass.go - Bass control commands (NEW) * cmd_balance.go - Balance control commands (NEW) * cmd_clock.go - Clock/time management commands (NEW) * cmd_network.go - Network information commands (NEW) * cmd_zone.go - Multi-room zone management commands (NEW) * common.go - Shared utilities and client setup - Fixed flag conflicts by using --verbose instead of -v and removing -h alias from --host - Implemented comprehensive CLI with organized subcommands and consistent UX - Added proper help documentation and parameter validation - Reduced golangci-lint issues by 70% (108+ → 32) - Added package comments to new command files Breaking changes: - CLI now uses subcommands instead of flat flags - Old: soundtouch-cli -host 192.168.1.100 -volume - New: soundtouch-cli volume get --host 192.168.1.100 Examples: - soundtouch-cli discover devices --all - soundtouch-cli volume set --host 192.168.1.100 --level 50 - soundtouch-cli bass get --host 192.168.1.100 - soundtouch-cli clock set --host 192.168.1.100 --time '14:30' - soundtouch-cli zone create --host 192.168.1.100 --members 192.168.1.101,192.168.1.102
290 lines
8.1 KiB
Go
290 lines
8.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/user_account/bose-soundtouch/pkg/models"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// getClockTime retrieves the current clock time from the device
|
|
func getClockTime(c *cli.Context) error {
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader("Getting clock time", clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
clockTime, err := client.GetClockTime()
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to get clock time: %v", err))
|
|
return err
|
|
}
|
|
|
|
if timeObj, err := clockTime.GetTime(); err == nil {
|
|
fmt.Printf("Current time: %02d:%02d\n", timeObj.Hour(), timeObj.Minute())
|
|
fmt.Printf("UTC time: %s\n", timeObj.Format("2006-01-02 15:04:05 MST"))
|
|
} else {
|
|
fmt.Printf("Time value: %s\n", clockTime.Value)
|
|
}
|
|
|
|
if clockTime.GetUTC() > 0 {
|
|
utcTime := time.Unix(clockTime.GetUTC(), 0)
|
|
fmt.Printf("UTC timestamp: %d (%s)\n", clockTime.GetUTC(), utcTime.Format("2006-01-02 15:04:05 MST"))
|
|
}
|
|
|
|
if clockTime.GetZone() != "" {
|
|
fmt.Printf("Time zone: %s\n", clockTime.GetZone())
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// setClockTime sets the clock time on the device
|
|
func setClockTime(c *cli.Context) error {
|
|
timeStr := c.String("time")
|
|
clientConfig := GetClientConfig(c)
|
|
|
|
// Parse time string (HH:MM format)
|
|
var hour, minute int
|
|
var err error
|
|
|
|
if timeStr == "now" {
|
|
now := time.Now()
|
|
hour = now.Hour()
|
|
minute = now.Minute()
|
|
PrintDeviceHeader(fmt.Sprintf("Setting clock time to current time (%02d:%02d)", hour, minute), clientConfig.Host, clientConfig.Port)
|
|
} else {
|
|
hour, minute, err = parseTimeString(timeStr)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Invalid time format. Use HH:MM or 'now': %v", err))
|
|
return err
|
|
}
|
|
PrintDeviceHeader(fmt.Sprintf("Setting clock time to %02d:%02d", hour, minute), clientConfig.Host, clientConfig.Port)
|
|
}
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
// Create a time object for today with the specified hour and minute
|
|
now := time.Now()
|
|
targetTime := time.Date(now.Year(), now.Month(), now.Day(), hour, minute, 0, 0, now.Location())
|
|
|
|
clockTimeRequest := models.NewClockTimeRequest(targetTime)
|
|
err = client.SetClockTime(clockTimeRequest)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to set clock time: %v", err))
|
|
return err
|
|
}
|
|
|
|
PrintSuccess(fmt.Sprintf("Clock time set to %02d:%02d", hour, minute))
|
|
return nil
|
|
}
|
|
|
|
// setClockTimeNow sets the clock time to the current system time
|
|
func setClockTimeNow(c *cli.Context) error {
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader("Setting clock time to current system time", clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
err = client.SetClockTimeNow()
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to set clock time: %v", err))
|
|
return err
|
|
}
|
|
|
|
now := time.Now()
|
|
PrintSuccess(fmt.Sprintf("Clock time set to current time (%02d:%02d)", now.Hour(), now.Minute()))
|
|
return nil
|
|
}
|
|
|
|
// getClockDisplay retrieves the current clock display settings
|
|
func getClockDisplay(c *cli.Context) error {
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader("Getting clock display settings", clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
clockDisplay, err := client.GetClockDisplay()
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to get clock display: %v", err))
|
|
return err
|
|
}
|
|
|
|
fmt.Println("Clock Display Settings:")
|
|
fmt.Printf(" Enabled: %t\n", clockDisplay.IsEnabled())
|
|
fmt.Printf(" Brightness: %d (%s)\n", clockDisplay.GetBrightness(), clockDisplay.GetBrightnessLevel())
|
|
fmt.Printf(" Format: %s (%s)\n", clockDisplay.GetFormat(), clockDisplay.GetFormatDescription())
|
|
|
|
if clockDisplay.IsAutoDimEnabled() {
|
|
fmt.Printf(" Auto-dim: enabled\n")
|
|
}
|
|
|
|
if clockDisplay.GetTimeZone() != "" {
|
|
fmt.Printf(" Time zone: %s\n", clockDisplay.GetTimeZone())
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// enableClockDisplay enables the clock display
|
|
func enableClockDisplay(c *cli.Context) error {
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader("Enabling clock display", clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
err = client.EnableClockDisplay()
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to enable clock display: %v", err))
|
|
return err
|
|
}
|
|
|
|
PrintSuccess("Clock display enabled")
|
|
return nil
|
|
}
|
|
|
|
// disableClockDisplay disables the clock display
|
|
func disableClockDisplay(c *cli.Context) error {
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader("Disabling clock display", clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
err = client.DisableClockDisplay()
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to disable clock display: %v", err))
|
|
return err
|
|
}
|
|
|
|
PrintSuccess("Clock display disabled")
|
|
return nil
|
|
}
|
|
|
|
// setClockDisplayBrightness sets the clock display brightness
|
|
func setClockDisplayBrightness(c *cli.Context) error {
|
|
brightness := c.String("brightness")
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader(fmt.Sprintf("Setting clock display brightness to %s", brightness), clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
// Convert brightness string to numeric value
|
|
var brightnessLevel int
|
|
switch brightness {
|
|
case "low", "LOW":
|
|
brightnessLevel = 25
|
|
case "medium", "MEDIUM", "med":
|
|
brightnessLevel = 50
|
|
case "high", "HIGH":
|
|
brightnessLevel = 100
|
|
case "off", "OFF":
|
|
brightnessLevel = 0
|
|
default:
|
|
PrintError("Invalid brightness. Use: low, medium, high, or off")
|
|
return fmt.Errorf("invalid brightness value")
|
|
}
|
|
|
|
err = client.SetClockDisplayBrightness(brightnessLevel)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to set clock display brightness: %v", err))
|
|
return err
|
|
}
|
|
|
|
PrintSuccess(fmt.Sprintf("Clock display brightness set to %s", brightness))
|
|
return nil
|
|
}
|
|
|
|
// setClockDisplayFormat sets the clock display format
|
|
func setClockDisplayFormat(c *cli.Context) error {
|
|
format := c.String("format")
|
|
clientConfig := GetClientConfig(c)
|
|
PrintDeviceHeader(fmt.Sprintf("Setting clock display format to %s", format), clientConfig.Host, clientConfig.Port)
|
|
|
|
client, err := CreateSoundTouchClient(clientConfig)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to create client: %v", err))
|
|
return err
|
|
}
|
|
|
|
// Validate and normalize format value
|
|
var formatSetting models.ClockFormat
|
|
switch format {
|
|
case "12", "12h", "12hour":
|
|
formatSetting = models.ClockFormat12Hour
|
|
case "24", "24h", "24hour":
|
|
formatSetting = models.ClockFormat24Hour
|
|
default:
|
|
PrintError("Invalid format. Use: 12 (12-hour) or 24 (24-hour)")
|
|
return fmt.Errorf("invalid format value")
|
|
}
|
|
|
|
err = client.SetClockDisplayFormat(formatSetting)
|
|
if err != nil {
|
|
PrintError(fmt.Sprintf("Failed to set clock display format: %v", err))
|
|
return err
|
|
}
|
|
|
|
PrintSuccess(fmt.Sprintf("Clock display format set to %s", format))
|
|
return nil
|
|
}
|
|
|
|
// parseTimeString parses a time string in HH:MM format
|
|
func parseTimeString(timeStr string) (int, int, error) {
|
|
if len(timeStr) != 5 || timeStr[2] != ':' {
|
|
return 0, 0, fmt.Errorf("time must be in HH:MM format")
|
|
}
|
|
|
|
hourStr := timeStr[0:2]
|
|
minuteStr := timeStr[3:5]
|
|
|
|
hour, err := strconv.Atoi(hourStr)
|
|
if err != nil {
|
|
return 0, 0, fmt.Errorf("invalid hour: %s", hourStr)
|
|
}
|
|
|
|
minute, err := strconv.Atoi(minuteStr)
|
|
if err != nil {
|
|
return 0, 0, fmt.Errorf("invalid minute: %s", minuteStr)
|
|
}
|
|
|
|
if hour < 0 || hour > 23 {
|
|
return 0, 0, fmt.Errorf("hour must be between 0 and 23")
|
|
}
|
|
|
|
if minute < 0 || minute > 59 {
|
|
return 0, 0, fmt.Errorf("minute must be between 0 and 59")
|
|
}
|
|
|
|
return hour, minute, nil
|
|
}
|