mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
6215acdd1b
Add label and pack information for the returned hosts in the single-host API endpoints. Example: ``` curl -k 'https://localhost:8080/api/v1/kolide/hosts/7' -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzZXNzaW9uX2tleSI6Ii9oNEZ4MUpEVmlvQWhtMC8wNUJKbzZpdldsUDZpMDhjQVBuZXRLeFIvWjNOUGgvMW9VdCsxQnFlNU1CVDVsMlU3ckVGMm5Sb1VxS3ZSUllzSmJJR2lBPT0ifQ.GQQsJgBU3JA1H1o4Y8fPjyfF78F_VY4c9AbrP5k0sCg' { "host": { "created_at": "2021-01-16T00:22:33Z", "updated_at": "2021-01-16T00:22:51Z", "id": 7, "detail_updated_at": "1970-01-02T00:00:00Z", "label_updated_at": "1970-01-02T00:00:00Z", "last_enrolled_at": "2021-01-16T00:22:33Z", "seen_time": "2021-01-16T00:22:51Z", "hostname": "55d91fc9c303", "uuid": "853a4588-0000-0000-a061-7d494d04e9c4", "platform": "ubuntu", "osquery_version": "4.6.0", "os_version": "Ubuntu 20.04.0", "build": "", "platform_like": "debian", "code_name": "", "uptime": 0, "memory": 16794206208, "cpu_type": "x86_64", "cpu_subtype": "158", "cpu_brand": "Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz\u0000\u0000\u0000\u0000\u0000\u0000\u0000", "cpu_physical_cores": 8, "cpu_logical_cores": 8, "hardware_vendor": "", "hardware_model": "", "hardware_version": "", "hardware_serial": "", "computer_name": "55d91fc9c303", "primary_ip": "", "primary_mac": "", "distributed_interval": 10, "config_tls_refresh": 0, "logger_tls_period": 10, "enroll_secret_name": "default", "labels": [ { "created_at": "2020-12-22T01:22:47Z", "updated_at": "2020-12-22T01:22:47Z", "id": 6, "name": "All Hosts", "description": "All hosts which have enrolled in Fleet", "query": "select 1;", "label_type": "builtin", "label_membership_type": "dynamic" } ], "packs": [ { "created_at": "2021-01-20T16:36:42Z", "updated_at": "2021-01-20T16:36:42Z", "id": 2, "name": "test" } ], "status": "offline", "display_text": "55d91fc9c303" } } ```
69 lines
1.8 KiB
Go
69 lines
1.8 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/fleetdm/fleet/server/kolide"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (svc service) ListHosts(ctx context.Context, opt kolide.HostListOptions) ([]*kolide.Host, error) {
|
|
return svc.ds.ListHosts(opt)
|
|
}
|
|
|
|
func (svc service) GetHost(ctx context.Context, id uint) (*kolide.HostDetail, error) {
|
|
host, err := svc.ds.Host(id)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "get host")
|
|
}
|
|
|
|
return svc.getHostDetails(ctx, host)
|
|
}
|
|
|
|
func (svc service) HostByIdentifier(ctx context.Context, identifier string) (*kolide.HostDetail, error) {
|
|
host, err := svc.ds.HostByIdentifier(identifier)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "get host by identifier")
|
|
}
|
|
|
|
return svc.getHostDetails(ctx, host)
|
|
}
|
|
|
|
func (svc service) getHostDetails(ctx context.Context, host *kolide.Host) (*kolide.HostDetail, error) {
|
|
labels, err := svc.ds.ListLabelsForHost(host.ID)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "get labels for host")
|
|
}
|
|
|
|
packPtrs, err := svc.ds.ListPacksForHost(host.ID)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "get packs for host")
|
|
}
|
|
|
|
// TODO refactor List* APIs to be consistent so we don't have to do this
|
|
// transformation
|
|
packs := make([]kolide.Pack, 0, len(packPtrs))
|
|
for _, p := range packPtrs {
|
|
packs = append(packs, *p)
|
|
}
|
|
|
|
return &kolide.HostDetail{Host: *host, Labels: labels, Packs: packs}, nil
|
|
}
|
|
|
|
func (svc service) GetHostSummary(ctx context.Context) (*kolide.HostSummary, error) {
|
|
online, offline, mia, new, err := svc.ds.GenerateHostStatusStatistics(svc.clock.Now())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &kolide.HostSummary{
|
|
OnlineCount: online,
|
|
OfflineCount: offline,
|
|
MIACount: mia,
|
|
NewCount: new,
|
|
}, nil
|
|
}
|
|
|
|
func (svc service) DeleteHost(ctx context.Context, id uint) error {
|
|
return svc.ds.DeleteHost(id)
|
|
}
|