Onionr/src/__init__.py

78 lines
2.2 KiB
Python
Raw Normal View History

2019-07-30 05:19:22 +00:00
#!/usr/bin/env python3
'''
Onionr - Private P2P Communication
This file initializes Onionr when ran to be a daemon or with commands
Run with 'help' for usage.
'''
'''
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-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
# Onionr imports
from etc import onionrvalues # For different Onionr related constants such as versions
import onionrsetup as setup
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-07-30 18:13:10 +00:00
from onionrcommands import parser
from onionrplugins import onionrevents as events
2019-07-30 18:13:10 +00:00
2019-07-30 05:19:22 +00:00
setup.setup_config()
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
# 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