This repository has been archived by the owner on Jul 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgorepost.go
72 lines (58 loc) · 1.95 KB
/
gorepost.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
// Copyright 2015 Robert S. Gerus. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Gorepost is an overengineered IRC bot that i use for learning Go.
package main
import (
"log"
"os"
"path"
"github.com/arachnist/dyncfg"
"github.com/arachnist/gorepost/bot"
"github.com/arachnist/gorepost/irc"
)
func fileListFuncBuilder(basedir, common string) func(map[string]string) []string {
return func(c map[string]string) []string {
var r []string
if c["Network"] != "" {
if c["Target"] != "" {
if c["Source"] != "" {
r = append(r, path.Join(basedir, c["Network"], c["Target"], c["Source"]+".json"))
r = append(r, path.Join(basedir, c["Network"], c["Source"]+".json"))
}
r = append(r, path.Join(basedir, c["Network"], c["Target"]+".json"))
}
r = append(r, path.Join(basedir, c["Network"]+".json"))
}
return append(r, path.Join(basedir, common))
}
}
func main() {
var exit chan struct{}
context := make(map[string]string)
if len(os.Args) < 2 {
log.Fatalln("Usage:", os.Args[0], "<configuration directory>")
}
d, err := os.Stat(os.Args[1])
if err != nil {
log.Fatalln("Error reading configuration from", os.Args[1], "error:", err.Error())
}
if !d.IsDir() {
log.Fatalln("Not a directory:", os.Args[1])
}
cfg := dyncfg.New(fileListFuncBuilder(os.Args[1], "common.json"))
logfile, err := os.OpenFile(cfg.LookupString(context, "Logpath"), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
log.Fatalln("Error opening", cfg.LookupString(context, "Logpath"), "for writing, error:", err.Error())
}
log.SetOutput(logfile)
networks := cfg.LookupStringSlice(context, "Networks")
log.Println("Configured networks:", len(networks), networks)
bot.Initialize(cfg)
for i, conn := range make([]irc.Connection, len(networks)) {
conn := conn
log.Println("Setting up", networks[i], "connection")
conn.Setup(bot.Dispatcher, networks[i], cfg)
}
<-exit
}