unified-push-xmpp/distributor/main.go

61 lines
1.4 KiB
Go
Raw Normal View History

2021-09-05 13:31:06 +02:00
package main
import (
2021-09-09 23:12:29 +02:00
"flag"
"os"
"path/filepath"
2021-09-05 19:20:27 +02:00
2021-09-09 23:12:29 +02:00
"dev.sum7.eu/genofire/golang-lib/file"
2021-09-05 19:20:27 +02:00
"github.com/bdlm/log"
"unifiedpush.org/go/np2p_dbus/distributor"
"unifiedpush.org/go/np2p_dbus/storage"
2021-09-05 13:31:06 +02:00
)
var dbus *distributor.DBus
2021-09-05 19:20:27 +02:00
type configData struct {
StoragePath string `toml"storage_path"`
XMPP XMPPService `toml:"xmpp"`
}
func defaultPath(given, filename string) string {
if given != "" {
return given
}
basedir := os.Getenv("XDG_CONFIG_HOME")
if len(basedir) == 0 {
basedir = os.Getenv("HOME")
if len(basedir) == 0 {
basedir = "./" // FIXME: set to cwd if dunno wth is going on
}
basedir = filepath.Join(basedir, ".config")
}
basedir = filepath.Join(basedir, "unifiedpushxmpp")
os.MkdirAll(basedir, 0o700)
return filepath.Join(basedir, filename)
}
func main() {
configPath := ""
2021-09-09 23:12:29 +02:00
flag.StringVar(&configPath, "c", configPath, "path to configuration file")
flag.Parse()
config := &configData{}
if err := file.ReadTOML(defaultPath(configPath, "config.toml"), config); err != nil {
2021-09-09 23:12:29 +02:00
log.Panicf("open config file: %s", err)
}
store, err := storage.InitStorage(defaultPath(config.StoragePath, "database.db"))
if err != nil {
log.Panicf("open storage: %s", err)
}
dbus = distributor.NewDBus("org.unifiedpush.Distributor.xmpp")
dbus.StartHandling(&config.XMPP)
2021-09-05 19:20:27 +02:00
log.Info("startup")
if err := config.XMPP.Run(dbus, store); err != nil {
2021-09-09 23:12:29 +02:00
log.Errorf("startup xmpp: %v", err)
}
2021-09-05 13:31:06 +02:00
}