well-goknown/main.go

47 lines
1.3 KiB
Go
Raw Normal View History

package main
import (
"net/http"
2023-04-29 18:01:40 +00:00
"git.minhas.io/asara/well-goknown/config"
"git.minhas.io/asara/well-goknown/logger"
"git.minhas.io/asara/well-goknown/matrix"
"git.minhas.io/asara/well-goknown/nostr"
2023-05-01 22:41:28 +00:00
"git.minhas.io/asara/well-goknown/redis"
)
func main() {
2023-05-01 22:41:28 +00:00
var err error
l := logger.Get()
// connect to redis
redis.NostrRedisConn, err = redis.New("localhost:6379", "", redis.NostrKeyspace)
if err != nil {
l.Fatal().Msg("unable to connect to redis")
}
redis.LndRedisConn, err = redis.New("localhost:6379", "", redis.LndKeyspace)
if err != nil {
l.Fatal().Msg("unable to connect to redis")
}
2023-02-03 04:56:15 +00:00
// matrix endpoints
2023-04-29 18:01:40 +00:00
l.Debug().Msg("enabling matrix server endpoint")
2023-02-04 01:15:41 +00:00
http.HandleFunc("/.well-known/matrix/server", matrix.MatrixServer)
2023-04-29 18:01:40 +00:00
l.Debug().Msg("enabling matrix client endpoint")
2023-02-04 01:15:41 +00:00
http.HandleFunc("/.well-known/matrix/client", matrix.MatrixClient)
2023-02-03 04:56:15 +00:00
// nostr endpoints
2023-04-29 18:01:40 +00:00
l.Debug().Msg("enabling nostr user endpoint")
http.HandleFunc("/.well-known/nostr.json", nostr.GetNostrAddr)
addr := config.GetConfig().LndAddr
if addr != "" {
l.Debug().Msg("enabling nostr request endpoint")
http.HandleFunc("/request/nostr", nostr.RequestNostrAddr)
}
2023-02-03 04:56:15 +00:00
// start server
2023-04-29 18:01:40 +00:00
port := config.GetConfig().ListenAddr
l.Info().Msgf("starting server on %s", port)
http.ListenAndServe(port, nil)
}