mirror of https://github.com/1Panel-dev/1Panel
appstorecrontabdatabasedockerdocker-composedocker-containerdocker-imagedocker-uifilemanagerlamplnmppanel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
package cmd |
|
|
|
import ( |
|
"fmt" |
|
|
|
"github.com/1Panel-dev/1Panel/backend/global" |
|
"github.com/1Panel-dev/1Panel/backend/utils/encrypt" |
|
"github.com/spf13/cobra" |
|
) |
|
|
|
func init() { |
|
RootCmd.AddCommand(userinfoCmd) |
|
} |
|
|
|
var userinfoCmd = &cobra.Command{ |
|
Use: "user-info", |
|
Short: "获取用户信息", |
|
RunE: func(cmd *cobra.Command, args []string) error { |
|
db, err := loadDBConn() |
|
if err != nil { |
|
return fmt.Errorf("init my db conn failed, err: %v \n", err) |
|
} |
|
user := getSettingByKey(db, "UserName") |
|
password := getSettingByKey(db, "Password") |
|
port := getSettingByKey(db, "ServerPort") |
|
ssl := getSettingByKey(db, "SSL") |
|
entrance := getSettingByKey(db, "SecurityEntrance") |
|
enptrySetting := getSettingByKey(db, "EncryptKey") |
|
|
|
p := "" |
|
if len(enptrySetting) == 16 { |
|
global.CONF.System.EncryptKey = enptrySetting |
|
p, _ = encrypt.StringDecrypt(password) |
|
} else { |
|
p = password |
|
} |
|
|
|
fmt.Printf("username: %s\n", user) |
|
fmt.Printf("password: %s\n", p) |
|
fmt.Printf("port: %s\n", port) |
|
fmt.Printf("ssl: %s\n", ssl) |
|
fmt.Printf("entrance: %s\n", entrance) |
|
return nil |
|
}, |
|
}
|
|
|