2023-11-17 20:39:00 +03:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
2023-11-18 16:14:39 +03:00
|
|
|
"github.com/Neur0toxine/sshpoke/internal/server/driver/ssh/types"
|
2023-11-17 20:39:00 +03:00
|
|
|
"github.com/Neur0toxine/sshpoke/internal/server/driver/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Params struct {
|
2023-11-18 16:14:39 +03:00
|
|
|
Address string `mapstructure:"address" validate:"required"`
|
|
|
|
Auth types.Auth `mapstructure:"auth"`
|
|
|
|
KeepAlive types.KeepAlive `mapstructure:"keepalive"`
|
|
|
|
Domain string `mapstructure:"domain"`
|
|
|
|
DomainProto string `mapstructure:"domain_proto"`
|
|
|
|
DomainExtractRegex string `mapstructure:"domain_extract_regex" validate:"validregexp"`
|
|
|
|
Mode types.DomainMode `mapstructure:"mode" validate:"required,oneof=single multi"`
|
|
|
|
Prefix bool `mapstructure:"prefix"`
|
2023-11-17 20:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Params) Validate() error {
|
|
|
|
if err := util.Validator.Struct(p); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-11-18 16:14:39 +03:00
|
|
|
return p.Auth.Validate()
|
2023-11-17 20:39:00 +03:00
|
|
|
}
|