config.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. from subprocess import check_output
  2. import yaml
  3. import os
  4. import logging, logging.handlers
  5. def config_load(filename: str):
  6. global config
  7. with open(filename, "r") as fp:
  8. config = yaml.safe_load(fp)
  9. if os.path.exists("config_dev.yaml"):
  10. config_load("config_dev.yaml")
  11. else:
  12. config_load("config.yaml")
  13. currentdir = os.path.dirname( os.path.abspath( __file__ ) )
  14. if 'debug' in config and config['debug']:
  15. level = logging.DEBUG
  16. else:
  17. level = logging.INFO
  18. root = logging.getLogger(None)
  19. ch = logging.StreamHandler()
  20. ch.setLevel( level )
  21. formatter = logging.Formatter( '%(asctime)s - %(filename)s (%(lineno)d) - %(name)s - %(levelname)s - %(message)s' )
  22. ch.setFormatter( formatter )
  23. root.addHandler( ch )
  24. if 'logfile' in config and config['logfile']:
  25. fhlog = logging.handlers.TimedRotatingFileHandler( filename = os.path.join( currentdir, 'twgs_proxy.log' ), when = 'midnight', backupCount = 7 )
  26. fhlog.setFormatter( formatter )
  27. fhlog.setLevel( level )
  28. root.addHandler(fhlog)
  29. root.setLevel(level)
  30. # with open('logging.config', 'r') as fp:
  31. # LOGGING_CONFIG = yaml.safe_load(fp)
  32. # Extract the version information from git.
  33. # The match gives us only tags starting with v[0-9]* Using anything else trips up on double digits.
  34. version = check_output(
  35. [
  36. "git",
  37. "describe",
  38. "--abbrev=8",
  39. "--long",
  40. "--tags",
  41. "--dirty",
  42. "--always",
  43. "--match",
  44. "v[0-9]*",
  45. ],
  46. universal_newlines=True,
  47. ).strip()