wallet-sync-server/main.go

58 lines
1.2 KiB
Go
Raw Normal View History

package main
import (
"log"
2022-07-12 04:10:19 +02:00
"lbryio/lbry-id/auth"
2022-07-24 00:13:56 +02:00
"lbryio/lbry-id/env"
2022-07-29 19:42:25 +02:00
"lbryio/lbry-id/mail"
2022-07-12 04:10:19 +02:00
"lbryio/lbry-id/server"
"lbryio/lbry-id/store"
)
func storeInit() (s store.Store) {
s = store.Store{}
s.Init("sql.db")
err := s.Migrate()
if err != nil {
log.Fatalf("DB setup failure: %+v", err)
}
return
}
2022-07-29 19:42:25 +02:00
// Output information about the email verification mode so the user can confirm
// what they set. Also trigger an error on startup if there's a configuration
// problem.
func logEmailVerificationMode(e *env.Env) (err error) {
verificationMode, err := env.GetAccountVerificationMode(e)
if err != nil {
return
}
accountWhitelist, err := env.GetAccountWhitelist(e, verificationMode)
if err != nil {
return
}
if verificationMode == env.AccountVerificationModeWhitelist {
log.Printf("Account verification mode: %s - Whitelist has %d email(s).\n", verificationMode, len(accountWhitelist))
} else {
log.Printf("Account verification mode: %s", verificationMode)
}
return
}
func main() {
2022-07-29 19:42:25 +02:00
e := env.Env{}
if err := logEmailVerificationMode(&e); err != nil {
log.Fatal(err.Error())
}
store := storeInit()
2022-07-29 19:42:25 +02:00
srv := server.Init(&auth.Auth{}, &store, &e, &mail.Mail{})
srv.Serve()
}