forked from grantmd/slack-markov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
75 lines (62 loc) · 1.84 KB
/
main.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
package main
// Main entry point for the app. Handles command-line options, starts the web
// listener and any import, etc
import (
"flag"
"fmt"
"log"
"math/rand"
"os"
"time"
)
var (
httpPort int
numWords int
prefixLen int
stateFile string
responseChance int
botUsername string
markovChain *Chain
)
func init() {
rand.Seed(time.Now().UnixNano()) // Seed the random number generator.
}
func main() {
// Parse command-line options
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "usage: ./slack-markov -port=8000\n")
flag.PrintDefaults()
}
flag.IntVar(&httpPort, "port", 8000, "The HTTP port on which to listen")
flag.IntVar(&numWords, "words", 100, "Maximum number of words in the output")
flag.IntVar(&prefixLen, "prefix", 2, "Prefix length in words")
flag.IntVar(&responseChance, "responseChance", 10, "Percent chance to generate a response on each request")
flag.StringVar(&stateFile, "stateFile", "state", "File to use for maintaining our markov chain state")
flag.StringVar(&botUsername, "botUsername", "markov-bot", "The name of the bot when it speaks")
var importDir = flag.String("importDir", "", "The directory of a Slack export")
var importChan = flag.String("importChan", "", "Optional channel to limit the import to")
flag.Parse()
if httpPort == 0 {
flag.Usage()
os.Exit(2)
}
markovChain = NewChain(prefixLen) // Initialize a new Chain.
// Import into the chain
if *importDir != "" {
err := StartImport(importDir, importChan)
if err != nil {
log.Fatal(err)
}
} else {
// Rebuild the markov chain from state
err := markovChain.Load(stateFile)
if err != nil {
//log.Fatal(err)
log.Printf("Could not load from '%s'. This may be expected.", stateFile)
} else {
log.Printf("Loaded previous state from '%s'.", stateFile)
}
}
// Start the webserver
StartServer(httpPort)
}