46 lines
1001 B
Go
46 lines
1001 B
Go
package cast
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"time"
|
|
|
|
"forge.cadoles.com/arcad/edge/pkg/module/cast"
|
|
"github.com/pkg/errors"
|
|
"github.com/urfave/cli/v2"
|
|
|
|
// Register casting device supported types
|
|
_ "forge.cadoles.com/arcad/edge/pkg/module/cast/chromecast"
|
|
)
|
|
|
|
func ScanCommand() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "scan",
|
|
Usage: "Scan network for casting devices",
|
|
Flags: []cli.Flag{
|
|
&cli.DurationFlag{
|
|
Name: "timeout",
|
|
Aliases: []string{"t"},
|
|
Value: 10 * time.Second,
|
|
},
|
|
},
|
|
Action: func(ctx *cli.Context) error {
|
|
timeout := ctx.Duration("timeout")
|
|
|
|
searchCtx, cancel := context.WithTimeout(ctx.Context, timeout)
|
|
defer cancel()
|
|
|
|
devices, err := cast.SearchDevices(searchCtx)
|
|
if err != nil {
|
|
log.Fatalf("%+v", errors.WithStack(err))
|
|
}
|
|
|
|
for _, dev := range devices {
|
|
log.Printf("[DEVICE] %s %s %s %s:%d", dev.DeviceID(), dev.DeviceType(), dev.DeviceName(), dev.DeviceHost().String(), dev.DevicePort())
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|
|
}
|