mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
97de2bc5aa
close #403 close #404 close #412
47 lines
1.0 KiB
Go
47 lines
1.0 KiB
Go
package service
|
|
|
|
import (
|
|
"github.com/kolide/kolide-ose/server/kolide"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func (svc service) ListLabels(ctx context.Context, opt kolide.ListOptions) ([]*kolide.Label, error) {
|
|
return svc.ds.ListLabels(opt)
|
|
}
|
|
|
|
func (svc service) GetLabel(ctx context.Context, id uint) (*kolide.Label, error) {
|
|
return svc.ds.Label(id)
|
|
}
|
|
|
|
func (svc service) NewLabel(ctx context.Context, p kolide.LabelPayload) (*kolide.Label, error) {
|
|
label := &kolide.Label{}
|
|
|
|
if p.Name == nil {
|
|
return nil, newInvalidArgumentError("name", "missing required argument")
|
|
}
|
|
label.Name = *p.Name
|
|
|
|
if p.Query == nil {
|
|
return nil, newInvalidArgumentError("query", "missing required argument")
|
|
}
|
|
label.Query = *p.Query
|
|
|
|
if p.Platform != nil {
|
|
label.Platform = *p.Platform
|
|
}
|
|
|
|
if p.Description != nil {
|
|
label.Description = *p.Description
|
|
}
|
|
|
|
label, err := svc.ds.NewLabel(label)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return label, nil
|
|
}
|
|
|
|
func (svc service) DeleteLabel(ctx context.Context, id uint) error {
|
|
return svc.ds.DeleteLabel(id)
|
|
}
|