80 lines
2.1 KiB
Go
80 lines
2.1 KiB
Go
package database
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent"
|
|
"github.com/crowdsecurity/crowdsec/pkg/database/ent/bouncer"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (c *Client) SelectBouncer(apiKeyHash string) (*ent.Bouncer, error) {
|
|
result, err := c.Ent.Bouncer.Query().Where(bouncer.APIKeyEQ(apiKeyHash)).First(c.CTX)
|
|
if err != nil {
|
|
return &ent.Bouncer{}, errors.Wrapf(QueryFail, "select bouncer: %s", err)
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func (c *Client) ListBouncers() ([]*ent.Bouncer, error) {
|
|
result, err := c.Ent.Bouncer.Query().All(c.CTX)
|
|
if err != nil {
|
|
return []*ent.Bouncer{}, errors.Wrapf(QueryFail, "listing bouncer: %s", err)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
func (c *Client) CreateBouncer(name string, ipAddr string, apiKey string) error {
|
|
_, err := c.Ent.Bouncer.
|
|
Create().
|
|
SetName(name).
|
|
SetAPIKey(apiKey).
|
|
SetRevoked(false).
|
|
Save(c.CTX)
|
|
if err != nil {
|
|
if ent.IsConstraintError(err) {
|
|
return fmt.Errorf("bouncer %s already exists", name)
|
|
}
|
|
return fmt.Errorf("unable to save api key in database: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) DeleteBouncer(name string) error {
|
|
_, err := c.Ent.Bouncer.
|
|
Delete().
|
|
Where(bouncer.NameEQ(name)).
|
|
Exec(c.CTX)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to save api key in database: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) UpdateBouncerLastPull(lastPull time.Time, ID int) error {
|
|
_, err := c.Ent.Bouncer.UpdateOneID(ID).
|
|
SetLastPull(lastPull).
|
|
Save(c.CTX)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update machine in database: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) UpdateBouncerIP(ipAddr string, ID int) error {
|
|
_, err := c.Ent.Bouncer.UpdateOneID(ID).SetIPAddress(ipAddr).Save(c.CTX)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update bouncer ip address in database: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) UpdateBouncerTypeAndVersion(bType string, version string, ID int) error {
|
|
_, err := c.Ent.Bouncer.UpdateOneID(ID).SetVersion(version).SetType(bType).Save(c.CTX)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update bouncer type and version in database: %s", err)
|
|
}
|
|
return nil
|
|
}
|