smon/notification_manager.go

145 lines
2.8 KiB
Go
Raw Normal View History

2024-05-05 10:10:04 +02:00
package main
import (
// External
werr "git.gibonuddevalla.se/go/wrappederror"
2024-06-28 15:28:52 +02:00
"github.com/lib/pq"
2024-05-05 10:10:04 +02:00
// Internal
"smon/notification"
// Standard
"encoding/json"
)
type DbNotificationService struct {
ID int
Service string
Configuration string
Prio int
}
func InitNotificationManager() (nm notification.Manager, err error) { // {{{
2024-05-05 10:10:04 +02:00
var dbServices []DbNotificationService
row := service.Db.Conn.QueryRow(`
2024-05-05 10:10:04 +02:00
WITH services AS (
SELECT
id,
prio,
service,
configuration::varchar
FROM notification n
ORDER BY
prio ASC
)
SELECT COALESCE(jsonb_agg(s.*), '[]')
FROM services s
`,
)
var dbData []byte
err = row.Scan(&dbData)
if err != nil {
err = werr.Wrap(err).WithCode("002-0006")
return
}
err = json.Unmarshal(dbData, &dbServices)
if err != nil {
err = werr.Wrap(err).WithCode("002-0007")
return
}
nm = notification.NewManager(logger)
2024-05-05 10:10:04 +02:00
var service notification.Service
for _, dbService := range dbServices {
service, err = notification.ServiceFactory(
dbService.Service,
[]byte(dbService.Configuration),
dbService.Prio,
"blah",
//config.Application.NotificationBaseURL,
logger,
)
if err != nil {
err = werr.Wrap(err).WithData(dbService.Service)
}
nm.AddService(service)
2024-05-05 10:10:04 +02:00
}
return
} // }}}
2024-06-28 15:28:52 +02:00
func UpdateNotificationService(svc notification.Service) (created bool, err error) { // {{{
if svc.Exists() {
_, err = service.Db.Conn.Exec(
`
UPDATE public.notification
SET
prio=$2,
configuration=$3
WHERE
prio=$1
`,
svc.GetPrio(),
svc.Updated().GetPrio(),
svc.Updated().JSON(),
)
} else {
_, err = service.Db.Conn.Exec(
`
INSERT INTO public.notification(prio, configuration, service)
VALUES($1, $2, $3)
`,
svc.Updated().GetPrio(),
svc.Updated().JSON(),
svc.GetType(),
)
created = true
}
2024-05-05 10:10:04 +02:00
if err != nil {
2024-06-28 15:28:52 +02:00
// Check if this is just a duplicated prio, which isn't allowed.
pgErr, isPgErr := err.(*pq.Error)
if isPgErr && pgErr.Code == "23505" {
return false, werr.New("Prio %d is already used by another service", svc.Updated().GetPrio())
2024-06-28 15:28:52 +02:00
}
return false, werr.Wrap(err).WithData(
struct {
Prio int
Configuration []byte
}{
svc.GetPrio(),
svc.JSON(),
},
)
2024-05-05 10:10:04 +02:00
}
2024-06-28 15:28:52 +02:00
return
} // }}}
2024-06-28 17:18:08 +02:00
func DeleteNotificationService(prio int) (err error) { // {{{
_, err = service.Db.Conn.Exec(
`
DELETE FROM public.notification
WHERE
prio = $1
`,
prio,
)
if err != nil {
return werr.Wrap(err).WithData(struct{ Prio int }{prio})
}
return
} // }}}
2024-06-28 15:28:52 +02:00
func AcknowledgeNotification(uuid string) (err error) { // {{{
/*
_, err = service.Db.Conn.Exec(`UPDATE schedule SET acknowledged=true WHERE schedule_uuid=$1`, uuid)
if err != nil {
err = werr.Wrap(err).WithData(uuid)
}
*/
2024-05-05 10:10:04 +02:00
return
} // }}}