mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
152 lines
4.1 KiB
Go
152 lines
4.1 KiB
Go
package notifications
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"sync/atomic"
|
|
|
|
"github.com/safing/portmaster/base/config"
|
|
"github.com/safing/portmaster/service/mgr"
|
|
)
|
|
|
|
type Notifications struct {
|
|
mgr *mgr.Manager
|
|
instance instance
|
|
|
|
states *mgr.StateMgr
|
|
}
|
|
|
|
func (n *Notifications) Manager() *mgr.Manager {
|
|
return n.mgr
|
|
}
|
|
|
|
func (n *Notifications) States() *mgr.StateMgr {
|
|
return n.states
|
|
}
|
|
|
|
func (n *Notifications) Start() error {
|
|
if err := prep(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return start()
|
|
}
|
|
|
|
func (n *Notifications) Stop() error {
|
|
return nil
|
|
}
|
|
|
|
// NotifyInfo is a helper method for quickly showing an info notification.
|
|
// The notification will be activated immediately.
|
|
// If the provided id is empty, an id will derived from msg.
|
|
// ShowOnSystem is disabled.
|
|
// If no actions are defined, a default "OK" (ID:"ack") action will be added.
|
|
func (n *Notifications) NotifyInfo(id, title, msg string, actions ...Action) *Notification {
|
|
return NotifyInfo(id, title, msg, actions...)
|
|
}
|
|
|
|
// NotifyWarn is a helper method for quickly showing a warning notification
|
|
// The notification will be activated immediately.
|
|
// If the provided id is empty, an id will derived from msg.
|
|
// ShowOnSystem is enabled.
|
|
// If no actions are defined, a default "OK" (ID:"ack") action will be added.
|
|
func (n *Notifications) NotifyWarn(id, title, msg string, actions ...Action) *Notification {
|
|
return NotifyWarn(id, title, msg, actions...)
|
|
}
|
|
|
|
// NotifyError is a helper method for quickly showing an error notification.
|
|
// The notification will be activated immediately.
|
|
// If the provided id is empty, an id will derived from msg.
|
|
// ShowOnSystem is enabled.
|
|
// If no actions are defined, a default "OK" (ID:"ack") action will be added.
|
|
func (n *Notifications) NotifyError(id, title, msg string, actions ...Action) *Notification {
|
|
return NotifyError(id, title, msg, actions...)
|
|
}
|
|
|
|
// NotifyPrompt is a helper method for quickly showing a prompt notification.
|
|
// The notification will be activated immediately.
|
|
// If the provided id is empty, an id will derived from msg.
|
|
// ShowOnSystem is disabled.
|
|
// If no actions are defined, a default "OK" (ID:"ack") action will be added.
|
|
func (n *Notifications) NotifyPrompt(id, title, msg string, actions ...Action) *Notification {
|
|
return NotifyPrompt(id, title, msg, actions...)
|
|
}
|
|
|
|
// Notify sends the given notification.
|
|
func (n *Notifications) Notify(notification *Notification) *Notification {
|
|
return Notify(notification)
|
|
}
|
|
|
|
func prep() error {
|
|
return registerConfig()
|
|
}
|
|
|
|
func start() error {
|
|
err := registerAsDatabase()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
showConfigLoadingErrors()
|
|
|
|
module.mgr.Go("cleaner", cleaner)
|
|
return nil
|
|
}
|
|
|
|
func showConfigLoadingErrors() {
|
|
validationErrors := config.GetLoadedConfigValidationErrors()
|
|
if len(validationErrors) == 0 {
|
|
return
|
|
}
|
|
|
|
// Trigger a module error for more awareness.
|
|
module.states.Add(mgr.State{
|
|
ID: "config:validation-errors-on-load",
|
|
Name: "Invalid Settings",
|
|
Message: "Some current settings are invalid. Please update them and restart the Portmaster.",
|
|
Type: mgr.StateTypeError,
|
|
})
|
|
|
|
// Send one notification per invalid setting.
|
|
for _, validationError := range config.GetLoadedConfigValidationErrors() {
|
|
NotifyError(
|
|
fmt.Sprintf("config:validation-error:%s", validationError.Option.Key),
|
|
fmt.Sprintf("Invalid Setting for %s", validationError.Option.Name),
|
|
fmt.Sprintf(`Your current setting for %s is invalid: %s
|
|
|
|
Please update the setting and restart the Portmaster, until then the default value is used.`,
|
|
validationError.Option.Name,
|
|
validationError.Err.Error(),
|
|
),
|
|
Action{
|
|
Text: "Change",
|
|
Type: ActionTypeOpenSetting,
|
|
Payload: &ActionTypeOpenSettingPayload{
|
|
Key: validationError.Option.Key,
|
|
},
|
|
},
|
|
)
|
|
}
|
|
}
|
|
|
|
var (
|
|
module *Notifications
|
|
shimLoaded atomic.Bool
|
|
)
|
|
|
|
func New(instance instance) (*Notifications, error) {
|
|
if !shimLoaded.CompareAndSwap(false, true) {
|
|
return nil, errors.New("only one instance allowed")
|
|
}
|
|
m := mgr.New("Notifications")
|
|
module = &Notifications{
|
|
mgr: m,
|
|
instance: instance,
|
|
|
|
states: mgr.NewStateMgr(m),
|
|
}
|
|
|
|
return module, nil
|
|
}
|
|
|
|
type instance interface{}
|