mirror of
https://github.com/empayre/fleet.git
synced 2024-11-08 01:38:57 +00:00
8f854144c5
* Return email as well in activities * Add team name
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package mysql
|
|
|
|
import (
|
|
"database/sql"
|
|
"encoding/json"
|
|
"github.com/fleetdm/fleet/v4/server/fleet"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// NewActivity stores an activity item that the user performed
|
|
func (d *Datastore) NewActivity(user *fleet.User, activityType string, details *map[string]interface{}) error {
|
|
detailsBytes, err := json.Marshal(details)
|
|
if err != nil {
|
|
return errors.Wrap(err, "marshaling activity details")
|
|
}
|
|
_, err = d.db.Exec(
|
|
`INSERT INTO activities (user_id, user_name, activity_type, details) VALUES(?,?,?,?)`,
|
|
user.ID,
|
|
user.Name,
|
|
activityType,
|
|
detailsBytes,
|
|
)
|
|
if err != nil {
|
|
return errors.Wrap(err, "new activity")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ListActivities returns a slice of activities performed across the organization
|
|
func (d *Datastore) ListActivities(opt fleet.ListOptions) ([]*fleet.Activity, error) {
|
|
activities := []*fleet.Activity{}
|
|
query := `SELECT a.id, a.user_id, a.created_at, a.activity_type, a.details, coalesce(u.name, a.user_name) as name, u.gravatar_url, u.email
|
|
FROM activities a LEFT JOIN users u ON (a.user_id=u.id)
|
|
WHERE true`
|
|
query = appendListOptionsToSQL(query, opt)
|
|
|
|
err := d.db.Select(&activities, query)
|
|
if err == sql.ErrNoRows {
|
|
return nil, notFound("Activity")
|
|
} else if err != nil {
|
|
return nil, errors.Wrap(err, "select activities")
|
|
}
|
|
|
|
return activities, nil
|
|
}
|