mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
123 lines
3.1 KiB
Go
123 lines
3.1 KiB
Go
package updates
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/safing/portbase/config"
|
|
"github.com/safing/portbase/log"
|
|
)
|
|
|
|
const (
|
|
cfgDevModeKey = "core/devMode"
|
|
)
|
|
|
|
var (
|
|
releaseChannel config.StringOption
|
|
devMode config.BoolOption
|
|
enableUpdates config.BoolOption
|
|
|
|
previousReleaseChannel string
|
|
updatesCurrentlyEnabled bool
|
|
previousDevMode bool
|
|
)
|
|
|
|
func registerConfig() error {
|
|
err := config.Register(&config.Option{
|
|
Name: "Release Channel",
|
|
Key: releaseChannelKey,
|
|
Description: "Switch release channel.",
|
|
OptType: config.OptTypeString,
|
|
ExpertiseLevel: config.ExpertiseLevelDeveloper,
|
|
ReleaseLevel: config.ReleaseLevelExperimental,
|
|
RequiresRestart: false,
|
|
DefaultValue: releaseChannelStable,
|
|
PossibleValues: []config.PossibleValue{
|
|
{
|
|
Name: "Stable",
|
|
Value: releaseChannelStable,
|
|
},
|
|
{
|
|
Name: "Beta",
|
|
Value: releaseChannelBeta,
|
|
},
|
|
},
|
|
Annotations: config.Annotations{
|
|
config.DisplayOrderAnnotation: -4,
|
|
config.DisplayHintAnnotation: config.DisplayHintOneOf,
|
|
config.CategoryAnnotation: "Updates",
|
|
},
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = config.Register(&config.Option{
|
|
Name: "Automatic Updates",
|
|
Key: enableUpdatesKey,
|
|
Description: "Enable automatic checking, downloading and applying of updates. This affects all kinds of updates, including intelligence feeds and broadcast notifications.",
|
|
OptType: config.OptTypeBool,
|
|
ExpertiseLevel: config.ExpertiseLevelExpert,
|
|
ReleaseLevel: config.ReleaseLevelStable,
|
|
RequiresRestart: false,
|
|
DefaultValue: true,
|
|
Annotations: config.Annotations{
|
|
config.DisplayOrderAnnotation: -12,
|
|
config.CategoryAnnotation: "Updates",
|
|
},
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func initConfig() {
|
|
releaseChannel = config.GetAsString(releaseChannelKey, releaseChannelStable)
|
|
previousReleaseChannel = releaseChannel()
|
|
|
|
enableUpdates = config.GetAsBool(enableUpdatesKey, true)
|
|
updatesCurrentlyEnabled = enableUpdates()
|
|
|
|
devMode = config.GetAsBool(cfgDevModeKey, false)
|
|
previousDevMode = devMode()
|
|
}
|
|
|
|
func updateRegistryConfig(_ context.Context, _ interface{}) error {
|
|
changed := false
|
|
forceUpdate := false
|
|
|
|
if releaseChannel() != previousReleaseChannel {
|
|
registry.SetBeta(releaseChannel() == releaseChannelBeta)
|
|
previousReleaseChannel = releaseChannel()
|
|
changed = true
|
|
}
|
|
|
|
if devMode() != previousDevMode {
|
|
registry.SetDevMode(devMode())
|
|
previousDevMode = devMode()
|
|
changed = true
|
|
}
|
|
|
|
if enableUpdates() != updatesCurrentlyEnabled {
|
|
updatesCurrentlyEnabled = enableUpdates()
|
|
changed = true
|
|
forceUpdate = updatesCurrentlyEnabled
|
|
}
|
|
|
|
if changed {
|
|
registry.SelectVersions()
|
|
module.TriggerEvent(VersionUpdateEvent, nil)
|
|
|
|
if forceUpdate {
|
|
module.Resolve(updateFailed)
|
|
_ = TriggerUpdate()
|
|
log.Infof("updates: automatic updates enabled again.")
|
|
} else if !updatesCurrentlyEnabled {
|
|
module.Warning(updateFailed, "Automatic updates are disabled! This also affects security updates and threat intelligence.")
|
|
log.Warningf("updates: automatic updates are now disabled.")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|