mirror of
https://github.com/luscis/openlan.git
synced 2025-09-26 20:41:29 +08:00
55 lines
1.2 KiB
Go
Executable File
55 lines
1.2 KiB
Go
Executable File
package v5
|
|
|
|
import (
|
|
"github.com/luscis/openlan/cmd/api"
|
|
"github.com/luscis/openlan/pkg/schema"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
type Point struct {
|
|
Cmd
|
|
}
|
|
|
|
func (u Point) Url(prefix, name string) string {
|
|
if name == "" {
|
|
return prefix + "/api/point"
|
|
} else {
|
|
return prefix + "/api/point/" + name
|
|
}
|
|
}
|
|
|
|
func (u Point) Tmpl() string {
|
|
return `# total {{ len . }}
|
|
{{ps -16 "uuid"}} {{ps -8 "alive"}} {{ ps -8 "device" }} {{ps -16 "alias"}} {{ps -8 "user"}} {{ps -22 "remote"}} {{ps -8 "network"}} {{ ps -6 "state"}}
|
|
{{- range . }}
|
|
{{ps -16 .UUID}} {{pt .AliveTime | ps -8}} {{ ps -8 .Device}} {{ps -16 .Alias}} {{ps -8 .User}} {{ps -22 .Remote}} {{ps -8 .Network}} {{ ps -6 .State}}
|
|
{{- end }}
|
|
`
|
|
}
|
|
|
|
func (u Point) List(c *cli.Context) error {
|
|
url := u.Url(c.String("url"), "")
|
|
clt := u.NewHttp(c.String("token"))
|
|
var items []schema.Point
|
|
if err := clt.GetJSON(url, &items); err != nil {
|
|
return err
|
|
}
|
|
return u.Out(items, c.String("format"), u.Tmpl())
|
|
}
|
|
|
|
func (u Point) Commands(app *api.App) {
|
|
app.Command(&cli.Command{
|
|
Name: "point",
|
|
Aliases: []string{"ap"},
|
|
Usage: "Point connected to this",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "list",
|
|
Usage: "Display all points",
|
|
Aliases: []string{"ls"},
|
|
Action: u.List,
|
|
},
|
|
},
|
|
})
|
|
}
|