mirror of
				https://github.com/Py-KMS-Organization/py-kms.git
				synced 2025-11-03 21:03:14 +00:00 
			
		
		
		
	Added multi-ip healthcheck support Cleanup of logging inside container-scripts Removed "nc" from containers
		
			
				
	
	
		
			93 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/python3 -u
 | 
						|
 | 
						|
# This replaces the old start.sh and ensures all arguments are bound correctly from the environment variables...
 | 
						|
import logging
 | 
						|
import os
 | 
						|
import subprocess
 | 
						|
import sys
 | 
						|
import time
 | 
						|
 | 
						|
PYTHON3 = '/usr/bin/python3'
 | 
						|
argumentVariableMapping = {
 | 
						|
  '-l': 'LCID',
 | 
						|
  '-c': 'CLIENT_COUNT',
 | 
						|
  '-a': 'ACTIVATION_INTERVAL',
 | 
						|
  '-r': 'RENEWAL_INTERVAL',
 | 
						|
  '-w': 'HWID',
 | 
						|
  '-V': 'LOGLEVEL',
 | 
						|
  '-F': 'LOGFILE',
 | 
						|
  '-S': 'LOGSIZE',
 | 
						|
  '-e': 'EPID'
 | 
						|
}
 | 
						|
 | 
						|
db_path = os.path.join(os.sep, 'home', 'py-kms', 'db', 'pykms_database.db')
 | 
						|
log_file = os.environ.get('LOGFILE', 'STDOUT')
 | 
						|
listen_ip = os.environ.get('IP', '::').split()
 | 
						|
listen_port = os.environ.get('PORT', '1688')
 | 
						|
want_webui = os.environ.get('WEBUI', '0') == '1' # if the variable is not provided, we assume the user does not want the webui
 | 
						|
 | 
						|
def start_kms(logger):
 | 
						|
  # Make sure the full path to the db exists
 | 
						|
  if want_webui and not os.path.exists(os.path.dirname(db_path)):
 | 
						|
    os.makedirs(os.path.dirname(db_path), exist_ok=True)
 | 
						|
 | 
						|
  # Build the command to execute
 | 
						|
  command = [PYTHON3, '-u', 'pykms_Server.py', listen_ip[0], listen_port]
 | 
						|
  for (arg, env) in argumentVariableMapping.items():
 | 
						|
    if env in os.environ and os.environ.get(env) != '':
 | 
						|
      command.append(arg)
 | 
						|
      command.append(os.environ.get(env))
 | 
						|
  if want_webui: # add this command directly before the "connect" subparser - otherwise you'll get silent crashes!
 | 
						|
    command.append('-s')
 | 
						|
    command.append(db_path)
 | 
						|
  if len(listen_ip) > 1:
 | 
						|
    command.append("connect")
 | 
						|
    for i in range(1, len(listen_ip)):
 | 
						|
      command.append("-n")
 | 
						|
      command.append(listen_ip[i] + "," + listen_port)
 | 
						|
 | 
						|
  logger.debug("server_cmd: %s" % (" ".join(str(x) for x in command).strip()))
 | 
						|
  pykms_process = subprocess.Popen(command)
 | 
						|
  pykms_webui_process = None
 | 
						|
 | 
						|
  try:
 | 
						|
    if want_webui:
 | 
						|
      time.sleep(2) # Wait for the server to start up
 | 
						|
      pykms_webui_env = os.environ.copy()
 | 
						|
      pykms_webui_env['PYKMS_SQLITE_DB_PATH'] = db_path
 | 
						|
      pykms_webui_env['PORT'] = '8080'
 | 
						|
      pykms_webui_env['PYKMS_LICENSE_PATH'] = '/LICENSE'
 | 
						|
      pykms_webui_env['PYKMS_VERSION_PATH'] = '/VERSION'
 | 
						|
      pykms_webui_process = subprocess.Popen(['gunicorn', '--log-level', os.environ.get('LOGLEVEL'), 'pykms_WebUI:app'], env=pykms_webui_env)
 | 
						|
  except Exception as e:
 | 
						|
    logger.error("Failed to start webui (ignoring and continuing anyways): %s" % e)
 | 
						|
 | 
						|
  try:
 | 
						|
    pykms_process.wait()
 | 
						|
  except Exception:
 | 
						|
    # In case of any error - just shut down
 | 
						|
    pass
 | 
						|
  except KeyboardInterrupt:
 | 
						|
    pass
 | 
						|
 | 
						|
  if pykms_webui_process:
 | 
						|
    pykms_webui_process.terminate()
 | 
						|
  pykms_process.terminate()
 | 
						|
 | 
						|
 | 
						|
# Main
 | 
						|
if __name__ == "__main__":
 | 
						|
  log_level_bootstrap = log_level = os.environ.get('LOGLEVEL', 'INFO')
 | 
						|
  if log_level_bootstrap == "MININFO":
 | 
						|
    log_level_bootstrap = "INFO"
 | 
						|
  loggersrv = logging.getLogger('start.py')
 | 
						|
  loggersrv.setLevel(log_level_bootstrap)
 | 
						|
  streamhandler = logging.StreamHandler(sys.stdout)
 | 
						|
  streamhandler.setLevel(log_level_bootstrap)
 | 
						|
  formatter = logging.Formatter(fmt='\x1b[94m%(asctime)s %(levelname)-8s %(message)s', datefmt='%a, %d %b %Y %H:%M:%S')
 | 
						|
  streamhandler.setFormatter(formatter)
 | 
						|
  loggersrv.addHandler(streamhandler)
 | 
						|
  loggersrv.debug("user id: %s" % os.getuid())
 | 
						|
 | 
						|
  start_kms(loggersrv)
 |