2020-02-04 03:49:21 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
2019-11-27 00:01:32 +00:00
|
|
|
|
2020-02-04 03:49:21 +00:00
|
|
|
Setup config from onboarding choices
|
2019-11-27 00:01:32 +00:00
|
|
|
"""
|
|
|
|
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
|
|
|
"""
|
2022-03-18 00:56:31 +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-27 00:01:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-02-03 23:01:08 +00:00
|
|
|
config.reload()
|
|
|
|
|
2020-10-22 12:51:20 +00:00
|
|
|
if get(config_settings, 'optimize'):
|
|
|
|
config.set('ui.animated_background', False)
|
|
|
|
config.set('general.insert_deniable_blocks', False)
|
|
|
|
|
2020-01-14 08:29:42 +00:00
|
|
|
if get(config_settings, 'stateTarget') or not get(config_settings,
|
2020-02-03 23:01:08 +00:00
|
|
|
'networkContrib'):
|
2019-11-30 08:42:49 +00:00
|
|
|
config.set('general.security_level', 1)
|
|
|
|
|
2020-02-04 02:08:06 +00:00
|
|
|
if get(config_settings, 'localThreat'):
|
|
|
|
config.set('general.security_level', 3)
|
2020-06-25 08:28:59 +00:00
|
|
|
config.set('transports.lan', False)
|
2020-02-04 02:08:06 +00:00
|
|
|
|
2019-12-03 06:00:15 +00:00
|
|
|
config.set('ui.theme', 'light')
|
|
|
|
if get(config_settings, 'useDark'):
|
|
|
|
config.set('ui.theme', 'dark')
|
2020-01-14 08:29:42 +00:00
|
|
|
|
2020-02-03 23:01:08 +00:00
|
|
|
disabled = config.get('plugins.disabled', [])
|
|
|
|
|
|
|
|
if not get(config_settings, 'circles') or \
|
|
|
|
config.get('general.security_level') > 0:
|
|
|
|
disabled.append('flow')
|
|
|
|
|
|
|
|
if not get(config_settings, 'mail'):
|
|
|
|
disabled.append('pms')
|
2019-12-06 07:21:30 +00:00
|
|
|
|
2020-02-03 23:01:08 +00:00
|
|
|
config.set('plugins.disabled', disabled)
|
2020-01-14 08:29:42 +00:00
|
|
|
|
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
|