main.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. if (cmd == "366") {
  103. // end of names, output and clear
  104. std::string channel = split_limit(m[3], 2)[0];
  105. irc.channels_lock.lock();
  106. door << "* users on " << channel << " : ";
  107. for (auto name : irc.channels[channel]) {
  108. door << name << " ";
  109. }
  110. irc.channels_lock.unlock();
  111. door << door::nl;
  112. // names.clear();
  113. }
  114. // 400 and 500 are errors? should show those.
  115. if ((cmd[0] == '4') or (cmd[0] == '5')) {
  116. std::string tmp = m[3];
  117. tmp.erase(0, 1);
  118. door << "* " << tmp << door::nl;
  119. }
  120. if (cmd == "NOTICE") {
  121. std::string tmp = m[3];
  122. tmp.erase(0, 1);
  123. door << parse_nick(m[0]) << " NOTICE " << tmp << door::nl;
  124. }
  125. if (cmd == "ACTION") {
  126. if (m[2][0] == '#') {
  127. door << "* " << parse_nick(m[0]) << "/" << m[2] << " " << m[3]
  128. << door::nl;
  129. } else {
  130. door << "* " << parse_nick(m[0]) << " " << m[3] << door::nl;
  131. }
  132. }
  133. if (cmd == "TOPIC") {
  134. std::string tmp = m[3];
  135. tmp.erase(0, 1);
  136. door << parse_nick(m[0]) << " set topic of " << m[2] << " to " << tmp
  137. << door::nl;
  138. }
  139. if (cmd == "PRIVMSG") {
  140. if (m[2][0] == '#') {
  141. std::string tmp = m[3];
  142. tmp.erase(0, 1);
  143. door << parse_nick(m[0]) << "/" << m[2] << " " << tmp << door::nl;
  144. } else {
  145. std::string tmp = m[3];
  146. tmp.erase(0, 1);
  147. door << parse_nick(m[0]) << " " << tmp << door::nl;
  148. }
  149. }
  150. }
  151. } while (msg);
  152. std::this_thread::sleep_for(200ms);
  153. if (irc.shutdown)
  154. in_door = false;
  155. }
  156. io_context.stop();
  157. Thread.join();
  158. door << "Returning to the BBS..." << door::nl;
  159. // std::this_thread::sleep_for(2s);
  160. return 0;
  161. }