You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.7 KiB
112 lines
3.7 KiB
// Copyright (c) 2021 Proton Technologies AG |
|
// |
|
// This file is part of ProtonMail Bridge. |
|
// |
|
// ProtonMail Bridge is free software: you can redistribute it and/or modify |
|
// it under the terms of the GNU General Public License as published by |
|
// the Free Software Foundation, either version 3 of the License, or |
|
// (at your option) any later version. |
|
// |
|
// ProtonMail Bridge is distributed in the hope that it will be useful, |
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
// GNU General Public License for more details. |
|
// |
|
// You should have received a copy of the GNU General Public License |
|
// along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>. |
|
|
|
// Package settings provides access to persistent user settings. |
|
package settings |
|
|
|
import ( |
|
"fmt" |
|
"math/rand" |
|
"path/filepath" |
|
"time" |
|
) |
|
|
|
// Keys of preferences in JSON file. |
|
const ( |
|
FirstStartKey = "first_time_start" |
|
FirstStartGUIKey = "first_time_start_gui" |
|
LastHeartbeatKey = "last_heartbeat" |
|
APIPortKey = "user_port_api" |
|
IMAPPortKey = "user_port_imap" |
|
SMTPPortKey = "user_port_smtp" |
|
SMTPSSLKey = "user_ssl_smtp" |
|
AllowProxyKey = "allow_proxy" |
|
AutostartKey = "autostart" |
|
AutoUpdateKey = "autoupdate" |
|
CookiesKey = "cookies" |
|
ReportOutgoingNoEncKey = "report_outgoing_email_without_encryption" |
|
LastVersionKey = "last_used_version" |
|
UpdateChannelKey = "update_channel" |
|
RolloutKey = "rollout" |
|
PreferredKeychainKey = "preferred_keychain" |
|
CacheEnabledKey = "cache_enabled" |
|
CacheCompressionKey = "cache_compression" |
|
CacheLocationKey = "cache_location" |
|
CacheMinFreeAbsKey = "cache_min_free_abs" |
|
CacheMinFreeRatKey = "cache_min_free_rat" |
|
CacheConcurrencyRead = "cache_concurrent_read" |
|
CacheConcurrencyWrite = "cache_concurrent_write" |
|
IMAPWorkers = "imap_workers" |
|
FetchWorkers = "fetch_workers" |
|
AttachmentWorkers = "attachment_workers" |
|
ColorScheme = "color_scheme" |
|
) |
|
|
|
type Settings struct { |
|
*keyValueStore |
|
|
|
settingsPath string |
|
} |
|
|
|
func New(settingsPath string) *Settings { |
|
s := &Settings{ |
|
keyValueStore: newKeyValueStore(filepath.Join(settingsPath, "prefs.json")), |
|
settingsPath: settingsPath, |
|
} |
|
|
|
s.setDefaultValues() |
|
|
|
return s |
|
} |
|
|
|
const ( |
|
DefaultIMAPPort = "1143" |
|
DefaultSMTPPort = "1025" |
|
DefaultAPIPort = "1042" |
|
) |
|
|
|
func (s *Settings) setDefaultValues() { |
|
s.setDefault(FirstStartKey, "true") |
|
s.setDefault(FirstStartGUIKey, "true") |
|
s.setDefault(LastHeartbeatKey, fmt.Sprintf("%v", time.Now().YearDay())) |
|
s.setDefault(AllowProxyKey, "true") |
|
s.setDefault(AutostartKey, "true") |
|
s.setDefault(AutoUpdateKey, "true") |
|
s.setDefault(ReportOutgoingNoEncKey, "false") |
|
s.setDefault(LastVersionKey, "") |
|
s.setDefault(UpdateChannelKey, "") |
|
s.setDefault(RolloutKey, fmt.Sprintf("%v", rand.Float64())) //nolint[gosec] G404 It is OK to use weak random number generator here |
|
s.setDefault(PreferredKeychainKey, "") |
|
s.setDefault(CacheEnabledKey, "true") |
|
s.setDefault(CacheCompressionKey, "true") |
|
s.setDefault(CacheLocationKey, "") |
|
s.setDefault(CacheMinFreeAbsKey, "250000000") |
|
s.setDefault(CacheMinFreeRatKey, "") |
|
s.setDefault(CacheConcurrencyRead, "16") |
|
s.setDefault(CacheConcurrencyWrite, "16") |
|
s.setDefault(IMAPWorkers, "16") |
|
s.setDefault(FetchWorkers, "16") |
|
s.setDefault(AttachmentWorkers, "16") |
|
s.setDefault(ColorScheme, "") |
|
|
|
s.setDefault(APIPortKey, DefaultAPIPort) |
|
s.setDefault(IMAPPortKey, DefaultIMAPPort) |
|
s.setDefault(SMTPPortKey, DefaultSMTPPort) |
|
|
|
// By default, stick to STARTTLS. If the user uses catalina+applemail they'll have to change to SSL. |
|
s.setDefault(SMTPSSLKey, "false") |
|
}
|
|
|