2019-11-27 00:01:32 +00:00
|
|
|
"""
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
Setup config from onboarding choices
|
|
|
|
"""
|
|
|
|
from pathlib import Path
|
2019-11-30 08:42:49 +00:00
|
|
|
from typing import Union
|
2019-11-27 00:01:32 +00:00
|
|
|
|
|
|
|
from filepaths import onboarding_mark_file
|
2019-11-30 08:42:49 +00:00
|
|
|
from onionrtypes import JSONSerializable
|
|
|
|
from onionrtypes import OnboardingConfig
|
|
|
|
import config
|
2019-11-27 00:01:32 +00:00
|
|
|
"""
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2019-11-30 08:42:49 +00:00
|
|
|
def _get_val_or_none(json: dict, key: str) -> Union[None, JSONSerializable]:
|
|
|
|
try:
|
|
|
|
return json['configInfo'][key]
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def set_config_from_onboarding(config_settings: OnboardingConfig):
|
|
|
|
|
2019-12-03 06:00:15 +00:00
|
|
|
get = _get_val_or_none
|
2019-11-30 08:42:49 +00:00
|
|
|
|
2019-12-03 06:00:15 +00:00
|
|
|
if get(config_settings, 'stateTarget') or not get(config_settings,
|
|
|
|
'networkContribution'):
|
2019-11-30 08:42:49 +00:00
|
|
|
config.set('general.security_level', 1)
|
|
|
|
|
2019-12-03 06:00:15 +00:00
|
|
|
config.set('ui.theme', 'light')
|
|
|
|
if get(config_settings, 'useDark'):
|
|
|
|
config.set('ui.theme', 'dark')
|
|
|
|
|
2019-12-06 07:21:30 +00:00
|
|
|
if not get(config_settings,
|
|
|
|
'useCircles') or config.get('general.security_level') > 0:
|
|
|
|
config.set('plugins.disabled',
|
|
|
|
config.get('plugins.disabled').append('flow'))
|
|
|
|
|
2019-12-03 06:00:15 +00:00
|
|
|
if not get(config_settings, 'useMail'):
|
2019-12-06 07:21:30 +00:00
|
|
|
config.set('plugins.disabled',
|
|
|
|
config.get('plugins.disabled').append('pms'))
|
2019-11-30 08:42:49 +00:00
|
|
|
|
|
|
|
config.set('general.store_plaintext_blocks',
|
2019-12-03 06:00:15 +00:00
|
|
|
get(config_settings, 'plainContrib'))
|
2019-11-30 08:42:49 +00:00
|
|
|
|
|
|
|
config.set('onboarding.done', True, savefile=True)
|
2019-11-27 00:01:32 +00:00
|
|
|
|
2019-12-06 07:21:30 +00:00
|
|
|
|
2019-11-27 00:01:32 +00:00
|
|
|
def set_onboarding_finished():
|
|
|
|
"""Create the onboarding completed setting file"""
|
|
|
|
Path(onboarding_mark_file).touch()
|
|
|
|
|
2019-12-06 07:21:30 +00:00
|
|
|
|
2019-11-27 00:01:32 +00:00
|
|
|
def is_onboarding_finished() -> bool:
|
|
|
|
return True
|