mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
package mysql
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/kolide/kolide-ose/server/kolide"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (d *Datastore) NewFIMSection(fp *kolide.FIMSection) (result *kolide.FIMSection, err error) {
|
|
txn, err := d.db.Begin()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "update options begin transaction")
|
|
}
|
|
var success bool
|
|
defer func() {
|
|
if success {
|
|
if err = txn.Commit(); err == nil {
|
|
return
|
|
}
|
|
}
|
|
txn.Rollback()
|
|
}()
|
|
|
|
sqlStatement := `
|
|
INSERT INTO file_integrity_monitorings (
|
|
section_name,
|
|
description
|
|
) VALUES( ?, ?)
|
|
`
|
|
var resp sql.Result
|
|
resp, err = txn.Exec(sqlStatement, fp.SectionName, fp.Description)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "creating fim section")
|
|
}
|
|
id, _ := resp.LastInsertId()
|
|
fp.ID = uint(id)
|
|
sqlStatement = `
|
|
INSERT INTO file_integrity_monitoring_files (
|
|
file,
|
|
file_integrity_monitoring_id
|
|
) VALUES( ?, ? )
|
|
`
|
|
for _, fileName := range fp.Paths {
|
|
_, err = txn.Exec(sqlStatement, fileName, fp.ID)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "adding path to fim section")
|
|
}
|
|
}
|
|
success = true
|
|
return fp, nil
|
|
}
|
|
|
|
func (d *Datastore) FIMSections() (kolide.FIMSections, error) {
|
|
sqlStatement := `
|
|
SELECT fim.section_name, mf.file FROM
|
|
file_integrity_monitorings AS fim
|
|
INNER JOIN file_integrity_monitoring_files AS mf
|
|
ON (fim.id = mf.file_integrity_monitoring_id)
|
|
`
|
|
rows, err := d.db.Query(sqlStatement)
|
|
if err != nil {
|
|
if err == sql.ErrNoRows {
|
|
return nil, notFound("FilePath")
|
|
}
|
|
return nil, errors.Wrap(err, "retrieving fim sections")
|
|
}
|
|
result := make(kolide.FIMSections)
|
|
for rows.Next() {
|
|
var sectionName, fileName string
|
|
err = rows.Scan(§ionName, &fileName)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "retrieving path for fim section")
|
|
}
|
|
result[sectionName] = append(result[sectionName], fileName)
|
|
}
|
|
return result, nil
|
|
}
|