mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
cf529e70cf
* Add innodb status and process list * Make json output a bit prettier * Add changes file * fix lint issues
146 lines
4.5 KiB
Go
146 lines
4.5 KiB
Go
package mysql
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/fleetdm/fleet/v4/server/contexts/ctxerr"
|
|
"github.com/fleetdm/fleet/v4/server/fleet"
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
func (ds *Datastore) NewDistributedQueryCampaign(ctx context.Context, camp *fleet.DistributedQueryCampaign) (*fleet.DistributedQueryCampaign, error) {
|
|
|
|
sqlStatement := `
|
|
INSERT INTO distributed_query_campaigns (
|
|
query_id,
|
|
status,
|
|
user_id
|
|
)
|
|
VALUES(?,?,?)
|
|
`
|
|
result, err := ds.writer.ExecContext(ctx, sqlStatement, camp.QueryID, camp.Status, camp.UserID)
|
|
if err != nil {
|
|
return nil, ctxerr.Wrap(ctx, err, "inserting distributed query campaign")
|
|
}
|
|
|
|
id, _ := result.LastInsertId()
|
|
camp.ID = uint(id)
|
|
return camp, nil
|
|
}
|
|
|
|
func (ds *Datastore) DistributedQueryCampaign(ctx context.Context, id uint) (*fleet.DistributedQueryCampaign, error) {
|
|
sql := `
|
|
SELECT * FROM distributed_query_campaigns WHERE id = ?
|
|
`
|
|
campaign := &fleet.DistributedQueryCampaign{}
|
|
if err := sqlx.GetContext(ctx, ds.reader, campaign, sql, id); err != nil {
|
|
return nil, ctxerr.Wrap(ctx, err, "selecting distributed query campaign")
|
|
}
|
|
|
|
return campaign, nil
|
|
}
|
|
|
|
func (ds *Datastore) SaveDistributedQueryCampaign(ctx context.Context, camp *fleet.DistributedQueryCampaign) error {
|
|
sqlStatement := `
|
|
UPDATE distributed_query_campaigns SET
|
|
query_id = ?,
|
|
status = ?,
|
|
user_id = ?
|
|
WHERE id = ?
|
|
`
|
|
result, err := ds.writer.ExecContext(ctx, sqlStatement, camp.QueryID, camp.Status, camp.UserID, camp.ID)
|
|
if err != nil {
|
|
return ctxerr.Wrap(ctx, err, "updating distributed query campaign")
|
|
}
|
|
rowsAffected, err := result.RowsAffected()
|
|
if err != nil {
|
|
return ctxerr.Wrap(ctx, err, "rows affected updating distributed query campaign")
|
|
}
|
|
if rowsAffected == 0 {
|
|
return notFound("DistributedQueryCampaign").WithID(camp.ID)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ds *Datastore) DistributedQueryCampaignsForQuery(ctx context.Context, queryID uint) ([]*fleet.DistributedQueryCampaign, error) {
|
|
var campaigns []*fleet.DistributedQueryCampaign
|
|
err := sqlx.SelectContext(ctx, ds.reader, &campaigns, `SELECT * FROM distributed_query_campaigns WHERE query_id=?`, queryID)
|
|
if err != nil {
|
|
return nil, ctxerr.Wrap(ctx, err, "getting campaigns for query")
|
|
}
|
|
return campaigns, nil
|
|
}
|
|
|
|
func (ds *Datastore) DistributedQueryCampaignTargetIDs(ctx context.Context, id uint) (*fleet.HostTargets, error) {
|
|
sqlStatement := `
|
|
SELECT * FROM distributed_query_campaign_targets WHERE distributed_query_campaign_id = ?
|
|
`
|
|
targets := []fleet.DistributedQueryCampaignTarget{}
|
|
|
|
if err := sqlx.SelectContext(ctx, ds.reader, &targets, sqlStatement, id); err != nil {
|
|
return nil, ctxerr.Wrap(ctx, err, "select distributed campaign target")
|
|
}
|
|
|
|
hostIDs := []uint{}
|
|
labelIDs := []uint{}
|
|
teamIDs := []uint{}
|
|
for _, target := range targets {
|
|
switch target.Type {
|
|
case fleet.TargetHost:
|
|
hostIDs = append(hostIDs, target.TargetID)
|
|
case fleet.TargetLabel:
|
|
labelIDs = append(labelIDs, target.TargetID)
|
|
case fleet.TargetTeam:
|
|
teamIDs = append(teamIDs, target.TargetID)
|
|
default:
|
|
return nil, ctxerr.Errorf(ctx, "invalid target type: %d", target.Type)
|
|
}
|
|
}
|
|
|
|
return &fleet.HostTargets{HostIDs: hostIDs, LabelIDs: labelIDs, TeamIDs: teamIDs}, nil
|
|
}
|
|
|
|
func (ds *Datastore) NewDistributedQueryCampaignTarget(ctx context.Context, target *fleet.DistributedQueryCampaignTarget) (*fleet.DistributedQueryCampaignTarget, error) {
|
|
sqlStatement := `
|
|
INSERT into distributed_query_campaign_targets (
|
|
type,
|
|
distributed_query_campaign_id,
|
|
target_id
|
|
)
|
|
VALUES (?,?,?)
|
|
`
|
|
result, err := ds.writer.ExecContext(ctx, sqlStatement, target.Type, target.DistributedQueryCampaignID, target.TargetID)
|
|
if err != nil {
|
|
return nil, ctxerr.Wrap(ctx, err, "insert distributed campaign target")
|
|
}
|
|
|
|
id, _ := result.LastInsertId()
|
|
target.ID = uint(id)
|
|
return target, nil
|
|
}
|
|
|
|
func (ds *Datastore) CleanupDistributedQueryCampaigns(ctx context.Context, now time.Time) (expired uint, err error) {
|
|
// Expire old waiting/running campaigns
|
|
sqlStatement := `
|
|
UPDATE distributed_query_campaigns
|
|
SET status = ?
|
|
WHERE (status = ? AND created_at < ?)
|
|
OR (status = ? AND created_at < ?)
|
|
`
|
|
result, err := ds.writer.ExecContext(ctx, sqlStatement, fleet.QueryComplete,
|
|
fleet.QueryWaiting, now.Add(-1*time.Minute),
|
|
fleet.QueryRunning, now.Add(-24*time.Hour))
|
|
if err != nil {
|
|
return 0, ctxerr.Wrap(ctx, err, "updating distributed query campaign")
|
|
}
|
|
|
|
exp, err := result.RowsAffected()
|
|
if err != nil {
|
|
return 0, ctxerr.Wrap(ctx, err, "rows affected updating distributed query campaign")
|
|
}
|
|
|
|
return uint(exp), nil
|
|
}
|