irc-client.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. package ircclient
  2. import (
  3. "bufio"
  4. "crypto/tls"
  5. "crypto/x509"
  6. "encoding/base64"
  7. "fmt"
  8. "io"
  9. "log"
  10. "math/rand"
  11. "net"
  12. "os"
  13. "os/signal"
  14. "strconv"
  15. "strings"
  16. "syscall"
  17. "time"
  18. )
  19. func StrInArray(strings []string, str string) bool {
  20. for _, s := range strings {
  21. if s == str {
  22. return true
  23. }
  24. }
  25. return false
  26. }
  27. type IRCMsg struct {
  28. MsgParts []string
  29. From string
  30. To string
  31. Cmd string
  32. Msg string
  33. }
  34. type IRCWrite struct {
  35. To string
  36. Output string
  37. }
  38. type IRCConfig struct {
  39. Port int `json: Port`
  40. Hostname string `json: Hostname`
  41. UseTLS bool `json: UseTLS` // Use TLS Secure connection
  42. UseSASL bool `json: UseSASL` // Authenticate via SASL
  43. Insecure bool `json: Insecure` // Allow self-signed certificates
  44. Nick string `json: Nick`
  45. Username string `json: Username`
  46. Realname string `json: Realname`
  47. Password string `json: Password` // Password for nickserv
  48. ServerPassword string `json: ServerPassword` // Password for server
  49. AutoJoin []string `json: AutoJoin` // Channels to auto-join
  50. RejoinDelay int `json: RejoinDelay` // ms to rejoin
  51. MyNick string
  52. Socket net.Conn
  53. Reader *bufio.Reader
  54. ReadChannel chan IRCMsg
  55. ReadEvents []string
  56. WriteChannel chan IRCWrite
  57. DelChannel chan string
  58. Registered bool
  59. Flood_Num int // Number of lines sent before considered a flood
  60. Flood_Time int // Number of Seconds to track previous messages
  61. Flood_Delay int // Delay between sending when flood protection on (Milliseconds)
  62. OnExit func()
  63. }
  64. // Writer *bufio.Writer
  65. func (Config *IRCConfig) Connect() bool {
  66. var err error
  67. if Config.Flood_Num == 0 {
  68. Config.Flood_Num = 5
  69. }
  70. if Config.Flood_Time == 0 {
  71. Config.Flood_Time = 10
  72. }
  73. if Config.Flood_Delay == 0 {
  74. Config.Flood_Delay = 1000
  75. }
  76. if Config.UseSASL {
  77. if !Config.UseTLS {
  78. log.Println("Can't UseSASL if not using UseTLS")
  79. Config.UseSASL = false
  80. }
  81. }
  82. Config.Registered = false
  83. if Config.ReadChannel == nil {
  84. log.Println("Warning: ReadChannel is nil.")
  85. }
  86. if Config.UseTLS {
  87. var tlsConfig tls.Config
  88. if !Config.Insecure {
  89. certPool := x509.NewCertPool()
  90. tlsConfig.ClientCAs = certPool
  91. tlsConfig.InsecureSkipVerify = false
  92. } else {
  93. tlsConfig.InsecureSkipVerify = true
  94. }
  95. Config.Socket, err = tls.Dial("tcp", Config.Hostname+":"+strconv.Itoa(Config.Port), &tlsConfig)
  96. if err != nil {
  97. log.Fatal("tls.Dial:", err)
  98. }
  99. // Config.Writer = bufio.NewWriter(Config.TLSSocket)
  100. Config.Reader = bufio.NewReader(Config.Socket)
  101. } else {
  102. Config.Socket, err = net.Dial("tcp", Config.Hostname+":"+strconv.Itoa(Config.Port))
  103. if err != nil {
  104. log.Fatal("net.Dial:", err)
  105. }
  106. // Config.Writer = bufio.NewWriter(Config.Socket)
  107. Config.Reader = bufio.NewReader(Config.Socket)
  108. }
  109. Config.WriteChannel = make(chan IRCWrite)
  110. Config.DelChannel = make(chan string)
  111. // We are connected.
  112. go Config.WriterRoutine()
  113. // Registration
  114. if Config.UseTLS && Config.UseSASL {
  115. Config.PriorityWrite("CAP REQ :sasl")
  116. }
  117. if Config.ServerPassword != "" {
  118. Config.PriorityWrite(fmt.Sprintf("PASS %s", Config.ServerPassword))
  119. }
  120. // Register nick
  121. Config.MyNick = Config.Nick
  122. Config.PriorityWrite(fmt.Sprintf("NICK %s", Config.Nick))
  123. Config.PriorityWrite(fmt.Sprintf("USER %s 0 * :%s", Config.Username, Config.Realname))
  124. // Config.Writer.Flush()
  125. go Config.ReaderRoutine()
  126. return true
  127. }
  128. // Low level write to [TLS]Socket routine.
  129. func (Config *IRCConfig) write(output string) error {
  130. var err error
  131. log.Println(">>", output)
  132. output += "\r\n"
  133. /*
  134. if Config.UseTLS {
  135. _, err = Config.TLSSocket.Write([]byte(output))
  136. } else {
  137. */
  138. _, err = Config.Socket.Write([]byte(output))
  139. return err
  140. }
  141. func (Config *IRCConfig) WriterRoutine() {
  142. var err error
  143. var throttle ThrottleBuffer
  144. var Flood FloodTrack
  145. throttle.init()
  146. Flood.Init(Config.Flood_Num, Config.Flood_Time)
  147. // signal handler
  148. var sigChannel chan os.Signal = make(chan os.Signal, 1)
  149. signal.Notify(sigChannel, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
  150. // Change this into a select with timeout.
  151. // Timeout, if there's something to be buffered.
  152. for {
  153. if throttle.Life_sucks {
  154. select {
  155. case output := <-Config.WriteChannel:
  156. if output.To == "" {
  157. err = Config.write(output.Output)
  158. if err != nil {
  159. log.Println("Writer:", err)
  160. }
  161. continue
  162. }
  163. throttle.push(output.To, output.Output)
  164. case <-sigChannel:
  165. if Config.OnExit != nil {
  166. Config.OnExit()
  167. }
  168. os.Exit(2)
  169. case remove := <-Config.DelChannel:
  170. log.Printf("Remove: [%s]\n", remove)
  171. throttle.delete(remove)
  172. case <-time.After(time.Millisecond * time.Duration(Config.Flood_Delay)):
  173. // Send from the buffer
  174. // debugging the flood buffer
  175. // log.Printf("targets: %#v\n", targets)
  176. // log.Printf("last: %d\n", last)
  177. // log.Printf("buffer: %#v\n", buffer)
  178. var msg string = throttle.pop()
  179. err = Config.write(msg)
  180. if err != nil {
  181. log.Println("Writer:", err)
  182. }
  183. }
  184. } else {
  185. // Life is good.
  186. select {
  187. case <-sigChannel:
  188. if Config.OnExit != nil {
  189. Config.OnExit()
  190. }
  191. os.Exit(2)
  192. case remove := <-Config.DelChannel:
  193. log.Printf("Remove: [%s]\n", remove)
  194. throttle.delete(remove)
  195. case output := <-Config.WriteChannel:
  196. if output.To == "" {
  197. err = Config.write(output.Output)
  198. if err != nil {
  199. log.Println("Writer:", err)
  200. }
  201. continue
  202. }
  203. if Flood.Full() {
  204. throttle.push(output.To, output.Output)
  205. } else {
  206. // Flood limits not reached
  207. Flood.Save()
  208. err = Config.write(output.Output)
  209. if err != nil {
  210. log.Println("Writer:", err)
  211. }
  212. }
  213. }
  214. }
  215. }
  216. log.Println("~WriterRoutine")
  217. }
  218. func (Config *IRCConfig) Close() {
  219. /*
  220. if Config.UseTLS {
  221. Config.TLSSocket.Close()
  222. } else {
  223. */
  224. Config.Socket.Close()
  225. }
  226. func IRCParse(line string) []string {
  227. var pos int = strings.Index(line, " :")
  228. var message string
  229. if pos != -1 {
  230. message = line[pos+2:]
  231. line = line[:pos]
  232. }
  233. var results []string
  234. results = strings.Split(line, " ")
  235. if message != "" {
  236. results = append(results, message)
  237. }
  238. return results
  239. }
  240. func IRCNick(from string) string {
  241. if from[0] == ':' {
  242. from = from[1:]
  243. }
  244. var pos int = strings.Index(from, "!")
  245. if pos != -1 {
  246. from = from[:pos]
  247. }
  248. return from
  249. }
  250. func RandomNick(nick string) string {
  251. var result string = nick + "-"
  252. result += strconv.Itoa(rand.Intn(1000))
  253. return result
  254. }
  255. func (Config *IRCConfig) PriorityWrite(output string) {
  256. Config.WriteChannel <- IRCWrite{To: "", Output: output}
  257. }
  258. func (Config *IRCConfig) WriteTo(to string, output string) {
  259. Config.WriteChannel <- IRCWrite{To: to, Output: output}
  260. }
  261. func (Config *IRCConfig) Msg(to string, message string) {
  262. Config.WriteTo(to, fmt.Sprintf("PRIVMSG %s :%s", to, message))
  263. }
  264. func (Config *IRCConfig) Notice(to string, message string) {
  265. Config.WriteTo(to, fmt.Sprintf("NOTICE %s :%s", to, message))
  266. }
  267. func (Config *IRCConfig) Action(to string, message string) {
  268. Config.WriteTo(to, fmt.Sprintf("PRIVMSG %s :\x01ACTION %s\x01", to, message))
  269. }
  270. func (Config *IRCConfig) ReaderRoutine() {
  271. for {
  272. var line string
  273. var err error
  274. var results []string
  275. line, err = Config.Reader.ReadString('\n')
  276. if err == nil {
  277. line = strings.Trim(line, "\r\n")
  278. log.Println("<<", line)
  279. results = IRCParse(line)
  280. if results[1] == "433" {
  281. // Nick already in use!
  282. var newNick string = RandomNick(Config.Nick)
  283. Config.MyNick = newNick
  284. Config.PriorityWrite("NICK " + newNick)
  285. }
  286. if results[1] == "PRIVMSG" {
  287. // Is this an action?
  288. if len(results) >= 3 {
  289. if (results[3][0] == '\x01') && (results[3][len(results[3])-1] == '\x01') {
  290. // ACTION
  291. results[1] = "CTCP"
  292. results[3] = results[3][1 : len(results[3])-1]
  293. log.Println("CTCP:", results[3])
  294. // Process CTCP commands
  295. if strings.HasPrefix(results[3], "ACTION ") {
  296. results[1] = "ACTION"
  297. results[3] = results[3][7:]
  298. }
  299. if strings.HasPrefix(results[3], "PING ") {
  300. Config.WriteTo(IRCNick(results[0]),
  301. fmt.Sprintf("NOTICE %s :\x01PING %s\x01",
  302. IRCNick(results[0]),
  303. results[3][5:]))
  304. }
  305. if results[3] == "VERSION" {
  306. // Send version reply
  307. Config.WriteTo(IRCNick(results[0]),
  308. fmt.Sprintf("NOTICE %s :\x01VERSION red-green.com/irc-client 0.1\x01",
  309. IRCNick(results[0])))
  310. }
  311. if results[3] == "TIME" {
  312. // Send time reply
  313. var now time.Time = time.Now()
  314. Config.WriteTo(IRCNick(results[0]),
  315. fmt.Sprintf("NOTICE %s :\x01TIME %s\x01",
  316. IRCNick(results[0]),
  317. now.Format(time.ANSIC)))
  318. }
  319. }
  320. }
  321. }
  322. } else {
  323. // This is likely, 2022/04/05 10:11:41 ReadString: EOF
  324. if err != io.EOF {
  325. log.Println("ReadString:", err)
  326. }
  327. close(Config.ReadChannel)
  328. return
  329. }
  330. var msg IRCMsg = IRCMsg{MsgParts: results}
  331. if len(results) >= 3 {
  332. msg.From = IRCNick(results[0])
  333. msg.Cmd = results[1]
  334. msg.To = results[2]
  335. if len(results) >= 4 {
  336. msg.Msg = results[3]
  337. }
  338. } else {
  339. msg.Cmd = results[0]
  340. }
  341. // Answer PING/PONG immediately.
  342. if results[0] == "PING" {
  343. Config.PriorityWrite("PONG " + results[1])
  344. }
  345. if (msg.Cmd == "401") || (msg.Cmd == "404") {
  346. // No such nick/channel
  347. log.Printf("Remove %s from buffer.", msg.MsgParts[3])
  348. Config.DelChannel <- msg.MsgParts[3]
  349. }
  350. if !Config.Registered {
  351. // We're not registered yet
  352. // Answer the queries for SASL authentication
  353. if (msg.Cmd == "CAP") && (msg.Msg == "ACK") {
  354. Config.PriorityWrite("AUTHENTICATE PLAIN")
  355. }
  356. if msg.Cmd == "CAP" && msg.Msg == "NAK" {
  357. // SASL Authentication failed!
  358. Config.PriorityWrite("CAP END")
  359. Config.UseSASL = false
  360. }
  361. if (msg.MsgParts[0] == "AUTHENTICATE") && (msg.MsgParts[1] == "+") {
  362. var userpass string = fmt.Sprintf("\x00%s\x00%s", Config.Nick, Config.Password)
  363. var b64 string = base64.StdEncoding.EncodeToString([]byte(userpass))
  364. Config.PriorityWrite("AUTHENTICATE " + b64)
  365. }
  366. if msg.Cmd == "903" {
  367. // Success SASL
  368. Config.PriorityWrite("CAP END")
  369. Config.Registered = true
  370. }
  371. if msg.Cmd == "904" {
  372. // Failed SASL
  373. Config.PriorityWrite("CAP END")
  374. // Should we exit here?
  375. Config.UseSASL = false
  376. }
  377. /*
  378. 2022/04/06 19:12:11 << :[email protected] NOTICE meow :This nickname is registered and protected. If it is your
  379. 2022/04/06 19:12:11 << :[email protected] NOTICE meow :nick, type /msg NickServ IDENTIFY password. Otherwise,
  380. 2022/04/06 19:12:11 << :[email protected] NOTICE meow :please choose a different nick.
  381. */
  382. if (msg.From == "NickServ") && (msg.Cmd == "NOTICE") {
  383. if strings.Contains(msg.Msg, "IDENTIFY") && Config.Password != "" {
  384. Config.PriorityWrite(fmt.Sprintf("NS IDENTIFY %s", Config.Password))
  385. }
  386. // :[email protected] NOTICE meow :Password accepted - you are now recognized.
  387. }
  388. if !Config.UseSASL && (msg.Cmd == "900") {
  389. Config.Registered = true
  390. }
  391. }
  392. // This is a better way of knowing when we've identified for services
  393. if (msg.Cmd == "MODE") && (msg.To == Config.MyNick) {
  394. // This should probably be look for + and contains "r"
  395. if (msg.Msg[0] == '+') && (strings.Contains(msg.Msg, "r")) {
  396. Config.ReadChannel <- IRCMsg{Cmd: "Identified"}
  397. }
  398. if len(Config.AutoJoin) > 0 {
  399. Config.PriorityWrite("JOIN " + strings.Join(Config.AutoJoin, ","))
  400. }
  401. }
  402. if msg.Cmd == "KICK" {
  403. // Were we kicked, is channel in AutoJoin?
  404. // 2022/04/13 20:02:52 << :[email protected] KICK #bugz meow-bot :bugz
  405. // Msg: ircclient.IRCMsg{MsgParts:[]string{":[email protected]", "KICK", "#bugz", "meow-bot", "bugz"}, From:"bugz", To:"#bugz", Cmd:"KICK", Msg:"meow-bot"}
  406. if strings.Contains(msg.Msg, Config.MyNick) {
  407. if StrInArray(Config.AutoJoin, msg.To) {
  408. // Yes, we were kicked from AutoJoin channel
  409. time.AfterFunc(time.Duration(Config.RejoinDelay)*time.Millisecond, func() { Config.WriteTo(msg.To, "JOIN "+msg.To) })
  410. }
  411. }
  412. }
  413. if Config.ReadChannel != nil {
  414. Config.ReadChannel <- msg
  415. }
  416. if (msg.Cmd == "376") || (msg.Cmd == "422") {
  417. // End MOTD, or MOTD Missing
  418. var reg IRCMsg = IRCMsg{Cmd: "EndMOTD"}
  419. Config.ReadChannel <- reg
  420. }
  421. if msg.Cmd == "NICK" {
  422. // :meow NICK :meow-bot
  423. if msg.From == Config.MyNick {
  424. Config.MyNick = msg.To
  425. log.Println("Nick is now:", Config.MyNick)
  426. }
  427. }
  428. }
  429. }