tcp-proxy.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. else:
  94. self.transport.write(chunk)
  95. self.setPlayerReceived()
  96. def lineReceived(self, line):
  97. """ line received from the game. """
  98. if LOG_LINES:
  99. log.msg(">> [{0}]".format(line))
  100. # if "TWGS v2.20b" in line and "www.eisonline.com" in line:
  101. # I would still love to "inject" this into the stream
  102. # so it is consistent.
  103. # self.queue_game.put(
  104. # "TWGS Proxy build "
  105. # + version
  106. # + " is active. \x1b[1;34m~\x1b[0m to activate.\n\r\n\r",
  107. # )
  108. if "TradeWars Game Server" in line and "Copyright (C) EIS" in line:
  109. # We are not in a game
  110. if not self.game is None:
  111. # We were in a game.
  112. self.game = None
  113. self.observer.emit("user-game", (self.factory.player.user, self.game))
  114. if "Selection (? for menu): " in line:
  115. game = line[-1]
  116. if game >= "A" and game < "Q":
  117. self.game = game
  118. log.msg("Game: {0}".format(self.game))
  119. self.observer.emit("user-game", (self.factory.player.user, self.game))
  120. self.observer.emit("game-line", line)
  121. def getPrompt(self):
  122. """ Return the current prompt, stripped of ANSI. """
  123. return cleanANSI(self.buffer)
  124. def dataReceived(self, chunk):
  125. """ Data received from the Game.
  126. Remove backspaces.
  127. Treat some ANSI codes as NewLine.
  128. Remove ANSI.
  129. Break into lines.
  130. Trim out carriage returns.
  131. Call lineReceived().
  132. "Optionally" pass data to player.
  133. FUTURE: trigger on prompt. [cleanANSI(buffer)]
  134. """
  135. # Store the text into the buffer before we inject into it.
  136. self.buffer += chunk.decode("utf-8", "ignore")
  137. # log.msg("data: [{0}]".format(repr(chunk)))
  138. if b"TWGS v2.20b" in chunk and b"www.eisonline.com" in chunk:
  139. # Ok, we have a possible target.
  140. target = b"www.eisonline.com\n\r"
  141. pos = chunk.find(target)
  142. if pos != -1:
  143. # Found it! Inject!
  144. message = (
  145. "TWGS Proxy build " + version + ". ~ to activate in game.\n\r"
  146. )
  147. chunk = (
  148. chunk[0 : pos + len(target)]
  149. + message.encode()
  150. + chunk[pos + len(target) :]
  151. )
  152. # Sequence error:
  153. # If I don't put the chunk(I received) to the player.
  154. # anything I display -- lineReceive() put() ... would
  155. # be out of order. (I'd be responding -- before it
  156. # was displayed to the user.)
  157. if self.to_player:
  158. self.queue_game.put(chunk)
  159. # self.buffer += chunk.decode("utf-8", "ignore")
  160. #
  161. # Begin processing the buffer
  162. #
  163. # Process any backspaces
  164. while "\b" in self.buffer:
  165. part = self.buffer.partition("\b")
  166. self.buffer = part[0][:-1] + part[2]
  167. # Treat some ANSI codes as a newline
  168. self.buffer = treatAsNL(self.buffer)
  169. # Break into lines
  170. while "\n" in self.buffer:
  171. part = self.buffer.partition("\n")
  172. line = part[0].replace("\r", "")
  173. # Clean ANSI codes from line
  174. line = cleanANSI(line)
  175. self.lineReceived(line)
  176. self.buffer = part[2]
  177. self.observer.emit("prompt", self.getPrompt())
  178. def connectionLost(self, why):
  179. log.msg("Game connectionLost because: %s" % why)
  180. self.observer.emit("close", why)
  181. self.queue_game.put(False)
  182. self.transport.loseConnection()
  183. class GlueFactory(protocol.ClientFactory):
  184. # class GlueFactory(protocol.Factory):
  185. maxDelay = 10
  186. protocol = Game
  187. def __init__(self, player):
  188. self.player = player
  189. self.queue_player = player.queue_player
  190. self.queue_game = player.queue_game
  191. self.observer = player.observer
  192. self.game = None
  193. def closeIt(self):
  194. log.msg("closeIt")
  195. self.queue_game.put(False)
  196. def getUser(self, user):
  197. log.msg("getUser( %s )" % user)
  198. self.twgs.logUser(user)
  199. # This was needed when I replaced ClientFactory with Factory.
  200. # def clientConnectionLost(self, connector, why):
  201. # log.msg("clientconnectionlost: %s" % why)
  202. # self.queue_client.put(False)
  203. def clientConnectionFailed(self, connector, why):
  204. log.msg("connection to game failed: %s" % why)
  205. self.queue_game.put(b"Sorry! I'm Unable to connect to the game server.\r\n")
  206. # syncterm gets cranky/locks up if we close this here.
  207. # (Because it is still sending rlogin information?)
  208. reactor.callLater(2, self.closeIt)
  209. class Player(protocol.Protocol):
  210. def __init__(self):
  211. self.buffer = ""
  212. self.user = None
  213. self.observer = Observer()
  214. self.game = None
  215. self.glue = None
  216. def connectionMade(self):
  217. """ connected, setup queues.
  218. queue_player is data from player.
  219. queue_game is data to player. (possibly from game)
  220. """
  221. self.queue_player = defer.DeferredQueue()
  222. self.queue_game = defer.DeferredQueue()
  223. self.setGameReceived()
  224. # Connect GlueFactory to this Player object.
  225. factory = GlueFactory(self)
  226. self.glue = factory
  227. # Make connection to the game server
  228. reactor.connectTCP(HOST, PORT, factory, 5)
  229. def setGameReceived(self):
  230. """ Get deferred from client queue, callback clientDataReceived. """
  231. self.queue_game.get().addCallback(self.gameDataReceived)
  232. def gameDataReceived(self, chunk):
  233. """ Data received from the game. """
  234. # If we have received game data, it has to be connected.
  235. if self.game is None:
  236. self.game = self.glue.game
  237. if chunk is False:
  238. self.transport.loseConnection()
  239. else:
  240. if type(chunk) == bytes:
  241. self.transport.write(chunk)
  242. elif type(chunk) == str:
  243. self.transport.write(chunk.encode())
  244. else:
  245. log.err("gameDataReceived: type (%s) given!", type(chunk))
  246. self.transport.write(chunk)
  247. self.setGameReceived()
  248. def dataReceived(self, chunk):
  249. if self.user is None:
  250. self.buffer += chunk.decode("utf-8", "ignore")
  251. parts = self.buffer.split("\x00")
  252. if len(parts) >= 5:
  253. # rlogin we have the username
  254. self.user = parts[1]
  255. log.msg("User: {0}".format(self.user))
  256. zpos = self.buffer.rindex("\x00")
  257. self.buffer = self.buffer[zpos + 1 :]
  258. # but I don't need the buffer anymore, so:
  259. self.buffer = ""
  260. # Pass user value on to whatever needs it.
  261. self.observer.emit("user", self.user)
  262. # Unfortunately, the ones interested in this don't exist yet.
  263. if not self.observer.emit("player", chunk):
  264. # Was not dispatched. Send to game.
  265. self.queue_player.put(chunk)
  266. else:
  267. # There's an observer. Don't continue.
  268. return
  269. if chunk == b"~":
  270. prompt = self.game.getPrompt()
  271. # Selection (? for menu): (the game server menu)
  272. # Enter your choice: (game menu)
  273. # Command [TL=00:00:00]:[1800] (?=Help)? : <- YES!
  274. # Computer command [TL=00:00:00]:[613] (?=Help)?
  275. # (and others I've yet to see...)
  276. if re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
  277. menu = ProxyMenu(self.game)
  278. else:
  279. nl = "\n\r"
  280. r = Style.RESET_ALL
  281. log.msg("NNY!")
  282. prompt = self.game.buffer
  283. self.queue_game.put(
  284. r
  285. + nl
  286. + Style.BRIGHT
  287. + "Proxy:"
  288. + Style.RESET_ALL
  289. + " I can't activate at this time."
  290. + nl
  291. )
  292. self.queue_game.put(prompt)
  293. self.queue_player.put("\a")
  294. # self.observer.emit("notyet", prompt)
  295. def connectionLost(self, why):
  296. log.msg("lost connection %s" % why)
  297. self.observer.emit("close", why)
  298. self.queue_player.put(False)
  299. def connectionFailed(self, why):
  300. log.msg("connectionFailed: %s" % why)
  301. if __name__ == "__main__":
  302. if LOGFILE:
  303. log.startLogging(DailyLogFile("proxy.log", "."))
  304. else:
  305. log.startLogging(sys.stdout)
  306. log.msg("This is version: %s" % version)
  307. factory = protocol.Factory()
  308. factory.protocol = Player
  309. reactor.listenTCP(LISTEN_PORT, factory, interface=LISTEN_ON)
  310. reactor.run()