aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorS7evinK <2353100+S7evinK@users.noreply.github.com>2022-03-15 12:13:33 +0100
committerGitHub <noreply@github.com>2022-03-15 12:13:33 +0100
commit69268fc48e7ba6327378e8bcd8eb2a677a3a2c77 (patch)
treefbbe184ff9377bbfd729d41fbef5934640cafc41 /cmd
parenta2cf1aaf4819c1548534accdc90768cc44ed6edd (diff)
Use accountdb with provided config (#2273)
* Fix #2272 * Ensure we only allow lowercase usernames using `create-account` Co-authored-by: kegsay <kegan@matrix.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/create-account/main.go40
1 files changed, 18 insertions, 22 deletions
diff --git a/cmd/create-account/main.go b/cmd/create-account/main.go
index 307fa17e..4d01a9f4 100644
--- a/cmd/create-account/main.go
+++ b/cmd/create-account/main.go
@@ -21,16 +21,15 @@ import (
"io"
"io/ioutil"
"os"
+ "regexp"
"strings"
+ "github.com/matrix-org/dendrite/setup/base"
"github.com/sirupsen/logrus"
- "golang.org/x/crypto/bcrypt"
"golang.org/x/term"
"github.com/matrix-org/dendrite/setup"
- "github.com/matrix-org/dendrite/setup/config"
"github.com/matrix-org/dendrite/userapi/api"
- userdb "github.com/matrix-org/dendrite/userapi/storage"
)
const usage = `Usage: %s
@@ -56,13 +55,14 @@ Arguments:
`
var (
- username = flag.String("username", "", "The username of the account to register (specify the localpart only, e.g. 'alice' for '@alice:domain.com')")
- password = flag.String("password", "", "The password to associate with the account (optional, account will be password-less if not specified)")
- pwdFile = flag.String("passwordfile", "", "The file to use for the password (e.g. for automated account creation)")
- pwdStdin = flag.Bool("passwordstdin", false, "Reads the password from stdin")
- askPass = flag.Bool("ask-pass", false, "Ask for the password to use")
- isAdmin = flag.Bool("admin", false, "Create an admin account")
- resetPassword = flag.Bool("reset-password", false, "Resets the password for the given username")
+ username = flag.String("username", "", "The username of the account to register (specify the localpart only, e.g. 'alice' for '@alice:domain.com')")
+ password = flag.String("password", "", "The password to associate with the account (optional, account will be password-less if not specified)")
+ pwdFile = flag.String("passwordfile", "", "The file to use for the password (e.g. for automated account creation)")
+ pwdStdin = flag.Bool("passwordstdin", false, "Reads the password from stdin")
+ askPass = flag.Bool("ask-pass", false, "Ask for the password to use")
+ isAdmin = flag.Bool("admin", false, "Create an admin account")
+ resetPassword = flag.Bool("reset-password", false, "Resets the password for the given username")
+ validUsernameRegex = regexp.MustCompile(`^[0-9a-z_\-=./]+$`)
)
func main() {
@@ -78,25 +78,21 @@ func main() {
os.Exit(1)
}
+ if !validUsernameRegex.MatchString(*username) {
+ logrus.Warn("Username can only contain characters a-z, 0-9, or '_-./='")
+ os.Exit(1)
+ }
+
pass := getPassword(password, pwdFile, pwdStdin, askPass, os.Stdin)
- accountDB, err := userdb.NewDatabase(
- &config.DatabaseOptions{
- ConnectionString: cfg.UserAPI.AccountDatabase.ConnectionString,
- },
- cfg.Global.ServerName, bcrypt.DefaultCost,
- cfg.UserAPI.OpenIDTokenLifetimeMS,
- api.DefaultLoginTokenLifetime,
- )
- if err != nil {
- logrus.Fatalln("Failed to connect to the database:", err.Error())
- }
+ b := base.NewBaseDendrite(cfg, "create-account")
+ accountDB := b.CreateAccountsDB()
accType := api.AccountTypeUser
if *isAdmin {
accType = api.AccountTypeAdmin
}
-
+ var err error
if *resetPassword {
err = accountDB.SetPassword(context.Background(), *username, pass)
if err != nil {