- Change module from forge.lthn.ai/core/go to forge.lthn.ai/core/cli - Remove pkg/ directory (now served from core/go) - Add require + replace for forge.lthn.ai/core/go => ../go - Update go.work to include ../go workspace module - Fix all internal/cmd/* imports: pkg/ refs → forge.lthn.ai/core/go/pkg/ - Rename internal/cmd/sdk package to sdkcmd (avoids conflict with pkg/sdk) - Remove SDK library files from internal/cmd/sdk/ (now in core/go/pkg/sdk/) - Remove duplicate RAG helper functions from internal/cmd/rag/ - Remove stale cmd/core-ide/ (now in core/ide repo) - Update IDE variant to remove core-ide import - Fix test assertion for new module name - Run go mod tidy to sync dependencies core/cli is now a pure CLI application importing core/go for packages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #1
86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
package unifi
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"forge.lthn.ai/core/go/pkg/cli"
|
|
"forge.lthn.ai/core/go/pkg/log"
|
|
uf "forge.lthn.ai/core/go/pkg/unifi"
|
|
)
|
|
|
|
// Routes command flags.
|
|
var (
|
|
routesSite string
|
|
routesType string
|
|
)
|
|
|
|
// addRoutesCommand adds the 'routes' subcommand for listing the gateway routing table.
|
|
func addRoutesCommand(parent *cli.Command) {
|
|
cmd := &cli.Command{
|
|
Use: "routes",
|
|
Short: "List gateway routing table",
|
|
Long: "List the active routing table from the UniFi gateway, showing network segments and next-hop destinations.",
|
|
RunE: func(cmd *cli.Command, args []string) error {
|
|
return runRoutes()
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringVar(&routesSite, "site", "", "Site name (default: \"default\")")
|
|
cmd.Flags().StringVar(&routesType, "type", "", "Filter by route type (static, connected, kernel, bgp, ospf)")
|
|
|
|
parent.AddCommand(cmd)
|
|
}
|
|
|
|
func runRoutes() error {
|
|
client, err := uf.NewFromConfig("", "", "", "", nil)
|
|
if err != nil {
|
|
return log.E("unifi.routes", "failed to initialise client", err)
|
|
}
|
|
|
|
routes, err := client.GetRoutes(routesSite)
|
|
if err != nil {
|
|
return log.E("unifi.routes", "failed to fetch routes", err)
|
|
}
|
|
|
|
// Filter by type if requested
|
|
if routesType != "" {
|
|
var filtered []uf.Route
|
|
for _, r := range routes {
|
|
if uf.RouteTypeName(r.Type) == routesType || r.Type == routesType {
|
|
filtered = append(filtered, r)
|
|
}
|
|
}
|
|
routes = filtered
|
|
}
|
|
|
|
if len(routes) == 0 {
|
|
cli.Text("No routes found.")
|
|
return nil
|
|
}
|
|
|
|
table := cli.NewTable("Network", "Next Hop", "Interface", "Type", "Distance", "FIB")
|
|
|
|
for _, r := range routes {
|
|
typeName := uf.RouteTypeName(r.Type)
|
|
|
|
fib := dimStyle.Render("no")
|
|
if r.Selected {
|
|
fib = successStyle.Render("yes")
|
|
}
|
|
|
|
table.AddRow(
|
|
valueStyle.Render(r.Network),
|
|
r.NextHop,
|
|
dimStyle.Render(r.Interface),
|
|
dimStyle.Render(typeName),
|
|
fmt.Sprintf("%d", r.Distance),
|
|
fib,
|
|
)
|
|
}
|
|
|
|
cli.Blank()
|
|
cli.Print(" %d routes\n\n", len(routes))
|
|
table.Render()
|
|
|
|
return nil
|
|
}
|