irc.cpp 14 KB

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