sftp

package
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 1, 2022 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Backend

type Backend struct {
	// contains filtered or unexported fields
}

Backend implements storage.Backend for sFTP.

func New

func New(l log.Logger, c Config) (*Backend, error)

New creates a new sFTP backend.

func (*Backend) Exists

func (b *Backend) Exists(ctx context.Context, p string) (bool, error)

Exists checks if object already exists.

func (*Backend) Get

func (b *Backend) Get(ctx context.Context, p string, w io.Writer) error

Get writes downloaded content to the given writer.

func (*Backend) Put

func (b *Backend) Put(ctx context.Context, p string, r io.Reader) error

Put uploads contents of the given reader.

type Config

type Config struct {
	CacheRoot string
	Username  string
	Host      string
	Port      string
	Auth      SSHAuth
	Timeout   time.Duration
}

Config is a structure to store sFTP backend configuration.

type SSHAuth

type SSHAuth struct {
	Password      string
	PublicKeyFile string
	Method        SSHAuthMethod
}

SSHAuth is a structure to store authentication information for SSH connection.

type SSHAuthMethod

type SSHAuthMethod string

SSHAuthMethod describes the type of authentication method.

const (
	SSHAuthMethodPassword      SSHAuthMethod = "PASSWORD"
	SSHAuthMethodPublicKeyFile SSHAuthMethod = "PUBLIC_KEY_FILE"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL