185 lines
4.9 KiB
Go
185 lines
4.9 KiB
Go
// Copyright 2025 Joshua Rich <joshua.rich@gmail.com>.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package system
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/joshuar/go-hass-agent/internal/components/logging"
|
|
"github.com/joshuar/go-hass-agent/internal/components/preferences"
|
|
"github.com/joshuar/go-hass-agent/internal/hass/sensor"
|
|
"github.com/joshuar/go-hass-agent/internal/hass/sensor/types"
|
|
"github.com/joshuar/go-hass-agent/internal/linux"
|
|
"github.com/joshuar/go-hass-agent/pkg/linux/dbusx"
|
|
)
|
|
|
|
const (
|
|
abrtProblemsCheckInterval = 15 * time.Minute
|
|
abrtProblemsCheckJitter = time.Minute
|
|
|
|
abrtProblemsWorkerID = "abrt_problems_sensor"
|
|
abrtProblemsPreferencesID = "abrt_problems"
|
|
|
|
dBusProblemsDest = "/org/freedesktop/problems"
|
|
dBusProblemIntr = "org.freedesktop.problems"
|
|
)
|
|
|
|
var ErrNoProblemDetails = errors.New("no details found")
|
|
|
|
func parseProblem(details map[string]string) map[string]any {
|
|
parsed := make(map[string]any)
|
|
|
|
for key, value := range details {
|
|
switch key {
|
|
case "time":
|
|
timeValue, err := strconv.ParseInt(value, 10, 64)
|
|
if err != nil {
|
|
parsed["time"] = 0
|
|
} else {
|
|
parsed["time"] = time.Unix(timeValue, 0).Format(time.RFC3339)
|
|
}
|
|
case "count":
|
|
countValue, err := strconv.Atoi(value)
|
|
if err != nil {
|
|
parsed["count"] = 0
|
|
} else {
|
|
parsed["count"] = countValue
|
|
}
|
|
case "package", "reason":
|
|
parsed[key] = value
|
|
}
|
|
}
|
|
|
|
return parsed
|
|
}
|
|
|
|
func (w *problemsWorker) newProblemsSensor(problems []string) sensor.Entity {
|
|
problemDetails := make(map[string]map[string]any)
|
|
// For each problem, fetch its details.
|
|
for _, problem := range problems {
|
|
details, err := w.getProblemDetails(problem)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
|
|
problemDetails[problem] = parseProblem(details)
|
|
}
|
|
|
|
return sensor.NewSensor(
|
|
sensor.WithName("Problems"),
|
|
sensor.WithID("problems"),
|
|
sensor.WithStateClass(types.StateClassMeasurement),
|
|
sensor.WithUnits("problems"),
|
|
sensor.WithState(
|
|
sensor.WithIcon("mdi:alert"),
|
|
sensor.WithValue(len(problems)),
|
|
sensor.WithDataSourceAttribute(linux.DataSrcDbus),
|
|
sensor.WithAttribute("problem_list", problemDetails),
|
|
),
|
|
)
|
|
}
|
|
|
|
type problemsWorker struct {
|
|
getProblems func() ([]string, error)
|
|
getProblemDetails func(problem string) (map[string]string, error)
|
|
bus *dbusx.Bus
|
|
prefs *ProblemsPrefs
|
|
}
|
|
|
|
func (w *problemsWorker) UpdateDelta(_ time.Duration) {}
|
|
|
|
func (w *problemsWorker) Sensors(_ context.Context) ([]sensor.Entity, error) {
|
|
// Get the list of problems.
|
|
problems, err := w.getProblems()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not retrieve list of problems from D-Bus: %w", err)
|
|
}
|
|
|
|
return []sensor.Entity{w.newProblemsSensor(problems)}, nil
|
|
}
|
|
|
|
func (w *problemsWorker) PreferencesID() string {
|
|
return basePreferencesID + "." + abrtProblemsPreferencesID
|
|
}
|
|
|
|
func (w *problemsWorker) DefaultPreferences() ProblemsPrefs {
|
|
return ProblemsPrefs{
|
|
UpdateInterval: abrtProblemsCheckInterval.String(),
|
|
}
|
|
}
|
|
|
|
func NewProblemsWorker(ctx context.Context) (*linux.PollingSensorWorker, error) {
|
|
var err error
|
|
|
|
problemsWorker := &problemsWorker{}
|
|
|
|
problemsWorker.prefs, err = preferences.LoadWorker(ctx, problemsWorker)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not load preferences: %w", err)
|
|
}
|
|
|
|
//nolint:nilnil
|
|
if problemsWorker.prefs.IsDisabled() {
|
|
return nil, nil
|
|
}
|
|
|
|
pollInterval, err := time.ParseDuration(problemsWorker.prefs.UpdateInterval)
|
|
if err != nil {
|
|
logging.FromContext(ctx).Warn("Invalid polling interval, using default",
|
|
slog.String("worker", abrtProblemsWorkerID),
|
|
slog.String("given_interval", problemsWorker.prefs.UpdateInterval),
|
|
slog.String("default_interval", abrtProblemsCheckInterval.String()))
|
|
|
|
pollInterval = abrtProblemsCheckInterval
|
|
}
|
|
|
|
bus, ok := linux.CtxGetSystemBus(ctx)
|
|
if !ok {
|
|
return nil, linux.ErrNoSystemBus
|
|
}
|
|
|
|
problemsWorker.bus = bus
|
|
|
|
// Check if we can fetch problem data, bail if we can't.
|
|
_, err = dbusx.GetData[[]string](bus, dBusProblemsDest, dBusProblemIntr, dBusProblemIntr+".GetProblems")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch ABRT problems from D-Bus: %w", err)
|
|
}
|
|
|
|
problemsWorker.getProblems = func() ([]string, error) {
|
|
problems, err := dbusx.GetData[[]string](bus, dBusProblemsDest, dBusProblemIntr, dBusProblemIntr+".GetProblems")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error getting data: %w", err)
|
|
}
|
|
|
|
return problems, nil
|
|
}
|
|
|
|
problemsWorker.getProblemDetails = func(problem string) (map[string]string, error) {
|
|
details, err := dbusx.GetData[map[string]string](bus,
|
|
dBusProblemsDest,
|
|
dBusProblemIntr,
|
|
dBusProblemIntr+".GetInfo", problem, []string{"time", "count", "package", "reason"})
|
|
|
|
switch {
|
|
case details == nil:
|
|
return nil, ErrNoProblemDetails
|
|
case err != nil:
|
|
return nil, err
|
|
default:
|
|
return details, nil
|
|
}
|
|
}
|
|
|
|
worker := linux.NewPollingSensorWorker(abrtProblemsWorkerID, pollInterval, abrtProblemsCheckJitter)
|
|
worker.PollingSensorType = problemsWorker
|
|
|
|
return worker, nil
|
|
}
|