IRCConnector.cs 32 KB

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