2017-05-25 16:41:45 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-09-18 13:15:27 +00:00
|
|
|
"context"
|
2017-05-25 16:41:45 +00:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2020-12-03 10:55:17 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-06-17 11:05:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts"
|
2020-12-03 10:55:17 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2017-05-25 16:41:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const usage = `Usage: %s
|
|
|
|
|
2020-12-03 10:55:17 +00:00
|
|
|
Creates a new user account on the homeserver.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
./create-account --config dendrite.yaml --username alice --password foobarbaz
|
2017-05-25 16:41:45 +00:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
var (
|
2020-12-03 10:55:17 +00:00
|
|
|
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)")
|
2017-05-25 16:41:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Usage = func() {
|
|
|
|
fmt.Fprintf(os.Stderr, usage, os.Args[0])
|
|
|
|
flag.PrintDefaults()
|
|
|
|
}
|
2020-12-03 10:55:17 +00:00
|
|
|
cfg := setup.ParseFlags(true)
|
2017-05-25 16:41:45 +00:00
|
|
|
|
|
|
|
if *username == "" {
|
|
|
|
flag.Usage()
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2020-08-10 13:18:04 +00:00
|
|
|
accountDB, err := accounts.NewDatabase(&config.DatabaseOptions{
|
2020-12-03 10:55:17 +00:00
|
|
|
ConnectionString: cfg.UserAPI.AccountDatabase.ConnectionString,
|
|
|
|
}, cfg.Global.ServerName)
|
2017-05-25 16:41:45 +00:00
|
|
|
if err != nil {
|
2020-12-03 10:55:17 +00:00
|
|
|
logrus.Fatalln("Failed to connect to the database:", err.Error())
|
2017-05-25 16:41:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-01 17:34:29 +00:00
|
|
|
_, err = accountDB.CreateAccount(context.Background(), *username, *password, "")
|
2017-05-25 16:41:45 +00:00
|
|
|
if err != nil {
|
2020-12-03 10:55:17 +00:00
|
|
|
logrus.Fatalln("Failed to create the account:", err.Error())
|
2017-05-25 16:41:45 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 10:55:17 +00:00
|
|
|
logrus.Infoln("Created account", *username)
|
2017-05-25 16:41:45 +00:00
|
|
|
}
|