hook2xmpp/main.go

113 lines
2.7 KiB
Go
Raw Normal View History

2017-06-09 10:55:47 +02:00
package main
import (
"flag"
"net/http"
"os"
"os/signal"
"syscall"
2019-02-13 03:24:38 +01:00
"dev.sum7.eu/genofire/golang-lib/file"
2019-02-13 03:55:07 +01:00
"github.com/bdlm/log"
"github.com/mattn/go-xmpp"
2019-02-13 03:24:38 +01:00
_ "dev.sum7.eu/genofire/hook2xmpp/circleci"
_ "dev.sum7.eu/genofire/hook2xmpp/git"
2019-02-14 06:16:33 +01:00
_ "dev.sum7.eu/genofire/hook2xmpp/gitlab"
2019-02-13 04:52:00 +01:00
_ "dev.sum7.eu/genofire/hook2xmpp/grafana"
2019-06-17 15:12:31 +02:00
_ "dev.sum7.eu/genofire/hook2xmpp/prometheus"
2019-02-13 03:24:38 +01:00
"dev.sum7.eu/genofire/hook2xmpp/runtime"
2017-06-09 10:55:47 +02:00
)
func main() {
configFile := "config.conf"
flag.StringVar(&configFile, "config", configFile, "path of configuration file")
flag.Parse()
2019-02-13 03:24:38 +01:00
config := &runtime.Config{}
2017-06-16 14:55:07 +02:00
2019-02-13 03:24:38 +01:00
if err := file.ReadTOML(configFile, config); err != nil {
2019-02-14 12:55:09 +01:00
log.WithField("tip", "maybe call me with: hook2xmpp--config /etc/hook2xmpp.conf").Panicf("error on read config: %s", err)
2017-06-16 14:55:07 +02:00
}
2019-02-14 01:32:27 +01:00
log.SetLevel(config.LogLevel)
2017-06-16 14:55:07 +02:00
// load config
2017-06-09 15:51:04 +02:00
options := xmpp.Options{
Host: config.XMPP.Host,
User: config.XMPP.Username,
2019-02-13 04:52:00 +01:00
Resource: config.XMPP.Resource,
2017-06-09 15:51:04 +02:00
Password: config.XMPP.Password,
2019-02-13 04:52:00 +01:00
StartTLS: config.XMPP.StartTLS,
2017-06-09 15:51:04 +02:00
NoTLS: config.XMPP.NoTLS,
Debug: config.XMPP.Debug,
Session: config.XMPP.Session,
Status: config.XMPP.Status,
StatusMessage: config.XMPP.StatusMessage,
}
client, err := options.NewClient()
2017-06-09 10:55:47 +02:00
if err != nil {
2019-02-13 04:52:00 +01:00
log.Panicf("error on startup xmpp client: %s", err)
2017-06-09 10:55:47 +02:00
}
2019-02-13 03:24:38 +01:00
go runtime.Start(client)
2017-06-09 10:55:47 +02:00
2019-02-13 03:24:38 +01:00
for hookType, getHandler := range runtime.HookRegister {
hooks, ok := config.Hooks[hookType]
if ok {
2019-02-13 04:52:00 +01:00
http.HandleFunc("/"+hookType, getHandler(client, hooks))
2019-02-13 03:24:38 +01:00
}
}
2017-06-09 15:51:04 +02:00
2017-06-09 10:55:47 +02:00
srv := &http.Server{
Addr: config.WebserverBind,
}
go func() {
2019-03-09 00:09:45 +01:00
if err := srv.ListenAndServe(); err != http.ErrServerClosed {
2017-06-09 10:55:47 +02:00
panic(err)
}
}()
2019-02-13 03:55:07 +01:00
var mucs []string
for _, muc := range config.StartupNotifyMuc {
mucs = append(mucs, muc)
client.JoinMUCNoHistory(muc, config.Nickname)
}
for _, hooks := range config.Hooks {
for _, hook := range hooks {
for _, muc := range hook.NotifyMuc {
mucs = append(mucs, muc)
client.JoinMUCNoHistory(muc, config.Nickname)
}
}
}
2019-02-13 04:52:00 +01:00
notify := func(msg string) {
2019-02-13 03:55:07 +01:00
for _, muc := range config.StartupNotifyMuc {
client.SendHtml(xmpp.Chat{Remote: muc, Type: "groupchat", Text: msg})
}
for _, user := range config.StartupNotifyUser {
client.SendHtml(xmpp.Chat{Remote: user, Type: "chat", Text: msg})
}
}
2019-02-13 19:51:23 +01:00
log.Infof("started hock2xmpp with %s", client.JID())
2019-02-13 03:55:07 +01:00
notify("startup of hock2xmpp")
2017-06-09 10:55:47 +02:00
// Wait for system signal
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
sig := <-sigs
2019-02-13 03:55:07 +01:00
notify("stopped of hock2xmpp")
2019-02-13 04:52:00 +01:00
2019-02-13 03:55:07 +01:00
for _, muc := range mucs {
client.LeaveMUC(muc)
}
2017-06-09 14:27:06 +02:00
2017-06-09 10:55:47 +02:00
srv.Close()
2019-02-13 03:55:07 +01:00
client.Close()
2017-06-09 10:55:47 +02:00
2019-02-13 03:55:07 +01:00
log.Infof("closed by receiving: %s", sig)
2017-06-09 10:55:47 +02:00
}