twgs-proxy.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #!/usr/bin/env python3
  2. import sys
  3. import os
  4. from subprocess import check_output
  5. from twisted.internet import reactor
  6. from twisted.internet import protocol
  7. from twisted.python import log
  8. from twisted.python.logfile import DailyLogFile
  9. import yaml
  10. def config_load(filename: str):
  11. global config
  12. with open(filename, "r") as fp:
  13. config = yaml.safe_load(fp)
  14. if os.path.exists("config_dev.yaml"):
  15. config_load("config_dev.yaml")
  16. else:
  17. config_load("config.yaml")
  18. # Extract the version information from git.
  19. # The match gives us only tags starting with v[0-9]* Using anything else trips up on double digits.
  20. version = check_output(
  21. [
  22. "git",
  23. "describe",
  24. "--abbrev=8",
  25. "--long",
  26. "--tags",
  27. "--dirty",
  28. "--always",
  29. "--match",
  30. "v[0-9]*",
  31. ],
  32. universal_newlines=True,
  33. ).strip()
  34. from proxy import Player
  35. if "logfile" in config and config["logfile"]:
  36. log.startLogging(DailyLogFile("proxy.log", "."))
  37. else:
  38. log.startLogging(sys.stdout)
  39. log.msg("This is version: {0}".format(version))
  40. factory = protocol.Factory()
  41. factory.protocol = Player
  42. reactor.listenTCP(config["listen_port"], factory, interface=config["listen_on"])
  43. reactor.run()