glider-ssh/options.go

65 lines
1.5 KiB
Go
Raw Normal View History

2016-10-03 21:54:17 +00:00
package ssh
import "io/ioutil"
// PasswordAuth returns a functional option that sets PasswordHandler on the server.
2016-10-03 21:54:17 +00:00
func PasswordAuth(fn PasswordHandler) Option {
return func(srv *Server) error {
srv.PasswordHandler = fn
return nil
}
}
// PublicKeyAuth returns a functional option that sets PublicKeyHandler on the server.
2016-10-03 21:54:17 +00:00
func PublicKeyAuth(fn PublicKeyHandler) Option {
return func(srv *Server) error {
srv.PublicKeyHandler = fn
return nil
}
}
// HostKeyFile returns a functional option that adds HostSigners to the server
// from a PEM file at filepath.
2016-10-03 21:54:17 +00:00
func HostKeyFile(filepath string) Option {
return func(srv *Server) error {
pemBytes, err := ioutil.ReadFile(filepath)
if err != nil {
return err
}
for _, block := range decodePemBlocks(pemBytes) {
signer, err := signerFromBlock(block)
if err != nil {
return err
}
srv.AddHostKey(signer)
2016-10-03 21:54:17 +00:00
}
return nil
}
}
// HostKeyPEM returns a functional option that adds HostSigners to the server
// from a PEM file as bytes.
2016-10-03 21:54:17 +00:00
func HostKeyPEM(bytes []byte) Option {
return func(srv *Server) error {
for _, block := range decodePemBlocks(bytes) {
signer, err := signerFromBlock(block)
if err != nil {
return err
}
srv.AddHostKey(signer)
2016-10-03 21:54:17 +00:00
}
return nil
}
}
// NoPty returns a functional option that sets PtyCallback to return false,
// denying PTY requests.
2016-10-03 21:54:17 +00:00
func NoPty() Option {
return func(srv *Server) error {
srv.PtyCallback = func(user string, permissions *Permissions) bool {
return false
}
return nil
}
}