mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-17 13:27:34 +00:00
ed0bc39ea4
* docs: fix init description typos * feat: block instances using limits * translate * unit tests * fix translations * redirect /ui/login * fix http interceptor * cleanup * fix http interceptor * fix: delete cookies on gateway 200 * add integration tests * add command test * docs * fix integration tests * add bulk api and integration test * optimize bulk set limits * unit test bulk limits * fix broken link * fix assets middleware * fix broken link * validate instance id format * Update internal/eventstore/search_query.go Co-authored-by: Livio Spring <livio.a@gmail.com> * remove support for owner bulk limit commands * project limits to instances * migrate instances projection * Revert "migrate instances projection" This reverts commit 214218732a56e6df823beac1972adfcf8beeded5. * join limits, remove owner * remove todo * use optional bool * normally validate instance ids * use 302 * cleanup * cleanup * Update internal/api/grpc/system/limits_converter.go Co-authored-by: Livio Spring <livio.a@gmail.com> * remove owner * remove owner from reset --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
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.
|
|
|
|
Prerequisites:
|
|
- cockroachDB or postgreSQL
|
|
|
|
The user provided by flags needs privileges 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})
|
|
}
|
|
}
|