This commit is contained in:
Daniel Aberger 2016-02-29 15:05:31 +01:00
commit 458b7435d0
5 changed files with 47 additions and 11 deletions

View file

@ -20,7 +20,7 @@ func init() {
}
func coffeeHandleMessage(m *irc.Message) {
tok := strings.Split(m.Trailing, " ")
tok := strings.Split(strings.Trim(m.Trailing, " "), " ")
if len(tok) < 1 {
return
}

View file

@ -31,7 +31,6 @@ func fuzzytimeHandleMessage(m *irc.Message) {
}
func fuzzytimeShow() {
log.Println("timeshow")
t := time.Now()
h := t.Hour()
tzcorrect := 1
@ -66,9 +65,7 @@ func fuzzytimeShow() {
default:
s += fmt.Sprintf("%s Uhr\n", fuzzytimeSayHour(h+1))
}
log.Println("saying now:", s)
SayCh <- fmt.Sprintf("*\n%s", s)
}
func fuzzytimeSayHour(h int) string {

35
modules/modules.go Normal file
View file

@ -0,0 +1,35 @@
// vi:ts=4:sts=4:sw=4:noet:tw=72
//
// flokatirc
//
// Copyright (c) 2015,2016 Andreas Neue <an@dnix.de>
package modules
import (
"log"
"strings"
"github.com/sorcix/irc"
)
var (
SayCh chan string
MsgHandlers = make(map[string]func(*irc.Message))
ModParams = make(map[string]string)
)
func Init(ch chan string, params string) {
SayCh = ch
for _, param := range strings.Split(params, "!") {
kv := strings.Split(param, ":")
ModParams[kv[0]] = kv[1]
log.Println(kv[0], kv[1])
}
}
func HandleMessage(m *irc.Message) {
for _, fn := range MsgHandlers {
fn(m)
}
}

View file

@ -66,7 +66,7 @@ func rssPollFeed(uri string, timeout int, cr xmlx.CharsetFunc) {
}
func rssChanHandler(feed *gorss.Feed, newchannels []*gorss.Channel) {
SayCh <- fmt.Sprintf("%s\n[RSS] %d new channel(s) in %s", "*", len(newchannels), feed.Url)
//SayCh <- fmt.Sprintf("%s\n[RSS] %d new channel(s) in %s", "*", len(newchannels), feed.Url)
}
func rssItemHandler(feed *gorss.Feed, ch *gorss.Channel, newitems []*gorss.Item) {