mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-12-05 00:13:02 +08:00
阶段性提交
This commit is contained in:
@@ -1 +1,25 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
)
|
||||
|
||||
// 解析SSH登录参数
|
||||
func (this *NodeLogin) DecodeSSHParams() (*NodeLoginSSHParams, error) {
|
||||
if this.Type != NodeLoginTypeSSH {
|
||||
return nil, errors.New("invalid login type '" + this.Type + "'")
|
||||
}
|
||||
|
||||
if len(this.Params) == 0 || this.Params == "null" {
|
||||
return nil, errors.New("'params' should not be empty")
|
||||
}
|
||||
|
||||
params := &NodeLoginSSHParams{}
|
||||
err := json.Unmarshal([]byte(this.Params), params)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return params, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user