mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
b5564572bc
This implementation increases parallel write capabilities of the eventstore. Please have a look at the technical advisories: [05](https://zitadel.com/docs/support/advisory/a10005) and [06](https://zitadel.com/docs/support/advisory/a10006). The implementation of eventstore.push is rewritten and stored events are migrated to a new table `eventstore.events2`. If you are using cockroach: make sure that the database user of ZITADEL has `VIEWACTIVITY` grant. This is used to query events.
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package initialise
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
"github.com/zitadel/logging"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
)
|
|
|
|
func newUser() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "user",
|
|
Short: "initialize only the database user",
|
|
Long: `Sets up the ZITADEL database user.
|
|
|
|
Prereqesits:
|
|
- cockroachDB or postreSQL
|
|
|
|
The user provided by flags needs priviledge to
|
|
- create the database if it does not exist
|
|
- see other users and create a new one if the user does not exist
|
|
- grant all rights of the ZITADEL database to the user created if not yet set
|
|
`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
config := MustNewConfig(viper.GetViper())
|
|
|
|
err := initialise(config.Database, VerifyUser(config.Database.Username(), config.Database.Password()))
|
|
logging.OnError(err).Fatal("unable to init user")
|
|
},
|
|
}
|
|
}
|
|
|
|
func VerifyUser(username, password string) func(*database.DB) error {
|
|
return func(db *database.DB) error {
|
|
logging.WithFields("username", username).Info("verify user")
|
|
|
|
if password != "" {
|
|
createUserStmt += " WITH PASSWORD '" + password + "'"
|
|
}
|
|
|
|
return exec(db, fmt.Sprintf(createUserStmt, username), []string{roleAlreadyExistsCode})
|
|
}
|
|
}
|