Onionr/src/__init__.py

107 lines
2.9 KiB
Python
Raw Normal View History

2019-07-30 05:19:22 +00:00
#!/usr/bin/env python3
2019-12-13 18:24:29 +00:00
"""
2019-07-30 05:19:22 +00:00
Onionr - Private P2P Communication
This file initializes Onionr when ran to be a daemon or with commands
Run with 'help' for usage.
2019-12-13 18:24:29 +00:00
"""
"""
2019-07-30 05:19:22 +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-12-13 18:24:29 +00:00
"""
2019-07-30 05:19:22 +00:00
# Set the user's locale for encoding reasons
import locale # noqa
2019-07-30 05:19:22 +00:00
locale.setlocale(locale.LC_ALL, '')
ran_as_script = False
if __name__ == "__main__": ran_as_script = True
2019-07-30 05:19:22 +00:00
# Import standard libraries
import sys # noqa
2019-07-30 05:19:22 +00:00
try:
from etc import dependencycheck # noqa
except ModuleNotFoundError as e:
print('Onionr needs ' + str(e) + ' installed')
2019-07-30 05:19:22 +00:00
# Import 3rd party libraries
from filenuke import nuke # noqa
2019-07-30 05:19:22 +00:00
# Onionr imports
2019-12-13 18:24:29 +00:00
# For different Onionr related constants such as versions
from etc import onionrvalues # noqa
import onionrexceptions # noqa
import onionrsetup as setup # noqa
2019-07-30 05:19:22 +00:00
min_ver = onionrvalues.MIN_PY_VERSION
2019-07-30 05:19:22 +00:00
# Ensure we have at least the minimum python version
if sys.version_info[0] == 2 or sys.version_info[1] < min_ver:
sys.stderr.write('Error, Onionr requires Python 3.' + str(min_ver) + '\n')
2019-07-30 05:19:22 +00:00
sys.exit(1)
# Create Onionr data directories, must be done before most imports
from utils import createdirs
createdirs.create_dirs()
2019-12-13 18:24:29 +00:00
import bigbrother # noqa
from onionrcommands import parser # noqa
from onionrplugins import onionrevents as events # noqa
from onionrblocks.deleteplaintext import delete_plaintext_no_blacklist # noqa
2019-07-30 18:13:10 +00:00
2019-07-30 05:19:22 +00:00
setup.setup_config()
2019-12-13 18:24:29 +00:00
import config # noqa
from utils import identifyhome
2019-12-13 18:24:29 +00:00
if config.get('advanced.security_auditing', True):
try:
bigbrother.enable_ministries()
except onionrexceptions.PythonVersion:
pass
if not config.get('general.store_plaintext_blocks', True):
delete_plaintext_no_blacklist()
2019-07-30 05:19:22 +00:00
setup.setup_default_plugins()
2019-07-30 05:19:22 +00:00
def onionr_main():
2019-11-12 05:32:18 +00:00
"""Onionr entrypoint, start command processor"""
2019-07-30 18:13:10 +00:00
parser.register()
2019-07-30 05:19:22 +00:00
if ran_as_script:
onionr_main()
2019-09-29 04:57:29 +00:00
config.reload()
# If the setting is there, shred log file on exit
if config.get('log.file.remove_on_exit', True):
nuke.clean(config.get_config_file())
# Cleanup standard out/err because Python refuses to do it itsself
2019-09-29 04:57:29 +00:00
try:
sys.stderr.close()
except (IOError, BrokenPipeError):
2019-09-29 04:57:29 +00:00
pass
try:
sys.stdout.close()
except (IOError, BrokenPipeError):
2019-09-29 04:57:29 +00:00
pass