Blame


1 7cc05214 2021-04-27 op package main
2 7cc05214 2021-04-27 op
3 7cc05214 2021-04-27 op import (
4 7cc05214 2021-04-27 op "crypto/tls"
5 7cc05214 2021-04-27 op "flag"
6 7cc05214 2021-04-27 op "fmt"
7 7cc05214 2021-04-27 op "io"
8 7cc05214 2021-04-27 op "io/ioutil"
9 7cc05214 2021-04-27 op "log"
10 7cc05214 2021-04-27 op "net/http"
11 ae97f748 2021-07-30 op "path"
12 5ad39add 2021-04-27 op "path/filepath"
13 7cc05214 2021-04-27 op "regexp"
14 88370dfe 2021-11-07 op "strings"
15 7cc05214 2021-04-27 op
16 deee939b 2022-01-08 op "github.com/andybalholm/cascadia"
17 7cc05214 2021-04-27 op irc "github.com/fluffle/goirc/client"
18 5659492e 2021-12-02 op "golang.org/x/net/html"
19 7cc05214 2021-04-27 op )
20 7cc05214 2021-04-27 op
21 7cc05214 2021-04-27 op var (
22 88370dfe 2021-11-07 op baseurl = flag.String("baseurl", "gemini://m2i.omarpolo.com", "base url")
23 7cc05214 2021-04-27 op matrixOutDir = flag.String("matrix-out", "", "matrix out directory")
24 7cc05214 2021-04-27 op
25 88370dfe 2021-11-07 op msgRe = regexp.MustCompile(`https://.*/[^\s]+\.(txt|png|jpg|jpeg|gif)`)
26 c6fd4def 2021-07-30 op channel = "#gemini-it"
27 88370dfe 2021-11-07 op
28 88370dfe 2021-11-07 op tooLongRe = regexp.MustCompile(`full message at (https://libera.ems.host/.*)[)]`)
29 5659492e 2021-12-02 op
30 4852f411 2021-12-02 op httplink = regexp.MustCompile(`https?://[^\s)]+`)
31 cfb62e6e 2022-01-08 op gemlink = regexp.MustCompile(`gemini://[^\s)]+`)
32 7cc05214 2021-04-27 op )
33 7cc05214 2021-04-27 op
34 7cc05214 2021-04-27 op func matrix2gemini(conn *irc.Conn, line *irc.Line) {
35 ae97f748 2021-07-30 op matches := msgRe.FindAllString(line.Text(), -1)
36 7cc05214 2021-04-27 op
37 7cc05214 2021-04-27 op // it's not a good idea to defer inside a loop, but we know
38 7cc05214 2021-04-27 op // len(matches) is small (usually just 1). Morover, I like
39 7cc05214 2021-04-27 op // living in danger!
40 7cc05214 2021-04-27 op
41 7cc05214 2021-04-27 op for _, link := range matches {
42 7cc05214 2021-04-27 op resp, err := http.Get(link)
43 7cc05214 2021-04-27 op if err != nil {
44 7cc05214 2021-04-27 op conn.Privmsg(
45 7cc05214 2021-04-27 op channel,
46 7cc05214 2021-04-27 op fmt.Sprintf("failed to download %q: %s", link, err),
47 7cc05214 2021-04-27 op )
48 7cc05214 2021-04-27 op continue
49 7cc05214 2021-04-27 op }
50 7cc05214 2021-04-27 op defer resp.Body.Close()
51 7cc05214 2021-04-27 op
52 ae97f748 2021-07-30 op ext := path.Ext(link)
53 88370dfe 2021-11-07 op tmpfile, err := ioutil.TempFile(*matrixOutDir, "message-*"+ext)
54 7cc05214 2021-04-27 op if err != nil {
55 7cc05214 2021-04-27 op conn.Privmsg(channel, fmt.Sprintf("failed to tmpfile: %s", err))
56 7cc05214 2021-04-27 op return
57 7cc05214 2021-04-27 op }
58 7cc05214 2021-04-27 op defer tmpfile.Close()
59 7cc05214 2021-04-27 op
60 7cc05214 2021-04-27 op io.Copy(tmpfile, resp.Body)
61 7cc05214 2021-04-27 op
62 7cc05214 2021-04-27 op conn.Privmsg(
63 7cc05214 2021-04-27 op channel,
64 5ad39add 2021-04-27 op fmt.Sprintf(
65 5ad39add 2021-04-27 op "better: %s/%s",
66 5ad39add 2021-04-27 op *baseurl,
67 5ad39add 2021-04-27 op filepath.Base(tmpfile.Name()),
68 5ad39add 2021-04-27 op ),
69 7cc05214 2021-04-27 op )
70 7cc05214 2021-04-27 op }
71 7cc05214 2021-04-27 op }
72 7cc05214 2021-04-27 op
73 88370dfe 2021-11-07 op func messageTooLong(conn *irc.Conn, line *irc.Line) {
74 88370dfe 2021-11-07 op matches := tooLongRe.FindStringSubmatch(line.Text())
75 88370dfe 2021-11-07 op if len(matches) != 2 {
76 88370dfe 2021-11-07 op return
77 88370dfe 2021-11-07 op }
78 88370dfe 2021-11-07 op
79 88370dfe 2021-11-07 op url := matches[1]
80 88370dfe 2021-11-07 op
81 88370dfe 2021-11-07 op resp, err := http.Get(url)
82 88370dfe 2021-11-07 op if err != nil {
83 88370dfe 2021-11-07 op conn.Privmsg(
84 88370dfe 2021-11-07 op channel,
85 88370dfe 2021-11-07 op fmt.Sprintf("failed to download %q: %s", url, err),
86 88370dfe 2021-11-07 op )
87 88370dfe 2021-11-07 op return
88 88370dfe 2021-11-07 op }
89 88370dfe 2021-11-07 op defer resp.Body.Close()
90 88370dfe 2021-11-07 op
91 88370dfe 2021-11-07 op sb := &strings.Builder{}
92 88370dfe 2021-11-07 op if _, err := io.Copy(sb, resp.Body); err != nil {
93 88370dfe 2021-11-07 op conn.Privmsg(
94 88370dfe 2021-11-07 op channel,
95 88370dfe 2021-11-07 op fmt.Sprintf("failed to read body of %q: %s", url, err),
96 88370dfe 2021-11-07 op )
97 88370dfe 2021-11-07 op return
98 88370dfe 2021-11-07 op }
99 88370dfe 2021-11-07 op
100 88370dfe 2021-11-07 op conn.Privmsg(channel, fmt.Sprintf("%s ha detto:", line.Nick))
101 88370dfe 2021-11-07 op for _, line := range strings.Split(sb.String(), "\n") {
102 88370dfe 2021-11-07 op conn.Privmsg(
103 88370dfe 2021-11-07 op channel,
104 88370dfe 2021-11-07 op line,
105 88370dfe 2021-11-07 op )
106 88370dfe 2021-11-07 op }
107 88370dfe 2021-11-07 op }
108 88370dfe 2021-11-07 op
109 3adf60f8 2021-12-02 op func stringifyNode(node *html.Node) string {
110 3adf60f8 2021-12-02 op s := ""
111 3adf60f8 2021-12-02 op
112 3adf60f8 2021-12-02 op if node.Type == html.TextNode {
113 3adf60f8 2021-12-02 op return node.Data
114 3adf60f8 2021-12-02 op }
115 3adf60f8 2021-12-02 op
116 3adf60f8 2021-12-02 op for child := node.FirstChild; child != nil; child = child.NextSibling {
117 3adf60f8 2021-12-02 op s += stringifyNode(child)
118 3adf60f8 2021-12-02 op }
119 3adf60f8 2021-12-02 op
120 3adf60f8 2021-12-02 op return s
121 3adf60f8 2021-12-02 op }
122 3adf60f8 2021-12-02 op
123 cfb62e6e 2022-01-08 op func wwwpagetitle(conn *irc.Conn, line *irc.Line) {
124 5659492e 2021-12-02 op matches := httplink.FindAllString(line.Text(), -1)
125 5659492e 2021-12-02 op
126 5659492e 2021-12-02 op for _, link := range matches {
127 d26637f1 2021-12-02 op log.Println("fetching", link, "...")
128 d26637f1 2021-12-02 op
129 5659492e 2021-12-02 op resp, err := http.Get(link)
130 5659492e 2021-12-02 op if err != nil {
131 5659492e 2021-12-02 op continue
132 5659492e 2021-12-02 op }
133 5659492e 2021-12-02 op defer resp.Body.Close()
134 5659492e 2021-12-02 op
135 5659492e 2021-12-02 op doc, err := html.Parse(resp.Body)
136 5659492e 2021-12-02 op if err != nil {
137 5659492e 2021-12-02 op continue
138 5659492e 2021-12-02 op }
139 5659492e 2021-12-02 op
140 deee939b 2022-01-08 op sel := cascadia.MustCompile("head > title")
141 deee939b 2022-01-08 op n := cascadia.Query(doc, sel)
142 deee939b 2022-01-08 op
143 deee939b 2022-01-08 op if n == nil {
144 5659492e 2021-12-02 op continue
145 5659492e 2021-12-02 op }
146 deee939b 2022-01-08 op
147 0c3e9562 2022-01-08 op title := stringifyNode(n)
148 0c3e9562 2022-01-08 op if len(title) > 50 {
149 0c3e9562 2022-01-08 op title = title[:50]
150 0c3e9562 2022-01-08 op }
151 deee939b 2022-01-08 op conn.Privmsg(channel, stringifyNode(n))
152 5659492e 2021-12-02 op }
153 5659492e 2021-12-02 op }
154 5659492e 2021-12-02 op
155 cfb62e6e 2022-01-08 op func gempagetitle(conn *irc.Conn, line *irc.Line) {
156 cfb62e6e 2022-01-08 op matches := gemlink.FindAllString(line.Text(), -1)
157 cfb62e6e 2022-01-08 op
158 cfb62e6e 2022-01-08 op for _, link := range matches {
159 cfb62e6e 2022-01-08 op log.Println("fetching", link, "...")
160 cfb62e6e 2022-01-08 op title, err := geminiTitle(link)
161 cfb62e6e 2022-01-08 op if err != nil {
162 cfb62e6e 2022-01-08 op continue
163 cfb62e6e 2022-01-08 op }
164 cfb62e6e 2022-01-08 op
165 cfb62e6e 2022-01-08 op conn.Privmsg(channel, title)
166 cfb62e6e 2022-01-08 op }
167 cfb62e6e 2022-01-08 op }
168 cfb62e6e 2022-01-08 op
169 56842f40 2022-06-29 op func pong(conn *irc.Conn, line *irc.Line) {
170 56842f40 2022-06-29 op if line.Text() != ",ping" {
171 56842f40 2022-06-29 op return
172 56842f40 2022-06-29 op }
173 56842f40 2022-06-29 op conn.Privmsg(
174 56842f40 2022-06-29 op channel,
175 56842f40 2022-06-29 op "pong :)",
176 56842f40 2022-06-29 op )
177 56842f40 2022-06-29 op }
178 56842f40 2022-06-29 op
179 7cc05214 2021-04-27 op func dostuff(conn *irc.Conn, line *irc.Line) {
180 7cc05214 2021-04-27 op matrix2gemini(conn, line)
181 88370dfe 2021-11-07 op messageTooLong(conn, line)
182 cfb62e6e 2022-01-08 op wwwpagetitle(conn, line)
183 cfb62e6e 2022-01-08 op gempagetitle(conn, line)
184 56842f40 2022-06-29 op pong(conn, line)
185 7cc05214 2021-04-27 op // ...
186 7cc05214 2021-04-27 op }
187 7cc05214 2021-04-27 op
188 7cc05214 2021-04-27 op func main() {
189 7cc05214 2021-04-27 op flag.Parse()
190 7cc05214 2021-04-27 op
191 7cc05214 2021-04-27 op cfg := irc.NewConfig("gemitbot")
192 7cc05214 2021-04-27 op cfg.SSL = true
193 d0286003 2021-07-30 op cfg.SSLConfig = &tls.Config{ServerName: "irc.libera.chat"}
194 d0286003 2021-07-30 op cfg.Server = "irc.libera.chat:7000"
195 7cc05214 2021-04-27 op cfg.NewNick = func(n string) string { return n + "^" }
196 7cc05214 2021-04-27 op
197 7cc05214 2021-04-27 op c := irc.Client(cfg)
198 7cc05214 2021-04-27 op
199 7cc05214 2021-04-27 op c.HandleFunc(irc.CONNECTED, func(conn *irc.Conn, line *irc.Line) {
200 7cc05214 2021-04-27 op log.Println("connected, joining", channel)
201 7cc05214 2021-04-27 op conn.Join(channel)
202 7cc05214 2021-04-27 op })
203 7cc05214 2021-04-27 op
204 7cc05214 2021-04-27 op c.HandleFunc(irc.PRIVMSG, dostuff)
205 7cc05214 2021-04-27 op c.HandleFunc(irc.ACTION, dostuff)
206 7cc05214 2021-04-27 op
207 7cc05214 2021-04-27 op quit := make(chan bool)
208 7cc05214 2021-04-27 op
209 7cc05214 2021-04-27 op c.HandleFunc(irc.DISCONNECTED, func(conn *irc.Conn, line *irc.Line) {
210 7cc05214 2021-04-27 op quit <- true
211 7cc05214 2021-04-27 op })
212 7cc05214 2021-04-27 op
213 7cc05214 2021-04-27 op if err := c.Connect(); err != nil {
214 7cc05214 2021-04-27 op log.Fatalln("connection error:", err)
215 7cc05214 2021-04-27 op }
216 7cc05214 2021-04-27 op
217 7cc05214 2021-04-27 op <-quit
218 7cc05214 2021-04-27 op }