irc.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. #include "irc.h"
  2. #include <boost/algorithm/string.hpp>
  3. #include <iostream>
  4. void string_toupper(std::string &str) {
  5. std::transform(str.begin(), str.end(), str.begin(), ::toupper);
  6. }
  7. /**
  8. * @brief remove channel modes (op,voice,hop,...)
  9. *
  10. * @param nick
  11. */
  12. void remove_channel_modes(std::string &nick) {
  13. // ~&@%+
  14. std::string remove("~&@%+");
  15. std::string::size_type pos;
  16. do {
  17. pos = remove.find(nick[0]);
  18. if (pos != std::string::npos)
  19. nick.erase(0, 1);
  20. } while (pos != std::string::npos);
  21. }
  22. /**
  23. * @brief split on spaces, with limit
  24. *
  25. * max is the maximum number of splits we will do.
  26. * default -1 is split all.
  27. *
  28. * "this is a test", 3 => [this][is][a test]
  29. *
  30. * @param text
  31. * @param max
  32. * @return std::vector<std::string>
  33. */
  34. std::vector<std::string> split_limit(std::string &text, int max) {
  35. std::vector<std::string> ret;
  36. int t = 0;
  37. boost::split(ret, text, [&t, max](char c) {
  38. if (c == ' ') {
  39. ++t;
  40. return ((max == -1) or (t < max));
  41. };
  42. return false;
  43. });
  44. return ret;
  45. }
  46. /**
  47. * @brief irc split
  48. *
  49. * If it doesn't start with a ':', split into two parts.
  50. * Otherwise 4 parts
  51. * [from] [command] [to] [message]
  52. *
  53. * @param text
  54. * @return std::vector<std::string>
  55. */
  56. std::vector<std::string> irc_split(std::string &text) {
  57. if (text[0] != ':')
  58. return split_limit(text, 2);
  59. return split_limit(text, 4);
  60. }
  61. /**
  62. * @brief parse_nick
  63. *
  64. * Parse out the nick from nick!username@host
  65. *
  66. * @param name
  67. * @return std::string
  68. */
  69. std::string parse_nick(std::string &name) {
  70. std::string to = name;
  71. if (to[0] == ':')
  72. to.erase(0, 1);
  73. size_t pos = to.find('!');
  74. if (pos != std::string::npos) {
  75. to.erase(pos);
  76. }
  77. return to;
  78. }
  79. // namespace io = boost::asio;
  80. // namespace ip = io::ip;
  81. // using tcp = boost::asio::ip; // ip::tcp;
  82. using error_code = boost::system::error_code;
  83. using namespace std::placeholders;
  84. // #define DEBUG_OUTPUT
  85. typedef std::function<void(std::string &)> receiveFunction;
  86. ircClient::ircClient(boost::asio::io_context &io_context)
  87. : resolver{io_context}, ssl_context{boost::asio::ssl::context::tls},
  88. socket{io_context, ssl_context}, context{io_context} {
  89. registered = false;
  90. nick_retry = 1;
  91. shutdown = false;
  92. logging = false;
  93. channels_updated = false;
  94. }
  95. std::ofstream &ircClient::log(void) {
  96. std::time_t t = std::time(nullptr);
  97. std::tm tm = *std::localtime(&t);
  98. debug_file << std::put_time(&tm, "%c ");
  99. return debug_file;
  100. }
  101. void ircClient::begin(void) {
  102. original_nick = nick;
  103. resolver.async_resolve(hostname, port,
  104. std::bind(&ircClient::on_resolve, this, _1, _2));
  105. if (!debug_output.empty()) {
  106. debug_file.open(debug_output.c_str(),
  107. std::ofstream::out | std::ofstream::app);
  108. logging = true;
  109. }
  110. }
  111. void ircClient::write(std::string output) {
  112. if (logging) {
  113. log() << "<< " << output << std::endl;
  114. }
  115. error_code error;
  116. socket.write_some(boost::asio::buffer(output + "\r\n"), error);
  117. if (error) {
  118. if (logging) {
  119. log() << "Write: " << error.message() << std::endl;
  120. }
  121. }
  122. }
  123. /**
  124. * @brief thread safe messages.push_back
  125. *
  126. * @param msg
  127. */
  128. void ircClient::message_append(message_stamp &msg) {
  129. lock.lock();
  130. messages.push_back(msg);
  131. channels_updated = true;
  132. lock.unlock();
  133. }
  134. /**
  135. * @brief thread safe message_stamp pop
  136. *
  137. * @return boost::optional<message_stamp>
  138. */
  139. boost::optional<message_stamp> ircClient::message_pop(void) {
  140. lock.lock();
  141. message_stamp msg;
  142. if (messages.empty()) {
  143. channels_updated = false;
  144. lock.unlock();
  145. return boost::optional<message_stamp>{};
  146. }
  147. msg = messages.front();
  148. messages.erase(messages.begin());
  149. lock.unlock();
  150. return msg;
  151. }
  152. void ircClient::on_resolve(
  153. error_code error, boost::asio::ip::tcp::resolver::results_type results) {
  154. if (logging) {
  155. log() << "Resolve: " << error.message() << std::endl;
  156. }
  157. if (error) {
  158. std::string output = "Unable to resolve (DNS Issue?): " + error.message();
  159. errors.push_back(output);
  160. message(output);
  161. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  162. }
  163. boost::asio::async_connect(socket.next_layer(), results,
  164. std::bind(&ircClient::on_connect, this, _1, _2));
  165. }
  166. void ircClient::on_connect(error_code error,
  167. boost::asio::ip::tcp::endpoint const &endpoint) {
  168. if (logging) {
  169. log() << "Connect: " << error.message() << ", endpoint: " << endpoint
  170. << std::endl;
  171. }
  172. if (error) {
  173. std::string output = "Unable to connect: " + error.message();
  174. message(output);
  175. errors.push_back(output);
  176. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  177. }
  178. socket.async_handshake(boost::asio::ssl::stream_base::client,
  179. std::bind(&ircClient::on_handshake, this, _1));
  180. }
  181. void ircClient::on_handshake(error_code error) {
  182. if (logging) {
  183. log() << "Handshake: " << error.message() << std::endl;
  184. }
  185. if (error) {
  186. std::string output = "Handshake Failure: " + error.message();
  187. message(output);
  188. errors.push_back(output);
  189. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  190. }
  191. std::string request = registration();
  192. boost::asio::async_write(socket, boost::asio::buffer(request),
  193. std::bind(&ircClient::on_write, this, _1, _2));
  194. // socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  195. }
  196. void ircClient::on_write(error_code error, std::size_t bytes_transferred) {
  197. if ((error) and (logging)) {
  198. log() << "Write: " << error.message() << std::endl;
  199. }
  200. // << ", bytes transferred: " << bytes_transferred << "\n";
  201. boost::asio::async_read_until(
  202. socket, response, '\n', std::bind(&ircClient::read_until, this, _1, _2));
  203. }
  204. void ircClient::on_shutdown(error_code error) {
  205. if (logging) {
  206. log() << "SHUTDOWN: " << error.message() << std::endl;
  207. }
  208. shutdown = true;
  209. context.stop();
  210. }
  211. void ircClient::read_until(error_code error, std::size_t bytes) {
  212. // std::cout << "Read: " << bytes << ", " << error << "\n";
  213. // auto data = response.data();
  214. if (bytes == 0) {
  215. if (logging) {
  216. log() << "Read 0 bytes, shutdown..." << std::endl;
  217. }
  218. socket.async_shutdown(std::bind(&ircClient::on_shutdown, this, _1));
  219. return;
  220. };
  221. // Only try to get the data -- if we're read some bytes.
  222. auto data = response.data();
  223. response.consume(bytes);
  224. std::string text{(const char *)data.data(), bytes};
  225. while ((text[text.size() - 1] == '\r') or (text[text.size() - 1] == '\n'))
  226. text.erase(text.size() - 1);
  227. receive(text);
  228. // repeat until closed
  229. boost::asio::async_read_until(
  230. socket, response, '\n', std::bind(&ircClient::read_until, this, _1, _2));
  231. }
  232. /**
  233. * @brief Append a system message to the messages.
  234. *
  235. * @param msg
  236. */
  237. void ircClient::message(std::string msg) {
  238. message_stamp ms;
  239. ms.buffer.push_back(msg);
  240. message_append(ms);
  241. }
  242. void ircClient::receive(std::string &text) {
  243. message_stamp ms;
  244. ms.buffer = irc_split(text);
  245. std::vector<std::string> &parts = ms.buffer; // irc_split(text);
  246. if (logging) {
  247. // this also shows our parser working
  248. std::ofstream &l = log();
  249. l << ">> ";
  250. for (auto &s : parts) {
  251. l << "[" << s << "] ";
  252. }
  253. l << std::endl;
  254. }
  255. // INTERNAL IRC PARSING/TRACKING
  256. if (parts.size() == 2) {
  257. // hide PING / PONG messages
  258. if (parts[0] == "PING") {
  259. std::string output = "PONG " + parts[1];
  260. write(output);
  261. return;
  262. }
  263. }
  264. if (parts.size() >= 3) {
  265. std::string source = parse_nick(parts[0]);
  266. std::string cmd = parts[1];
  267. std::string msg_to = parts[2];
  268. std::string msg;
  269. if (parts.size() == 4) {
  270. msg = parts[3];
  271. }
  272. if (cmd == "JOIN") {
  273. msg_to.erase(0, 1); // channel
  274. channels_lock.lock();
  275. if (nick == source) {
  276. // yes, we are joining
  277. std::string output =
  278. "You have joined " + msg_to + " [talkto = " + msg_to + "]";
  279. message(output);
  280. talkto(msg_to);
  281. // insert empty set here.
  282. std::set<std::string> empty;
  283. channels[msg_to] = empty;
  284. } else {
  285. // Someone else is joining
  286. std::string output = source + " has joined " += msg_to;
  287. message(output);
  288. channels[msg_to].insert(source);
  289. }
  290. channels_lock.unlock();
  291. }
  292. if (cmd == "PART") {
  293. channels_lock.lock();
  294. if (nick == source) {
  295. std::string output = "You left " + msg_to;
  296. auto ch = channels.find(msg_to);
  297. if (ch != channels.end())
  298. channels.erase(ch);
  299. if (!channels.empty()) {
  300. talkto(channels.begin()->first);
  301. output += " [talkto = " + talkto() + "]";
  302. } else {
  303. talkto("");
  304. }
  305. message(output);
  306. } else {
  307. std::string output = source + " has left " + msg_to;
  308. if (!msg.empty()) {
  309. output += " " + msg;
  310. }
  311. message(output);
  312. channels[msg_to].erase(source);
  313. }
  314. channels_lock.unlock();
  315. }
  316. if (cmd == "KICK") {
  317. std::string wholeft = split_limit(parts[3], 2)[0];
  318. std::string output =
  319. source + " has kicked " + wholeft + " from " + msg_to;
  320. channels_lock.lock();
  321. if (wholeft == nick) {
  322. channels.erase(msg_to);
  323. if (!channels.empty()) {
  324. talkto(channels.begin()->first);
  325. output += " [talkto = " + talkto() + "]";
  326. } else {
  327. talkto("");
  328. }
  329. } else {
  330. channels[msg_to].erase(wholeft);
  331. }
  332. channels_lock.unlock();
  333. message(output);
  334. }
  335. if (cmd == "QUIT") {
  336. std::string output = "* " + source + " has quit ";
  337. message(output);
  338. channels_lock.lock();
  339. if (source == nick) {
  340. // We've quit?
  341. channels.erase(channels.begin(), channels.end());
  342. } else {
  343. for (auto &c : channels) {
  344. c.second.erase(source);
  345. // would it be possible that channel is empty now?
  346. // no, because we're still in it.
  347. }
  348. }
  349. channels_lock.unlock();
  350. }
  351. if (cmd == "353") {
  352. // NAMES list for channel
  353. std::vector<std::string> names_list = split_limit(msg);
  354. names_list.erase(names_list.begin());
  355. std::string channel = names_list.front();
  356. names_list.erase(names_list.begin());
  357. if ((names_list.size() > 0) and (names_list[0][0] == ':')) {
  358. names_list[0].erase(0, 1);
  359. }
  360. channels_lock.lock();
  361. if (channels.find(channel) == channels.end()) {
  362. // does not exist
  363. channels.insert({channel, std::set<std::string>{}});
  364. }
  365. for (auto name : names_list) {
  366. remove_channel_modes(name);
  367. channels[channel].insert(name);
  368. }
  369. channels_lock.unlock();
  370. }
  371. if (cmd == "NICK") {
  372. msg_to.erase(0, 1);
  373. channels_lock.lock();
  374. for (auto &ch : channels) {
  375. if (ch.second.erase(source) == 1) {
  376. ch.second.insert(msg_to);
  377. }
  378. }
  379. channels_lock.unlock();
  380. // Is this us? If so, change our nick.
  381. if (source == nick)
  382. nick = msg_to;
  383. }
  384. if (cmd == "PRIVMSG") {
  385. // Possibly a CTCP request. Let's see
  386. std::string message = msg;
  387. if ((message[0] == ':') and (message[1] == '\x01') and
  388. (message[message.size() - 1] == '\x01')) {
  389. // CTCP MESSAGE FOUND strip \x01's
  390. message.erase(0, 2);
  391. message.erase(message.size() - 1);
  392. std::vector<std::string> ctcp_cmd = split_limit(message, 2);
  393. if (ctcp_cmd[0] != "ACTION") {
  394. std::string msg =
  395. "Received CTCP " + ctcp_cmd[0] + " from " + parse_nick(parts[0]);
  396. this->message(msg);
  397. if (logging) {
  398. log() << "CTCP : [" << message << "] from " + parse_nick(parts[0])
  399. << std::endl;
  400. }
  401. }
  402. if (message == "VERSION") {
  403. std::string reply_to = parse_nick(parts[0]);
  404. boost::format fmt =
  405. boost::format("NOTICE %1% :\x01VERSION Bugz IRC thing V0.1\x01") %
  406. reply_to;
  407. std::string response = fmt.str();
  408. write(response);
  409. return;
  410. }
  411. if (message.substr(0, 5) == "PING ") {
  412. message.erase(0, 5);
  413. boost::format fmt = boost::format("NOTICE %1% :\x01PING %2%\x01") %
  414. parse_nick(parts[0]) % message;
  415. std::string response = fmt.str();
  416. write(response);
  417. return;
  418. }
  419. if (message == "TIME") {
  420. auto now = std::chrono::system_clock::now();
  421. auto in_time_t = std::chrono::system_clock::to_time_t(now);
  422. std::string datetime = boost::lexical_cast<std::string>(
  423. std::put_time(std::localtime(&in_time_t), "%c"));
  424. boost::format fmt = boost::format("NOTICE %1% :\x01TIME %2%\x01") %
  425. parse_nick(parts[0]) % datetime;
  426. std::string response = fmt.str();
  427. write(response);
  428. return;
  429. }
  430. if (message.substr(0, 7) == "ACTION ") {
  431. message.erase(0, 7);
  432. parts[1] = "ACTION"; // change PRIVMSG to ACTION
  433. parts[3] = message;
  434. }
  435. // I have this parsed this far, now what can I do with it?!
  436. }
  437. }
  438. }
  439. // CTCP handler
  440. // NOTE: When sent to a channel, the response is sent to the sender.
  441. if (!registered) {
  442. // We're not registered yet
  443. if (parts[1] == "433") {
  444. // nick collision! Nick already in use
  445. if (nick == original_nick) {
  446. // try something basic
  447. nick += "_";
  448. std::string output = "NICK " + nick;
  449. write(output);
  450. return;
  451. } else {
  452. // Ok, go advanced
  453. nick = original_nick + "_" + std::to_string(nick_retry);
  454. ++nick_retry;
  455. std::string output = "NICK " + nick;
  456. write(output);
  457. return;
  458. }
  459. }
  460. if ((parts[1] == "376") or (parts[1] == "422")) {
  461. // END MOTD, or MOTD MISSING
  462. registered = true;
  463. if (!autojoin.empty()) {
  464. std::string msg = "JOIN " + autojoin;
  465. write(msg);
  466. }
  467. }
  468. }
  469. if (parts[0] == "ERROR") {
  470. // we're outta here. :O
  471. // std::cout << "BANG!" << std::endl;
  472. }
  473. message_append(ms);
  474. // :FROM command TO :rest and ':' is optional
  475. // std::cout << text << "\n";
  476. }
  477. std::string ircClient::registration(void) {
  478. std::string text;
  479. text = "NICK " + nick + "\r\n" + "USER " + username + " 0 * :" + realname +
  480. "\r\n";
  481. return text;
  482. }