IRCConnector.cs 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Timers;
  29. using System.Collections.Generic;
  30. using System.IO;
  31. using System.Net.Sockets;
  32. using System.Reflection;
  33. using System.Text.RegularExpressions;
  34. using System.Threading;
  35. using OpenMetaverse;
  36. using log4net;
  37. using Nini.Config;
  38. using OpenSim.Framework;
  39. using OpenSim.Framework.Monitoring;
  40. using OpenSim.Region.Framework.Interfaces;
  41. using OpenSim.Region.Framework.Scenes;
  42. namespace OpenSim.Region.OptionalModules.Avatar.Chat
  43. {
  44. public class IRCConnector
  45. {
  46. #region Global (static) state
  47. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  48. // Local constants
  49. // This computation is not the real region center if the region is larger than 256.
  50. // This computation isn't fixed because there is not a handle back to the region.
  51. private static readonly Vector3 CenterOfRegion = new Vector3(((int)Constants.RegionSize * 0.5f), ((int)Constants.RegionSize * 0.5f), 20);
  52. private static readonly char[] CS_SPACE = { ' ' };
  53. private const int WD_INTERVAL = 1000; // base watchdog interval
  54. private static int PING_PERIOD = 15; // WD intervals per PING
  55. private static int ICCD_PERIOD = 10; // WD intervals between Connects
  56. private static int L_TIMEOUT = 25; // Login time out interval
  57. private static int _idk_ = 0; // core connector identifier
  58. private static int _pdk_ = 0; // ping interval counter
  59. private static int _icc_ = ICCD_PERIOD; // IRC connect counter
  60. // List of configured connectors
  61. private static List<IRCConnector> m_connectors = new List<IRCConnector>();
  62. // Watchdog state
  63. private static System.Timers.Timer m_watchdog = null;
  64. // The watch-dog gets started as soon as the class is instantiated, and
  65. // ticks once every second (WD_INTERVAL)
  66. static IRCConnector()
  67. {
  68. m_log.DebugFormat("[IRC-Connector]: Static initialization started");
  69. m_watchdog = new System.Timers.Timer(WD_INTERVAL);
  70. m_watchdog.Elapsed += new ElapsedEventHandler(WatchdogHandler);
  71. m_watchdog.AutoReset = true;
  72. m_watchdog.Start();
  73. m_log.DebugFormat("[IRC-Connector]: Static initialization complete");
  74. }
  75. #endregion
  76. #region Instance state
  77. // Connector identity
  78. internal int idn = _idk_++;
  79. // How many regions depend upon this connection
  80. // This count is updated by the ChannelState object and reflects the sum
  81. // of the region clients associated with the set of associated channel
  82. // state instances. That's why it cannot be managed here.
  83. internal int depends = 0;
  84. // This variable counts the number of resets that have been performed
  85. // on the connector. When a listener thread terminates, it checks to
  86. // see of the reset count has changed before it schedules another
  87. // reset.
  88. internal int m_resetk = 0;
  89. private Object msyncConnect = new Object();
  90. internal bool m_randomizeNick = true; // add random suffix
  91. internal string m_baseNick = null; // base name for randomizing
  92. internal string m_nick = null; // effective nickname
  93. public string Nick // Public property
  94. {
  95. get { return m_nick; }
  96. set { m_nick = value; }
  97. }
  98. private bool m_enabled = false; // connector enablement
  99. public bool Enabled
  100. {
  101. get { return m_enabled; }
  102. }
  103. private bool m_connected = false; // connection status
  104. private bool m_pending = false; // login disposition
  105. private int m_timeout = L_TIMEOUT; // login timeout counter
  106. public bool Connected
  107. {
  108. get { return m_connected; }
  109. }
  110. private string m_ircChannel; // associated channel id
  111. public string IrcChannel
  112. {
  113. get { return m_ircChannel; }
  114. set { m_ircChannel = value; }
  115. }
  116. private uint m_port = 6667; // session port
  117. public uint Port
  118. {
  119. get { return m_port; }
  120. set { m_port = value; }
  121. }
  122. private string m_server = null; // IRC server name
  123. public string Server
  124. {
  125. get { return m_server; }
  126. set { m_server = value; }
  127. }
  128. private string m_password = null;
  129. public string Password
  130. {
  131. get { return m_password; }
  132. set { m_password = value; }
  133. }
  134. private string m_user = "USER OpenSimBot 8 * :I'm an OpenSim to IRC bot";
  135. public string User
  136. {
  137. get { return m_user; }
  138. }
  139. // Network interface
  140. private TcpClient m_tcp;
  141. private NetworkStream m_stream = null;
  142. private StreamReader m_reader;
  143. private StreamWriter m_writer;
  144. // Channel characteristic info (if available)
  145. internal string usermod = String.Empty;
  146. internal string chanmod = String.Empty;
  147. internal string version = String.Empty;
  148. internal bool motd = false;
  149. #endregion
  150. #region connector instance management
  151. internal IRCConnector(ChannelState cs)
  152. {
  153. // Prepare network interface
  154. m_tcp = null;
  155. m_writer = null;
  156. m_reader = null;
  157. // Setup IRC session parameters
  158. m_server = cs.Server;
  159. m_password = cs.Password;
  160. m_baseNick = cs.BaseNickname;
  161. m_randomizeNick = cs.RandomizeNickname;
  162. m_ircChannel = cs.IrcChannel;
  163. m_port = cs.Port;
  164. m_user = cs.User;
  165. if (m_watchdog == null)
  166. {
  167. // Non-differentiating
  168. ICCD_PERIOD = cs.ConnectDelay;
  169. PING_PERIOD = cs.PingDelay;
  170. // Smaller values are not reasonable
  171. if (ICCD_PERIOD < 5)
  172. ICCD_PERIOD = 5;
  173. if (PING_PERIOD < 5)
  174. PING_PERIOD = 5;
  175. _icc_ = ICCD_PERIOD; // get started right away!
  176. }
  177. // The last line of defense
  178. if (m_server == null || m_baseNick == null || m_ircChannel == null || m_user == null)
  179. throw new Exception("Invalid connector configuration");
  180. // Generate an initial nickname
  181. if (m_randomizeNick)
  182. m_nick = m_baseNick + Util.RandomClass.Next(1, 99);
  183. else
  184. m_nick = m_baseNick;
  185. m_log.InfoFormat("[IRC-Connector-{0}]: Initialization complete", idn);
  186. }
  187. ~IRCConnector()
  188. {
  189. m_watchdog.Stop();
  190. Close();
  191. }
  192. // Mark the connector as connectable. Harmless if already enabled.
  193. public void Open()
  194. {
  195. if (!m_enabled)
  196. {
  197. if (!Connected)
  198. {
  199. Connect();
  200. }
  201. lock (m_connectors)
  202. m_connectors.Add(this);
  203. m_enabled = true;
  204. }
  205. }
  206. // Only close the connector if the dependency count is zero.
  207. public void Close()
  208. {
  209. m_log.InfoFormat("[IRC-Connector-{0}] Closing", idn);
  210. lock (msyncConnect)
  211. {
  212. if ((depends == 0) && Enabled)
  213. {
  214. m_enabled = false;
  215. if (Connected)
  216. {
  217. m_log.DebugFormat("[IRC-Connector-{0}] Closing interface", idn);
  218. // Cleanup the IRC session
  219. try
  220. {
  221. m_writer.WriteLine(String.Format("QUIT :{0} to {1} wormhole to {2} closing",
  222. m_nick, m_ircChannel, m_server));
  223. m_writer.Flush();
  224. }
  225. catch (Exception) { }
  226. m_connected = false;
  227. try { m_writer.Close(); }
  228. catch (Exception) { }
  229. try { m_reader.Close(); }
  230. catch (Exception) { }
  231. try { m_stream.Close(); }
  232. catch (Exception) { }
  233. try { m_tcp.Close(); }
  234. catch (Exception) { }
  235. }
  236. lock (m_connectors)
  237. m_connectors.Remove(this);
  238. }
  239. }
  240. m_log.InfoFormat("[IRC-Connector-{0}] Closed", idn);
  241. }
  242. #endregion
  243. #region session management
  244. // Connect to the IRC server. A connector should always be connected, once enabled
  245. public void Connect()
  246. {
  247. if (!m_enabled)
  248. return;
  249. // Delay until next WD cycle if this is too close to the last start attempt
  250. while (_icc_ < ICCD_PERIOD)
  251. return;
  252. m_log.DebugFormat("[IRC-Connector-{0}]: Connection request for {1} on {2}:{3}", idn, m_nick, m_server, m_ircChannel);
  253. lock (msyncConnect)
  254. {
  255. _icc_ = 0;
  256. try
  257. {
  258. if (m_connected) return;
  259. m_connected = true;
  260. m_pending = true;
  261. m_timeout = L_TIMEOUT;
  262. m_tcp = new TcpClient(m_server, (int)m_port);
  263. m_stream = m_tcp.GetStream();
  264. m_reader = new StreamReader(m_stream);
  265. m_writer = new StreamWriter(m_stream);
  266. m_log.InfoFormat("[IRC-Connector-{0}]: Connected to {1}:{2}", idn, m_server, m_port);
  267. WorkManager.StartThread(ListenerRun, "IRCConnectionListenerThread", ThreadPriority.Normal, true, false);
  268. // This is the message order recommended by RFC 2812
  269. if (m_password != null)
  270. m_writer.WriteLine(String.Format("PASS {0}", m_password));
  271. m_writer.WriteLine(String.Format("NICK {0}", m_nick));
  272. m_writer.Flush();
  273. m_writer.WriteLine(m_user);
  274. m_writer.Flush();
  275. m_writer.WriteLine(String.Format("JOIN {0}", m_ircChannel));
  276. m_writer.Flush();
  277. m_log.InfoFormat("[IRC-Connector-{0}]: {1} has asked to join {2}", idn, m_nick, m_ircChannel);
  278. }
  279. catch (Exception e)
  280. {
  281. m_log.ErrorFormat("[IRC-Connector-{0}] cannot connect {1} to {2}:{3}: {4}",
  282. idn, m_nick, m_server, m_port, e.Message);
  283. // It might seem reasonable to reset connected and pending status here
  284. // Seeing as we know that the login has failed, but if we do that, then
  285. // connection will be retried each time the interconnection interval
  286. // expires. By leaving them as they are, the connection will be retried
  287. // when the login timeout expires. Which is preferred.
  288. }
  289. }
  290. return;
  291. }
  292. // Reconnect is used to force a re-cycle of the IRC connection. Should generally
  293. // be a transparent event
  294. public void Reconnect()
  295. {
  296. m_log.DebugFormat("[IRC-Connector-{0}]: Reconnect request for {1} on {2}:{3}", idn, m_nick, m_server, m_ircChannel);
  297. // Don't do this if a Connect is in progress...
  298. lock (msyncConnect)
  299. {
  300. if (m_connected)
  301. {
  302. m_log.InfoFormat("[IRC-Connector-{0}] Resetting connector", idn);
  303. // Mark as disconnected. This will allow the listener thread
  304. // to exit if still in-flight.
  305. // The listener thread is not aborted - it *might* actually be
  306. // the thread that is running the Reconnect! Instead just close
  307. // the socket and it will disappear of its own accord, once this
  308. // processing is completed.
  309. try { m_writer.Close(); }
  310. catch (Exception) { }
  311. try { m_reader.Close(); }
  312. catch (Exception) { }
  313. try { m_tcp.Close(); }
  314. catch (Exception) { }
  315. m_connected = false;
  316. m_pending = false;
  317. m_resetk++;
  318. }
  319. }
  320. Connect();
  321. }
  322. #endregion
  323. #region Outbound (to-IRC) message handlers
  324. public void PrivMsg(string pattern, string from, string region, string msg)
  325. {
  326. // m_log.DebugFormat("[IRC-Connector-{0}] PrivMsg to IRC from {1}: <{2}>", idn, from,
  327. // String.Format(pattern, m_ircChannel, from, region, msg));
  328. // One message to the IRC server
  329. try
  330. {
  331. m_writer.WriteLine(pattern, m_ircChannel, from, region, msg);
  332. m_writer.Flush();
  333. // m_log.DebugFormat("[IRC-Connector-{0}]: PrivMsg from {1} in {2}: {3}", idn, from, region, msg);
  334. }
  335. catch (IOException)
  336. {
  337. m_log.ErrorFormat("[IRC-Connector-{0}]: PrivMsg I/O Error: disconnected from IRC server", idn);
  338. Reconnect();
  339. }
  340. catch (Exception ex)
  341. {
  342. m_log.ErrorFormat("[IRC-Connector-{0}]: PrivMsg exception : {1}", idn, ex.Message);
  343. m_log.Debug(ex);
  344. }
  345. }
  346. public void Send(string msg)
  347. {
  348. // m_log.DebugFormat("[IRC-Connector-{0}] Send to IRC : <{1}>", idn, msg);
  349. try
  350. {
  351. m_writer.WriteLine(msg);
  352. m_writer.Flush();
  353. // m_log.DebugFormat("[IRC-Connector-{0}] Sent command string: {1}", idn, msg);
  354. }
  355. catch (IOException)
  356. {
  357. m_log.ErrorFormat("[IRC-Connector-{0}] Disconnected from IRC server.(Send)", idn);
  358. Reconnect();
  359. }
  360. catch (Exception ex)
  361. {
  362. m_log.ErrorFormat("[IRC-Connector-{0}] Send exception trap: {0}", idn, ex.Message);
  363. m_log.Debug(ex);
  364. }
  365. }
  366. #endregion
  367. public void ListenerRun()
  368. {
  369. string inputLine;
  370. int resetk = m_resetk;
  371. try
  372. {
  373. while (m_enabled && m_connected)
  374. {
  375. if ((inputLine = m_reader.ReadLine()) == null)
  376. throw new Exception("Listener input socket closed");
  377. Watchdog.UpdateThread();
  378. // m_log.Info("[IRCConnector]: " + inputLine);
  379. if (inputLine.Contains("PRIVMSG"))
  380. {
  381. Dictionary<string, string> data = ExtractMsg(inputLine);
  382. // Any chat ???
  383. if (data != null)
  384. {
  385. OSChatMessage c = new OSChatMessage();
  386. c.Message = data["msg"];
  387. c.Type = ChatTypeEnum.Region;
  388. c.Position = CenterOfRegion;
  389. c.From = data["nick"];
  390. c.Sender = null;
  391. c.SenderUUID = UUID.Zero;
  392. // Is message "\001ACTION foo bar\001"?
  393. // Then change to: "/me foo bar"
  394. if ((1 == c.Message[0]) && c.Message.Substring(1).StartsWith("ACTION"))
  395. c.Message = String.Format("/me {0}", c.Message.Substring(8, c.Message.Length - 9));
  396. ChannelState.OSChat(this, c, false);
  397. }
  398. }
  399. else
  400. {
  401. ProcessIRCCommand(inputLine);
  402. }
  403. }
  404. }
  405. catch (Exception /*e*/)
  406. {
  407. // m_log.ErrorFormat("[IRC-Connector-{0}]: ListenerRun exception trap: {1}", idn, e.Message);
  408. // m_log.Debug(e);
  409. }
  410. // This is potentially circular, but harmless if so.
  411. // The connection is marked as not connected the first time
  412. // through reconnect.
  413. if (m_enabled && (m_resetk == resetk))
  414. Reconnect();
  415. Watchdog.RemoveThread();
  416. }
  417. private Regex RE = new Regex(@":(?<nick>[\w-]*)!(?<user>\S*) PRIVMSG (?<channel>\S+) :(?<msg>.*)",
  418. RegexOptions.Multiline);
  419. private Dictionary<string, string> ExtractMsg(string input)
  420. {
  421. //examines IRC commands and extracts any private messages
  422. // which will then be reboadcast in the Sim
  423. // m_log.InfoFormat("[IRC-Connector-{0}]: ExtractMsg: {1}", idn, input);
  424. Dictionary<string, string> result = null;
  425. MatchCollection matches = RE.Matches(input);
  426. // Get some direct matches $1 $4 is a
  427. if ((matches.Count == 0) || (matches.Count != 1) || (matches[0].Groups.Count != 5))
  428. {
  429. // m_log.Info("[IRCConnector]: Number of matches: " + matches.Count);
  430. // if (matches.Count > 0)
  431. // {
  432. // m_log.Info("[IRCConnector]: Number of groups: " + matches[0].Groups.Count);
  433. // }
  434. return null;
  435. }
  436. result = new Dictionary<string, string>();
  437. result.Add("nick", matches[0].Groups[1].Value);
  438. result.Add("user", matches[0].Groups[2].Value);
  439. result.Add("channel", matches[0].Groups[3].Value);
  440. result.Add("msg", matches[0].Groups[4].Value);
  441. return result;
  442. }
  443. public void BroadcastSim(string sender, string format, params string[] args)
  444. {
  445. try
  446. {
  447. OSChatMessage c = new OSChatMessage();
  448. c.From = sender;
  449. c.Message = String.Format(format, args);
  450. c.Type = ChatTypeEnum.Region; // ChatTypeEnum.Say;
  451. c.Position = CenterOfRegion;
  452. c.Sender = null;
  453. c.SenderUUID = UUID.Zero;
  454. ChannelState.OSChat(this, c, true);
  455. }
  456. catch (Exception ex) // IRC gate should not crash Sim
  457. {
  458. m_log.ErrorFormat("[IRC-Connector-{0}]: BroadcastSim Exception Trap: {1}\n{2}", idn, ex.Message, ex.StackTrace);
  459. }
  460. }
  461. #region IRC Command Handlers
  462. public void ProcessIRCCommand(string command)
  463. {
  464. string[] commArgs;
  465. string c_server = m_server;
  466. string pfx = String.Empty;
  467. string cmd = String.Empty;
  468. string parms = String.Empty;
  469. // ":" indicates that a prefix is present
  470. // There are NEVER more than 17 real
  471. // fields. A parameter that starts with
  472. // ":" indicates that the remainder of the
  473. // line is a single parameter value.
  474. commArgs = command.Split(CS_SPACE, 2);
  475. if (commArgs[0].StartsWith(":"))
  476. {
  477. pfx = commArgs[0].Substring(1);
  478. commArgs = commArgs[1].Split(CS_SPACE, 2);
  479. }
  480. cmd = commArgs[0];
  481. parms = commArgs[1];
  482. // m_log.DebugFormat("[IRC-Connector-{0}] prefix = <{1}> cmd = <{2}>", idn, pfx, cmd);
  483. switch (cmd)
  484. {
  485. // Messages 001-004 are always sent
  486. // following signon.
  487. case "001": // Welcome ...
  488. case "002": // Server information
  489. case "003": // Welcome ...
  490. break;
  491. case "004": // Server information
  492. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  493. commArgs = parms.Split(CS_SPACE);
  494. c_server = commArgs[1];
  495. m_server = c_server;
  496. version = commArgs[2];
  497. usermod = commArgs[3];
  498. chanmod = commArgs[4];
  499. break;
  500. case "005": // Server information
  501. break;
  502. case "042":
  503. case "250":
  504. case "251":
  505. case "252":
  506. case "254":
  507. case "255":
  508. case "265":
  509. case "266":
  510. case "332": // Subject
  511. case "333": // Subject owner (?)
  512. case "353": // Name list
  513. case "366": // End-of-Name list marker
  514. case "372": // MOTD body
  515. case "375": // MOTD start
  516. // m_log.InfoFormat("[IRC-Connector-{0}] [{1}] {2}", idn, cmd, parms.Split(CS_SPACE,2)[1]);
  517. break;
  518. case "376": // MOTD end
  519. // m_log.InfoFormat("[IRC-Connector-{0}] [{1}] {2}", idn, cmd, parms.Split(CS_SPACE,2)[1]);
  520. motd = true;
  521. break;
  522. case "451": // Not registered
  523. break;
  524. case "433": // Nickname in use
  525. // Gen a new name
  526. m_nick = m_baseNick + Util.RandomClass.Next(1, 99);
  527. m_log.ErrorFormat("[IRC-Connector-{0}]: [{1}] IRC SERVER reports NicknameInUse, trying {2}", idn, cmd, m_nick);
  528. // Retry
  529. m_writer.WriteLine(String.Format("NICK {0}", m_nick));
  530. m_writer.Flush();
  531. m_writer.WriteLine(m_user);
  532. m_writer.Flush();
  533. m_writer.WriteLine(String.Format("JOIN {0}", m_ircChannel));
  534. m_writer.Flush();
  535. break;
  536. case "479": // Bad channel name, etc. This will never work, so disable the connection
  537. m_log.ErrorFormat("[IRC-Connector-{0}] [{1}] {2}", idn, cmd, parms.Split(CS_SPACE, 2)[1]);
  538. m_log.ErrorFormat("[IRC-Connector-{0}] [{1}] Connector disabled", idn, cmd);
  539. m_enabled = false;
  540. m_connected = false;
  541. m_pending = false;
  542. break;
  543. case "NOTICE":
  544. // m_log.WarnFormat("[IRC-Connector-{0}] [{1}] {2}", idn, cmd, parms.Split(CS_SPACE,2)[1]);
  545. break;
  546. case "ERROR":
  547. m_log.ErrorFormat("[IRC-Connector-{0}] [{1}] {2}", idn, cmd, parms.Split(CS_SPACE, 2)[1]);
  548. if (parms.Contains("reconnect too fast"))
  549. ICCD_PERIOD++;
  550. m_pending = false;
  551. Reconnect();
  552. break;
  553. case "PING":
  554. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  555. m_writer.WriteLine(String.Format("PONG {0}", parms));
  556. m_writer.Flush();
  557. break;
  558. case "PONG":
  559. break;
  560. case "JOIN":
  561. if (m_pending)
  562. {
  563. m_log.InfoFormat("[IRC-Connector-{0}] [{1}] Connected", idn, cmd);
  564. m_pending = false;
  565. }
  566. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  567. eventIrcJoin(pfx, cmd, parms);
  568. break;
  569. case "PART":
  570. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  571. eventIrcPart(pfx, cmd, parms);
  572. break;
  573. case "MODE":
  574. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  575. eventIrcMode(pfx, cmd, parms);
  576. break;
  577. case "NICK":
  578. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  579. eventIrcNickChange(pfx, cmd, parms);
  580. break;
  581. case "KICK":
  582. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  583. eventIrcKick(pfx, cmd, parms);
  584. break;
  585. case "QUIT":
  586. m_log.DebugFormat("[IRC-Connector-{0}] [{1}] parms = <{2}>", idn, cmd, parms);
  587. eventIrcQuit(pfx, cmd, parms);
  588. break;
  589. default:
  590. m_log.DebugFormat("[IRC-Connector-{0}] Command '{1}' ignored, parms = {2}", idn, cmd, parms);
  591. break;
  592. }
  593. // m_log.DebugFormat("[IRC-Connector-{0}] prefix = <{1}> cmd = <{2}> complete", idn, pfx, cmd);
  594. }
  595. public void eventIrcJoin(string prefix, string command, string parms)
  596. {
  597. string[] args = parms.Split(CS_SPACE, 2);
  598. string IrcUser = prefix.Split('!')[0];
  599. string IrcChannel = args[0];
  600. if (IrcChannel.StartsWith(":"))
  601. IrcChannel = IrcChannel.Substring(1);
  602. m_log.DebugFormat("[IRC-Connector-{0}] Event: IRCJoin {1}:{2}", idn, m_server, m_ircChannel);
  603. BroadcastSim(IrcUser, "/me joins {0}", IrcChannel);
  604. }
  605. public void eventIrcPart(string prefix, string command, string parms)
  606. {
  607. string[] args = parms.Split(CS_SPACE, 2);
  608. string IrcUser = prefix.Split('!')[0];
  609. string IrcChannel = args[0];
  610. m_log.DebugFormat("[IRC-Connector-{0}] Event: IRCPart {1}:{2}", idn, m_server, m_ircChannel);
  611. BroadcastSim(IrcUser, "/me parts {0}", IrcChannel);
  612. }
  613. public void eventIrcMode(string prefix, string command, string parms)
  614. {
  615. string[] args = parms.Split(CS_SPACE, 2);
  616. string UserMode = args[1];
  617. m_log.DebugFormat("[IRC-Connector-{0}] Event: IRCMode {1}:{2}", idn, m_server, m_ircChannel);
  618. if (UserMode.Substring(0, 1) == ":")
  619. {
  620. UserMode = UserMode.Remove(0, 1);
  621. }
  622. }
  623. public void eventIrcNickChange(string prefix, string command, string parms)
  624. {
  625. string[] args = parms.Split(CS_SPACE, 2);
  626. string UserOldNick = prefix.Split('!')[0];
  627. string UserNewNick = args[0].Remove(0, 1);
  628. m_log.DebugFormat("[IRC-Connector-{0}] Event: IRCNickChange {1}:{2}", idn, m_server, m_ircChannel);
  629. BroadcastSim(UserOldNick, "/me is now known as {0}", UserNewNick);
  630. }
  631. public void eventIrcKick(string prefix, string command, string parms)
  632. {
  633. string[] args = parms.Split(CS_SPACE, 3);
  634. string UserKicker = prefix.Split('!')[0];
  635. string IrcChannel = args[0];
  636. string UserKicked = args[1];
  637. string KickMessage = args[2];
  638. m_log.DebugFormat("[IRC-Connector-{0}] Event: IRCKick {1}:{2}", idn, m_server, m_ircChannel);
  639. BroadcastSim(UserKicker, "/me kicks kicks {0} off {1} saying \"{2}\"", UserKicked, IrcChannel, KickMessage);
  640. if (UserKicked == m_nick)
  641. {
  642. BroadcastSim(m_nick, "Hey, that was me!!!");
  643. }
  644. }
  645. public void eventIrcQuit(string prefix, string command, string parms)
  646. {
  647. string IrcUser = prefix.Split('!')[0];
  648. string QuitMessage = parms;
  649. m_log.DebugFormat("[IRC-Connector-{0}] Event: IRCQuit {1}:{2}", idn, m_server, m_ircChannel);
  650. BroadcastSim(IrcUser, "/me quits saying \"{0}\"", QuitMessage);
  651. }
  652. #endregion
  653. #region Connector Watch Dog
  654. // A single watch dog monitors extant connectors and makes sure that they
  655. // are re-connected as necessary. If a connector IS connected, then it is
  656. // pinged, but only if a PING period has elapsed.
  657. protected static void WatchdogHandler(Object source, ElapsedEventArgs args)
  658. {
  659. // m_log.InfoFormat("[IRC-Watchdog] Status scan, pdk = {0}, icc = {1}", _pdk_, _icc_);
  660. _pdk_ = (_pdk_ + 1) % PING_PERIOD; // cycle the ping trigger
  661. _icc_++; // increment the inter-consecutive-connect-delay counter
  662. lock (m_connectors)
  663. foreach (IRCConnector connector in m_connectors)
  664. {
  665. // m_log.InfoFormat("[IRC-Watchdog] Scanning {0}", connector);
  666. if (connector.Enabled)
  667. {
  668. if (!connector.Connected)
  669. {
  670. try
  671. {
  672. // m_log.DebugFormat("[IRC-Watchdog] Connecting {1}:{2}", connector.idn, connector.m_server, connector.m_ircChannel);
  673. connector.Connect();
  674. }
  675. catch (Exception e)
  676. {
  677. m_log.ErrorFormat("[IRC-Watchdog] Exception on connector {0}: {1} ", connector.idn, e.Message);
  678. }
  679. }
  680. else
  681. {
  682. if (connector.m_pending)
  683. {
  684. if (connector.m_timeout == 0)
  685. {
  686. m_log.ErrorFormat("[IRC-Watchdog] Login timed-out for connector {0}, reconnecting", connector.idn);
  687. connector.Reconnect();
  688. }
  689. else
  690. connector.m_timeout--;
  691. }
  692. // Being marked connected is not enough to ping. Socket establishment can sometimes take a long
  693. // time, in which case the watch dog might try to ping the server before the socket has been
  694. // set up, with nasty side-effects.
  695. else if (_pdk_ == 0)
  696. {
  697. try
  698. {
  699. connector.m_writer.WriteLine(String.Format("PING :{0}", connector.m_server));
  700. connector.m_writer.Flush();
  701. }
  702. catch (Exception e)
  703. {
  704. m_log.ErrorFormat("[IRC-PingRun] Exception on connector {0}: {1} ", connector.idn, e.Message);
  705. m_log.Debug(e);
  706. connector.Reconnect();
  707. }
  708. }
  709. }
  710. }
  711. }
  712. // m_log.InfoFormat("[IRC-Watchdog] Status scan completed");
  713. }
  714. #endregion
  715. }
  716. }