mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
134 lines
4.3 KiB
Go
134 lines
4.3 KiB
Go
package core
|
|
|
|
import (
|
|
"github.com/safing/portmaster/base/config"
|
|
"github.com/safing/portmaster/service/configure"
|
|
"github.com/safing/portmaster/service/mgr"
|
|
)
|
|
|
|
// Release Channel Configuration Keys.
|
|
const (
|
|
ReleaseChannelKey = "core/releaseChannel"
|
|
ReleaseChannelJSONKey = "core.releaseChannel"
|
|
)
|
|
|
|
// Release Channels.
|
|
const (
|
|
ReleaseChannelStable = "stable"
|
|
ReleaseChannelBeta = "beta"
|
|
ReleaseChannelStaging = "staging"
|
|
ReleaseChannelSupport = "support"
|
|
)
|
|
|
|
const (
|
|
enableSoftwareUpdatesKey = "core/automaticUpdates"
|
|
enableIntelUpdatesKey = "core/automaticIntelUpdates"
|
|
)
|
|
|
|
var (
|
|
releaseChannel config.StringOption
|
|
enableSoftwareUpdates config.BoolOption
|
|
enableIntelUpdates config.BoolOption
|
|
|
|
initialReleaseChannel string
|
|
)
|
|
|
|
func registerUpdateConfig() error {
|
|
err := config.Register(&config.Option{
|
|
Name: "Release Channel",
|
|
Key: ReleaseChannelKey,
|
|
Description: `Use "Stable" for the best experience. The "Beta" channel will have the newest features and fixes, but may also break and cause interruption. Use others only temporarily and when instructed.`,
|
|
OptType: config.OptTypeString,
|
|
ExpertiseLevel: config.ExpertiseLevelExpert,
|
|
ReleaseLevel: config.ReleaseLevelStable,
|
|
RequiresRestart: true,
|
|
DefaultValue: ReleaseChannelStable,
|
|
PossibleValues: []config.PossibleValue{
|
|
{
|
|
Name: "Stable",
|
|
Description: "Production releases.",
|
|
Value: ReleaseChannelStable,
|
|
},
|
|
{
|
|
Name: "Beta",
|
|
Description: "Production releases for testing new features that may break and cause interruption.",
|
|
Value: ReleaseChannelBeta,
|
|
},
|
|
{
|
|
Name: "Support",
|
|
Description: "Support releases or version changes for troubleshooting. Only use temporarily and when instructed.",
|
|
Value: ReleaseChannelSupport,
|
|
},
|
|
{
|
|
Name: "Staging",
|
|
Description: "Dangerous development releases for testing random things and experimenting. Only use temporarily and when instructed.",
|
|
Value: ReleaseChannelStaging,
|
|
},
|
|
},
|
|
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 Software Updates",
|
|
Key: enableSoftwareUpdatesKey,
|
|
Description: "Automatically check for and download software updates. This does not include intelligence data updates.",
|
|
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
|
|
}
|
|
|
|
err = config.Register(&config.Option{
|
|
Name: "Automatic Intelligence Data Updates",
|
|
Key: enableIntelUpdatesKey,
|
|
Description: "Automatically check for and download intelligence data updates. This includes filter lists, geo-ip data, and more. Does not include software updates.",
|
|
OptType: config.OptTypeBool,
|
|
ExpertiseLevel: config.ExpertiseLevelExpert,
|
|
ReleaseLevel: config.ReleaseLevelStable,
|
|
RequiresRestart: false,
|
|
DefaultValue: true,
|
|
Annotations: config.Annotations{
|
|
config.DisplayOrderAnnotation: -11,
|
|
config.CategoryAnnotation: "Updates",
|
|
},
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func initUpdateConfig() {
|
|
releaseChannel = config.Concurrent.GetAsString(ReleaseChannelKey, ReleaseChannelStable)
|
|
enableSoftwareUpdates = config.Concurrent.GetAsBool(enableSoftwareUpdatesKey, true)
|
|
enableIntelUpdates = config.Concurrent.GetAsBool(enableIntelUpdatesKey, true)
|
|
|
|
initialReleaseChannel = releaseChannel()
|
|
|
|
module.instance.Config().EventConfigChange.AddCallback("configure updates", func(wc *mgr.WorkerCtx, s struct{}) (cancel bool, err error) {
|
|
configureUpdates()
|
|
return false, nil
|
|
})
|
|
configureUpdates()
|
|
}
|
|
|
|
func configureUpdates() {
|
|
module.instance.BinaryUpdates().Configure(enableSoftwareUpdates(), configure.GetBinaryUpdateURLs(releaseChannel()))
|
|
module.instance.IntelUpdates().Configure(enableIntelUpdates(), configure.DefaultIntelIndexURLs)
|
|
}
|