tcp-proxy.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. #!/usr/bin/env python3
  2. import sys
  3. import re
  4. from twisted.internet import defer
  5. from twisted.internet import protocol
  6. from twisted.internet import reactor
  7. from twisted.internet import task
  8. from twisted.python import log
  9. from twisted.python.logfile import DailyLogFile
  10. import pendulum
  11. from subprocess import check_output
  12. from colorama import Fore, Back, Style
  13. from pprint import pformat
  14. # This isn't the best configuration, but it's simple
  15. # and works. Mostly.
  16. try:
  17. from config_dev import *
  18. except ModuleNotFoundError:
  19. from config import *
  20. # Extract the version information from git.
  21. # The match gives us only tags starting with v[0-9]* Using anything else trips up on double digits.
  22. version = check_output(
  23. [
  24. "git",
  25. "describe",
  26. "--abbrev=8",
  27. "--long",
  28. "--tags",
  29. "--dirty",
  30. "--always",
  31. "--match",
  32. "v[0-9]*",
  33. ],
  34. universal_newlines=True,
  35. ).strip()
  36. def merge(color_string):
  37. """ Given a string of colorama ANSI, merge them if you can. """
  38. return color_string.replace("m\x1b[", ";")
  39. # https://en.wikipedia.org/wiki/ANSI_escape_code
  40. # Cleans all ANSI
  41. cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
  42. # Looks for ANSI (that should be considered to be a newline)
  43. # This needs to see what is send when something enters / leaves
  44. # the player's current sector. (That doesn't work/isn't
  45. # detected. NNY!) It is "\x1b[K" Erase in Line!
  46. makeNL = re.compile(r"\x1b\[[0-9;]*[JK]")
  47. def treatAsNL(line):
  48. """ Replace any ANSI codes that would be better understood as newlines. """
  49. global makeNL
  50. return makeNL.sub("\n", line)
  51. def cleanANSI(line):
  52. """ Remove all ANSI codes. """
  53. global cleaner
  54. return cleaner.sub("", line)
  55. # return re.sub(r'\x1b\[([0-9,A-Z]{1,2}(;[0-9]{1,2})?(;[0-9]{3})?)?[m|K]?', '', line)
  56. from observer import Observer
  57. from flexible import PlayerInput, ProxyMenu
  58. class Game(protocol.Protocol):
  59. def __init__(self):
  60. self.buffer = ""
  61. self.game = None
  62. self.usergame = (None, None)
  63. self.to_player = True
  64. def connectionMade(self):
  65. log.msg("Connected to Game Server")
  66. self.queue_player = self.factory.queue_player
  67. self.queue_game = self.factory.queue_game
  68. self.observer = self.factory.observer
  69. self.factory.game = self
  70. self.setPlayerReceived()
  71. self.observer.connect("user-game", self.show_game)
  72. def show_game(self, game):
  73. self.usergame = game
  74. log.msg("## User-Game:", game)
  75. if game[1] is None:
  76. if hasattr(self, "portdata"):
  77. log.msg("Clearing out old portdata.")
  78. self.portdata = {}
  79. def setPlayerReceived(self):
  80. """ Get deferred from client queue, callback clientDataReceived. """
  81. self.queue_player.get().addCallback(self.playerDataReceived)
  82. def playerDataReceived(self, chunk):
  83. if chunk is False:
  84. self.queue_player = None
  85. log.msg("Player: disconnected, close connection to game")
  86. # I don't believe I need this if I'm using protocol.Factory
  87. self.factory.continueTrying = False
  88. self.transport.loseConnection()
  89. else:
  90. # Pass received data to the server
  91. if type(chunk) == str:
  92. self.transport.write(chunk.encode())
  93. log.msg(">> [{0}]".format(chunk))
  94. else:
  95. self.transport.write(chunk)
  96. log.msg(">> [{0}]".format(chunk.decode("utf-8", "ignore")))
  97. self.setPlayerReceived()
  98. def lineReceived(self, line):
  99. """ line received from the game. """
  100. if LOG_LINES:
  101. log.msg("<< [{0}]".format(line))
  102. # if "TWGS v2.20b" in line and "www.eisonline.com" in line:
  103. # I would still love to "inject" this into the stream
  104. # so it is consistent.
  105. # self.queue_game.put(
  106. # "TWGS Proxy build "
  107. # + version
  108. # + " is active. \x1b[1;34m~\x1b[0m to activate.\n\r\n\r",
  109. # )
  110. if "TradeWars Game Server" in line and "Copyright (C) EIS" in line:
  111. # We are not in a game
  112. if not self.game is None:
  113. # We were in a game.
  114. self.game = None
  115. self.observer.emit("user-game", (self.factory.player.user, self.game))
  116. if "Selection (? for menu): " in line:
  117. game = line[-1]
  118. if game >= "A" and game < "Q":
  119. self.game = game
  120. log.msg("Game: {0}".format(self.game))
  121. self.observer.emit("user-game", (self.factory.player.user, self.game))
  122. self.observer.emit("game-line", line)
  123. def getPrompt(self):
  124. """ Return the current prompt, stripped of ANSI. """
  125. return cleanANSI(self.buffer)
  126. def dataReceived(self, chunk):
  127. """ Data received from the Game.
  128. Remove backspaces.
  129. Treat some ANSI codes as NewLine.
  130. Remove ANSI.
  131. Break into lines.
  132. Trim out carriage returns.
  133. Call lineReceived().
  134. "Optionally" pass data to player.
  135. FUTURE: trigger on prompt. [cleanANSI(buffer)]
  136. """
  137. # Store the text into the buffer before we inject into it.
  138. self.buffer += chunk.decode("utf-8", "ignore")
  139. # log.msg("data: [{0}]".format(repr(chunk)))
  140. if b"TWGS v2.20b" in chunk and b"www.eisonline.com" in chunk:
  141. # Ok, we have a possible target.
  142. target = b"www.eisonline.com\n\r"
  143. pos = chunk.find(target)
  144. if pos != -1:
  145. # Found it! Inject!
  146. message = (
  147. "TWGS Proxy build " + version + ". ~ to activate in game.\n\r"
  148. )
  149. chunk = (
  150. chunk[0 : pos + len(target)]
  151. + message.encode()
  152. + chunk[pos + len(target) :]
  153. )
  154. # Sequence error:
  155. # If I don't put the chunk(I received) to the player.
  156. # anything I display -- lineReceive() put() ... would
  157. # be out of order. (I'd be responding -- before it
  158. # was displayed to the user.)
  159. if self.to_player:
  160. self.queue_game.put(chunk)
  161. # self.buffer += chunk.decode("utf-8", "ignore")
  162. #
  163. # Begin processing the buffer
  164. #
  165. # Process any backspaces
  166. while "\b" in self.buffer:
  167. part = self.buffer.partition("\b")
  168. self.buffer = part[0][:-1] + part[2]
  169. # Treat some ANSI codes as a newline
  170. self.buffer = treatAsNL(self.buffer)
  171. # Break into lines
  172. while "\n" in self.buffer:
  173. part = self.buffer.partition("\n")
  174. line = part[0].replace("\r", "")
  175. # Clean ANSI codes from line
  176. line = cleanANSI(line)
  177. self.lineReceived(line)
  178. self.buffer = part[2]
  179. self.observer.emit("prompt", self.getPrompt())
  180. def connectionLost(self, why):
  181. log.msg("Game connectionLost because: %s" % why)
  182. self.observer.emit("close", why)
  183. self.queue_game.put(False)
  184. self.transport.loseConnection()
  185. class GlueFactory(protocol.ClientFactory):
  186. # class GlueFactory(protocol.Factory):
  187. maxDelay = 10
  188. protocol = Game
  189. def __init__(self, player):
  190. self.player = player
  191. self.queue_player = player.queue_player
  192. self.queue_game = player.queue_game
  193. self.observer = player.observer
  194. self.game = None
  195. def closeIt(self):
  196. log.msg("closeIt")
  197. self.queue_game.put(False)
  198. def getUser(self, user):
  199. log.msg("getUser( %s )" % user)
  200. self.twgs.logUser(user)
  201. # This was needed when I replaced ClientFactory with Factory.
  202. # def clientConnectionLost(self, connector, why):
  203. # log.msg("clientconnectionlost: %s" % why)
  204. # self.queue_client.put(False)
  205. def clientConnectionFailed(self, connector, why):
  206. log.msg("connection to game failed: %s" % why)
  207. self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
  208. # syncterm gets cranky/locks up if we close this here.
  209. # (Because it is still sending rlogin information?)
  210. reactor.callLater(2, self.closeIt)
  211. class Player(protocol.Protocol):
  212. def __init__(self):
  213. self.buffer = ""
  214. self.user = None
  215. self.observer = Observer()
  216. self.game = None
  217. self.glue = None
  218. def connectionMade(self):
  219. """ connected, setup queues.
  220. queue_player is data from player.
  221. queue_game is data to player. (possibly from game)
  222. """
  223. self.queue_player = defer.DeferredQueue()
  224. self.queue_game = defer.DeferredQueue()
  225. self.setGameReceived()
  226. # Connect GlueFactory to this Player object.
  227. factory = GlueFactory(self)
  228. self.glue = factory
  229. # Make connection to the game server
  230. reactor.connectTCP(HOST, PORT, factory, 5)
  231. def setGameReceived(self):
  232. """ Get deferred from client queue, callback clientDataReceived. """
  233. self.queue_game.get().addCallback(self.gameDataReceived)
  234. def gameDataReceived(self, chunk):
  235. """ Data received from the game. """
  236. # If we have received game data, it has to be connected.
  237. if self.game is None:
  238. self.game = self.glue.game
  239. if chunk is False:
  240. self.transport.loseConnection()
  241. else:
  242. if type(chunk) == bytes:
  243. self.transport.write(chunk)
  244. elif type(chunk) == str:
  245. self.transport.write(chunk.encode())
  246. else:
  247. log.err("gameDataReceived: type (%s) given!".format(type(chunk)))
  248. self.transport.write(chunk)
  249. self.setGameReceived()
  250. def dataReceived(self, chunk):
  251. if self.user is None:
  252. self.buffer += chunk.decode("utf-8", "ignore")
  253. parts = self.buffer.split("\x00")
  254. if len(parts) >= 5:
  255. # rlogin we have the username
  256. self.user = parts[1]
  257. log.msg("User: {0}".format(self.user))
  258. zpos = self.buffer.rindex("\x00")
  259. self.buffer = self.buffer[zpos + 1 :]
  260. # but I don't need the buffer anymore, so:
  261. self.buffer = ""
  262. # Pass user value on to whatever needs it.
  263. self.observer.emit("user", self.user)
  264. # Unfortunately, the ones interested in this don't exist yet.
  265. if not self.observer.emit("player", chunk):
  266. # Was not dispatched. Send to game.
  267. self.queue_player.put(chunk)
  268. else:
  269. # There's an observer. Don't continue.
  270. return
  271. if chunk == b"~":
  272. prompt = self.game.getPrompt()
  273. # Selection (? for menu): (the game server menu)
  274. # Enter your choice: (game menu)
  275. # Command [TL=00:00:00]:[1800] (?=Help)? : <- YES!
  276. # Computer command [TL=00:00:00]:[613] (?=Help)?
  277. # (and others I've yet to see...)
  278. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  279. menu = ProxyMenu(self.game)
  280. else:
  281. nl = "\n\r"
  282. r = Style.RESET_ALL
  283. log.msg("NNY!")
  284. prompt = self.game.buffer
  285. self.queue_game.put(
  286. r
  287. + nl
  288. + Style.BRIGHT
  289. + "Proxy:"
  290. + Style.RESET_ALL
  291. + " I can't activate at this time."
  292. + nl
  293. )
  294. self.queue_game.put(prompt)
  295. self.queue_player.put("\a")
  296. # self.observer.emit("notyet", prompt)
  297. def connectionLost(self, why):
  298. log.msg("lost connection %s" % why)
  299. self.observer.emit("close", why)
  300. self.queue_player.put(False)
  301. def connectionFailed(self, why):
  302. log.msg("connectionFailed: %s" % why)
  303. if __name__ == "__main__":
  304. if LOGFILE:
  305. log.startLogging(DailyLogFile("proxy.log", "."))
  306. else:
  307. log.startLogging(sys.stdout)
  308. log.msg("This is version: %s" % version)
  309. factory = protocol.Factory()
  310. factory.protocol = Player
  311. reactor.listenTCP(LISTEN_PORT, factory, interface=LISTEN_ON)
  312. reactor.run()