tcp-proxy.py 12 KB

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