tcp-proxy.py 12 KB

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