mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-11 04:38:54 -06:00
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package state
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
|
|
"github.com/qdm12/gluetun/internal/configuration/settings"
|
|
"github.com/qdm12/gluetun/internal/constants"
|
|
)
|
|
|
|
func (s *State) GetSettings() (settings settings.HTTPProxy) {
|
|
s.settingsMu.RLock()
|
|
defer s.settingsMu.RUnlock()
|
|
return s.settings
|
|
}
|
|
|
|
func (s *State) SetSettings(ctx context.Context,
|
|
settings settings.HTTPProxy,
|
|
) (outcome string) {
|
|
s.settingsMu.Lock()
|
|
settingsUnchanged := reflect.DeepEqual(settings, s.settings)
|
|
if settingsUnchanged {
|
|
s.settingsMu.Unlock()
|
|
return "settings left unchanged"
|
|
}
|
|
newEnabled := *settings.Enabled
|
|
previousEnabled := *s.settings.Enabled
|
|
s.settings = settings
|
|
s.settingsMu.Unlock()
|
|
// Either restart or set changed status
|
|
switch {
|
|
case !newEnabled && !previousEnabled:
|
|
case newEnabled && previousEnabled:
|
|
_, _ = s.statusApplier.ApplyStatus(ctx, constants.Stopped)
|
|
_, _ = s.statusApplier.ApplyStatus(ctx, constants.Running)
|
|
case newEnabled && !previousEnabled:
|
|
_, _ = s.statusApplier.ApplyStatus(ctx, constants.Running)
|
|
case !newEnabled && previousEnabled:
|
|
_, _ = s.statusApplier.ApplyStatus(ctx, constants.Stopped)
|
|
}
|
|
return "settings updated"
|
|
}
|