2020-02-08 19:52:15 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-02-08 20:27:45 -05:00
|
|
|
# Daemon.py - PVC HTTP API daemon
|
2020-02-08 19:52:15 -05:00
|
|
|
# Part of the Parallel Virtual Cluster (PVC) system
|
|
|
|
#
|
2021-03-25 17:01:55 -04:00
|
|
|
# Copyright (C) 2018-2021 Joshua M. Boniface <joshua@boniface.me>
|
2020-02-08 19:52:15 -05: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
|
2021-03-25 16:57:17 -04:00
|
|
|
# the Free Software Foundation, version 3.
|
2020-02-08 19:52:15 -05:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2020-02-08 20:36:53 -05:00
|
|
|
import pvcapid.flaskapi as pvc_api
|
2020-02-08 19:52:15 -05:00
|
|
|
|
|
|
|
##########################################################
|
|
|
|
# Entrypoint
|
|
|
|
##########################################################
|
2020-10-26 01:39:55 -04:00
|
|
|
|
2021-02-08 02:50:16 -05:00
|
|
|
# Version string for startup output
|
2021-05-23 17:23:10 -04:00
|
|
|
version = '0.9.18'
|
2021-02-08 02:50:16 -05:00
|
|
|
|
2020-10-26 01:39:55 -04:00
|
|
|
if pvc_api.config['ssl_enabled']:
|
|
|
|
context = (pvc_api.config['ssl_cert_file'], pvc_api.config['ssl_key_file'])
|
2020-02-08 20:27:45 -05:00
|
|
|
else:
|
2020-11-07 12:16:36 -05:00
|
|
|
context = None
|
2020-02-08 19:52:15 -05:00
|
|
|
|
2021-02-08 02:50:16 -05:00
|
|
|
# Print our startup messages
|
|
|
|
print('')
|
|
|
|
print('|--------------------------------------------------|')
|
|
|
|
print('| ######## ## ## ###### |')
|
|
|
|
print('| ## ## ## ## ## ## |')
|
|
|
|
print('| ## ## ## ## ## |')
|
|
|
|
print('| ######## ## ## ## |')
|
|
|
|
print('| ## ## ## ## |')
|
|
|
|
print('| ## ## ## ## ## |')
|
|
|
|
print('| ## ### ###### |')
|
|
|
|
print('|--------------------------------------------------|')
|
|
|
|
print('| Parallel Virtual Cluster API daemon v{0: <11} |'.format(version))
|
|
|
|
print('| API version: v{0: <34} |'.format(pvc_api.API_VERSION))
|
2021-02-14 16:43:51 -05:00
|
|
|
print('| Listen: {0: <40} |'.format('{}:{}'.format(pvc_api.config['listen_address'], pvc_api.config['listen_port'])))
|
2021-02-08 02:50:16 -05:00
|
|
|
print('| SSL: {0: <43} |'.format(str(pvc_api.config['ssl_enabled'])))
|
|
|
|
print('| Authentication: {0: <32} |'.format(str(pvc_api.config['auth_enabled'])))
|
|
|
|
print('|--------------------------------------------------|')
|
|
|
|
print('')
|
|
|
|
|
2020-10-26 01:39:55 -04:00
|
|
|
pvc_api.app.run(pvc_api.config['listen_address'], pvc_api.config['listen_port'], threaded=True, ssl_context=context)
|