main.cpp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. #include <chrono>
  2. #include <iostream>
  3. #include <string>
  4. #include <thread> // sleep_for
  5. #include "door.h"
  6. #include "irc.h"
  7. #include "yaml-cpp/yaml.h"
  8. #include <boost/asio.hpp>
  9. // #include <boost/thread.hpp>
  10. YAML::Node config;
  11. std::function<std::ofstream &(void)> get_logger;
  12. bool file_exists(const std::string name) {
  13. std::ifstream f(name.c_str());
  14. return f.good();
  15. }
  16. int main(int argc, char *argv[]) {
  17. using namespace std::chrono_literals;
  18. boost::asio::io_context io_context;
  19. ircClient irc(io_context);
  20. door::Door door("irc-door", argc, argv);
  21. get_logger = [&door]() -> ofstream & { return door.log(); };
  22. if (file_exists("irc-door.yaml")) {
  23. config = YAML::LoadFile("irc-door.yaml");
  24. }
  25. bool update_config = false;
  26. if (!config["hostname"]) {
  27. config["hostname"] = "127.0.0.1";
  28. update_config = true;
  29. }
  30. if (!config["port"]) {
  31. config["port"] = "6697";
  32. update_config = true;
  33. }
  34. if (!config["autojoin"]) {
  35. config["autojoin"] = "#bugz";
  36. update_config = true;
  37. }
  38. if (!config["realname"]) {
  39. config["realname"] = "A poor soul on BZBZ BBS...";
  40. update_config = true;
  41. }
  42. if (!config["username"]) {
  43. config["username"] = "bzbz";
  44. update_config = true;
  45. }
  46. if (update_config) {
  47. std::ofstream fout("irc-door.yaml");
  48. fout << config << std::endl;
  49. }
  50. // configure
  51. irc.nick = door.handle;
  52. irc.realname = config["realname"].as<std::string>();
  53. irc.hostname = config["hostname"].as<std::string>();
  54. irc.port = config["port"].as<std::string>();
  55. irc.username = config["username"].as<std::string>();
  56. irc.autojoin = config["autojoin"].as<std::string>();
  57. irc.debug_output = "irc.log";
  58. irc.begin(); // start the initial request so io_context has work to do
  59. // boost::thread thread(boost::bind(&boost::asio::io_service::run,
  60. // &io_context));
  61. // thread Thread(boost::bind(&boost::asio::io_service::run, &io_context));
  62. thread Thread([&io_context]() -> void { io_context.run(); });
  63. door << "Welcome to the IRC chat door." << door::nl;
  64. // main "loop" -- not the proper way to do it.
  65. bool in_door = true;
  66. while (in_door) {
  67. if (door.haskey()) {
  68. door << ">> ";
  69. std::string input = door.input_string(100);
  70. door << door::nl;
  71. if (!input.empty()) {
  72. if (input == "/q") {
  73. irc.write("QUIT :What other doors on BZ&BZ BBS work...");
  74. in_door = false;
  75. }
  76. if (input[0] == '/') {
  77. input.erase(0, 1);
  78. irc.write(input);
  79. } else {
  80. if (irc.talkto.empty()) {
  81. door << " talkto is empty? Whaat?" << door::nl;
  82. } else {
  83. std::string output = "PRIVMSG " + irc.talkto + " :" + input;
  84. irc.write(output);
  85. }
  86. }
  87. }
  88. }
  89. boost::optional<std::vector<std::string>> msg;
  90. // hold list of users -- until end names received.
  91. // std::vector<std::string> names;
  92. do {
  93. msg = irc.buffer_maybe_pop();
  94. if (msg) {
  95. std::vector<std::string> m = *msg;
  96. if (m.size() == 1) {
  97. // system message
  98. door << "(" << m[0] << ")" << door::nl;
  99. continue;
  100. }
  101. std::string cmd = m[1];
  102. /* this should be tracked by ircClient class
  103. if (cmd == "353") {
  104. // NAMES list for channel, parse them out and append to names.
  105. std::vector<std::string> names_list = split_limit(m[3], 999);
  106. names_list.erase(names_list.begin());
  107. names_list.erase(names_list.begin());
  108. for (auto &name : names_list) {
  109. if (name[0] == ':')
  110. name.erase(0, 1);
  111. names.push_back(name);
  112. }
  113. }
  114. */
  115. if (cmd == "366") {
  116. // end of names, output and clear
  117. std::string channel = split_limit(m[3], 2)[0];
  118. door << "* users on " << channel << " : ";
  119. for (auto name : irc.channels[channel]) {
  120. door << name << " ";
  121. }
  122. door << door::nl;
  123. // names.clear();
  124. }
  125. // 400 and 500 are errors? should show those.
  126. if ((cmd[0] == '4') or (cmd[0] == '5')) {
  127. std::string tmp = m[3];
  128. tmp.erase(0, 1);
  129. door << "* " << tmp << door::nl;
  130. }
  131. if (cmd == "NOTICE") {
  132. std::string tmp = m[3];
  133. tmp.erase(0, 1);
  134. door << parse_nick(m[0]) << " NOTICE " << tmp << door::nl;
  135. }
  136. if (cmd == "ACTION") {
  137. if (m[2][0] == '#') {
  138. door << "* " << parse_nick(m[0]) << "/" << m[2] << " " << m[3]
  139. << door::nl;
  140. } else {
  141. door << "* " << parse_nick(m[0]) << " " << m[3] << door::nl;
  142. }
  143. }
  144. if (cmd == "TOPIC") {
  145. std::string tmp = m[3];
  146. tmp.erase(0, 1);
  147. door << parse_nick(m[0]) << " set topic of " << m[2] << " to " << tmp
  148. << door::nl;
  149. }
  150. if (cmd == "PRIVMSG") {
  151. if (m[2][0] == '#') {
  152. std::string tmp = m[3];
  153. tmp.erase(0, 1);
  154. door << parse_nick(m[0]) << "/" << m[2] << " " << tmp << door::nl;
  155. } else {
  156. std::string tmp = m[3];
  157. tmp.erase(0, 1);
  158. door << parse_nick(m[0]) << " " << tmp << door::nl;
  159. }
  160. }
  161. }
  162. } while (msg);
  163. std::this_thread::sleep_for(200ms);
  164. if (irc.shutdown)
  165. in_door = false;
  166. }
  167. io_context.stop();
  168. Thread.join();
  169. door << "Returning to the BBS..." << door::nl;
  170. // std::this_thread::sleep_for(2s);
  171. return 0;
  172. }