This repository was archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwolfram.go
101 lines (94 loc) · 2.31 KB
/
wolfram.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Copyright 2014 James McGuire. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.
package main
import (
"encoding/xml"
"fmt"
"log"
"net/http"
"net/url"
"strings"
irc "github.com/fluffle/goirc/client"
)
const wolframAPIUrl = `http://api.wolframalpha.com/v2/query`
// Wolfram|Alpha structs
type Wolfstruct struct {
Success bool `xml:"success,attr"`
Pods []Pod `xml:"pod"`
}
type Pod struct {
Title string `xml:"title,attr"`
Text string `xml:"subpod>plaintext"`
Primary bool `xml:"primary,attr"`
}
func wolfram(conn *irc.Conn, line *irc.Line) {
if !strings.HasPrefix(line.Text(), "!ask") {
return
}
query := strings.TrimSpace(strings.TrimPrefix(line.Text(), "!ask"))
if query == "" {
conn.Privmsg(line.Target(), "Example: !ask pi")
return
}
log.Printf("Searching wolfram alpha for %s", query)
wolf, err := url.Parse(wolframAPIUrl)
if err != nil {
log.Println(err)
return
}
v := wolf.Query()
v.Set("input", query)
v.Set("appid", config.WolframAPIKey)
wolf.RawQuery = v.Encode()
resp, err := http.Get(wolf.String())
if err != nil {
log.Println(err)
return
}
defer resp.Body.Close()
var wolfstruct Wolfstruct
err = xml.NewDecoder(resp.Body).Decode(&wolfstruct)
if err != nil {
log.Println(err)
return
}
log.Printf("%+v\n", wolfstruct)
if !wolfstruct.Success {
conn.Privmsg(line.Target(), "I have no idea.")
return
}
var interpretation string
for _, pod := range wolfstruct.Pods {
if pod.Title == "Input interpretation" {
interpretation = pod.Title + ": " + pod.Text
}
if !pod.Primary {
continue
}
log.Println(query)
response := strings.Split(pod.Title+": "+pod.Text, "\n")
var numlines int
if len(response) > 3 {
numlines = 3
} else {
numlines = len(response)
}
query = fmt.Sprintf("(In reponse to: <%s> %s)", line.Nick, query)
if interpretation != "" {
conn.Privmsg(line.Target(), interpretation)
}
if numlines == 1 {
conn.Privmsg(line.Target(), response[0]+" "+query)
} else {
for _, message := range response[:numlines] {
conn.Privmsg(line.Target(), message)
}
conn.Privmsg(line.Target(), query)
}
// Sometimes it returns multiple primary pods
return
}
// If I couldn't find anything just give up...
conn.Privmsg(line.Target(), "I have no idea.")
}