render.cpp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. #include "render.h"
  2. #include <boost/lexical_cast.hpp>
  3. #include <iomanip>
  4. std::string timestamp_format = "%T";
  5. void stamp(std::time_t &stamp, door::Door &door) {
  6. std::string output = boost::lexical_cast<std::string>(
  7. std::put_time(std::localtime(&stamp), timestamp_format.c_str()));
  8. if (output.find('A') != std::string::npos)
  9. door << door::ANSIColor(door::COLOR::YELLOW, door::ATTR::BOLD);
  10. else
  11. door << door::ANSIColor(door::COLOR::BROWN);
  12. door << output << door::reset << " ";
  13. // door << std::put_time(std::localtime(&stamp), timestamp_format.c_str())
  14. }
  15. void render(message_stamp &msg_stamp, door::Door &door, ircClient &irc) {
  16. // std::vector<std::string> irc_msg = *msg;
  17. std::vector<std::string> &irc_msg = msg_stamp.buffer;
  18. door::ANSIColor info{door::COLOR::CYAN};
  19. door::ANSIColor error{door::COLOR::RED, door::ATTR::BOLD};
  20. if (irc_msg.size() == 1) {
  21. // system message
  22. stamp(msg_stamp.stamp, door);
  23. door << info << "(" << irc_msg[0] << ")" << door::reset << door::nl;
  24. return;
  25. }
  26. door::ANSIColor nick_color{door::COLOR::CYAN, door::ATTR::BOLD};
  27. door::ANSIColor channel_color{door::COLOR::WHITE, door::COLOR::BLUE};
  28. door::ANSIColor active_channel_color =
  29. door::ANSIColor{door::COLOR::YELLOW, door::COLOR::BLUE, door::ATTR::BOLD};
  30. door::ANSIColor text_color{door::COLOR::WHITE};
  31. std::string cmd = irc_msg[1];
  32. if (irc_msg[0] == "ERROR") {
  33. std::string tmp = irc_msg[1];
  34. if (tmp[0] == ':')
  35. tmp.erase(0, 1);
  36. stamp(msg_stamp.stamp, door);
  37. door << error << "* ERROR: " << tmp << door::reset << door::nl;
  38. }
  39. if (cmd == "332") {
  40. // joined channel with topic
  41. std::vector<std::string> channel_topic = split_limit(irc_msg[3], 2);
  42. channel_topic[1].erase(0, 1);
  43. std::string output =
  44. "Topic for " + channel_topic[0] + " is: " + channel_topic[1];
  45. stamp(msg_stamp.stamp, door);
  46. door << info << output << door::reset << door::nl;
  47. }
  48. if (cmd == "366") {
  49. // end of names, output and clear
  50. std::string channel = split_limit(irc_msg[3], 2)[0];
  51. irc.channels_lock.lock();
  52. stamp(msg_stamp.stamp, door);
  53. door << info << "* users on " << channel << " : ";
  54. for (auto name : irc.channels[channel]) {
  55. door << name << " ";
  56. }
  57. irc.channels_lock.unlock();
  58. door << door::reset << door::nl;
  59. // names.clear();
  60. }
  61. if (cmd == "372") {
  62. // MOTD
  63. std::string temp = irc_msg[3];
  64. temp.erase(0, 1);
  65. stamp(msg_stamp.stamp, door);
  66. door << info << "* " << temp << door::reset << door::nl;
  67. }
  68. // 400 and 500 are errors? should show those.
  69. if ((cmd[0] == '4') or (cmd[0] == '5')) {
  70. std::string tmp = irc_msg[3];
  71. if (tmp[0] == ':')
  72. tmp.erase(0, 1);
  73. stamp(msg_stamp.stamp, door);
  74. door << error << "* " << tmp << door::reset << door::nl;
  75. }
  76. if (cmd == "NOTICE") {
  77. std::string tmp = irc_msg[3];
  78. tmp.erase(0, 1);
  79. stamp(msg_stamp.stamp, door);
  80. door << nick_color << parse_nick(irc_msg[0]) << " NOTICE " << tmp
  81. << door::reset << door::nl;
  82. }
  83. if (cmd == "ACTION") {
  84. if (irc_msg[2][0] == '#') {
  85. stamp(msg_stamp.stamp, door);
  86. if (irc_msg[2] == irc.talkto())
  87. door << active_channel_color;
  88. else
  89. door << channel_color;
  90. door << irc_msg[2] << "/" << nick_color;
  91. std::string nick = parse_nick(irc_msg[0]);
  92. int len = irc.max_nick_length - nick.size();
  93. if (len > 0)
  94. door << std::string(len, ' ');
  95. door << "* " << nick << " " << irc_msg[3] << door::reset << door::nl;
  96. /*
  97. door << "* " << irc_msg[2] << "/" << parse_nick(irc_msg[0]) << " "
  98. << irc_msg[3] << door::nl;
  99. */
  100. } else {
  101. stamp(msg_stamp.stamp, door);
  102. door << nick_color << "* " << parse_nick(irc_msg[0]) << " " << irc_msg[3]
  103. << door::reset << door::nl;
  104. // door << "* " << parse_nick(irc_msg[0]) << " " << irc_msg[3] <<
  105. // door::nl;
  106. }
  107. }
  108. if (cmd == "TOPIC") {
  109. std::string tmp = irc_msg[3];
  110. tmp.erase(0, 1);
  111. stamp(msg_stamp.stamp, door);
  112. door << info << parse_nick(irc_msg[0]) << " set topic of " << irc_msg[2]
  113. << " to " << tmp << door::reset << door::nl;
  114. }
  115. if (cmd == "PRIVMSG") {
  116. if (irc_msg[2][0] == '#') {
  117. std::string tmp = irc_msg[3];
  118. tmp.erase(0, 1);
  119. stamp(msg_stamp.stamp, door);
  120. if (irc_msg[2] == irc.talkto())
  121. door << active_channel_color;
  122. else
  123. door << channel_color;
  124. door << irc_msg[2];
  125. door << "/" << nick_color;
  126. std::string nick = parse_nick(irc_msg[0]);
  127. int len = irc.max_nick_length + 2 - nick.size();
  128. if (len > 0)
  129. door << std::string(len, ' ');
  130. door << nick << " " << text_color << tmp << door::reset << door::nl;
  131. /*
  132. door << channel_color << irc_msg[2] << "/" << nick_color
  133. << parse_nick(irc_msg[0]) << door::reset << " " << tmp << door::nl;
  134. */
  135. } else {
  136. std::string tmp = irc_msg[3];
  137. tmp.erase(0, 1);
  138. stamp(msg_stamp.stamp, door);
  139. door << nick_color << parse_nick(irc_msg[0]) << door::reset << " " << tmp
  140. << door::nl;
  141. }
  142. }
  143. if (cmd == "NICK") {
  144. std::string tmp = irc_msg[2];
  145. tmp.erase(0, 1);
  146. stamp(msg_stamp.stamp, door);
  147. door << info << "* " << parse_nick(irc_msg[0]) << " is now known as " << tmp
  148. << door::reset << door::nl;
  149. }
  150. }