irc-client.go 13 KB

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