mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package grants
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/clusters/grants/grantutils"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
	"github.com/iwind/TeaGo/actions"
 | 
						|
)
 | 
						|
 | 
						|
type CreateAction struct {
 | 
						|
	actionutils.ParentAction
 | 
						|
}
 | 
						|
 | 
						|
func (this *CreateAction) Init() {
 | 
						|
	this.Nav("", "grant", "create")
 | 
						|
}
 | 
						|
 | 
						|
func (this *CreateAction) RunGet(params struct{}) {
 | 
						|
	this.Data["methods"] = grantutils.AllGrantMethods()
 | 
						|
 | 
						|
	this.Show()
 | 
						|
}
 | 
						|
 | 
						|
func (this *CreateAction) RunPost(params struct {
 | 
						|
	Name        string
 | 
						|
	Method      string
 | 
						|
	Username    string
 | 
						|
	Password    string
 | 
						|
	PrivateKey  string
 | 
						|
	Description string
 | 
						|
 | 
						|
	Must *actions.Must
 | 
						|
}) {
 | 
						|
	params.Must.
 | 
						|
		Field("name", params.Name).
 | 
						|
		Require("请输入名称")
 | 
						|
 | 
						|
	switch params.Method {
 | 
						|
	case "user":
 | 
						|
		if len(params.Username) == 0 {
 | 
						|
			this.FailField("username", "请输入SSH登录用户名")
 | 
						|
		}
 | 
						|
	case "privateKey":
 | 
						|
		if len(params.Username) == 0 {
 | 
						|
			this.FailField("username", "请输入SSH登录用户名")
 | 
						|
		}
 | 
						|
		if len(params.PrivateKey) == 0 {
 | 
						|
			this.FailField("privateKey", "请输入RSA私钥")
 | 
						|
		}
 | 
						|
	default:
 | 
						|
		this.Fail("请选择正确的认证方式")
 | 
						|
	}
 | 
						|
 | 
						|
	createResp, err := this.RPC().NodeGrantRPC().CreateNodeGrant(this.AdminContext(), &pb.CreateNodeGrantRequest{
 | 
						|
		Name:        params.Name,
 | 
						|
		Method:      params.Method,
 | 
						|
		Username:    params.Username,
 | 
						|
		Password:    params.Password,
 | 
						|
		PrivateKey:  params.PrivateKey,
 | 
						|
		Description: params.Description,
 | 
						|
		NodeId:      0,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		this.ErrorPage(err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	// 创建日志
 | 
						|
	defer this.CreateLog(oplogs.LevelInfo, "创建SSH认证 %d", createResp.NodeGrantId)
 | 
						|
 | 
						|
	this.Success()
 | 
						|
}
 |