irc.cpp 14 KB

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