Documentation ¶
Overview ¶
Package scp. Simple scp package to copy files over SSH.
Index ¶
- func Ack(writer io.Writer) error
- func CopyN(writer io.Writer, src io.Reader, size int64) (int64, error)
- type Client
- func (a *Client) Close()
- func (a *Client) Connect() error
- func (a *Client) Copy(ctx context.Context, r io.Reader, remotePath string, permissions string, ...) error
- func (a *Client) CopyFile(ctx context.Context, fileReader io.Reader, remotePath string, ...) error
- func (a *Client) CopyFilePassThru(ctx context.Context, fileReader io.Reader, remotePath string, ...) error
- func (a *Client) CopyFromFile(ctx context.Context, file os.File, remotePath string, permissions string) error
- func (a *Client) CopyFromFilePassThru(ctx context.Context, file os.File, remotePath string, permissions string, ...) error
- func (a *Client) CopyFromRemote(ctx context.Context, file *os.File, remotePath string) error
- func (a *Client) CopyFromRemotePassThru(ctx context.Context, w io.Writer, remotePath string, passThru PassThru) error
- func (a *Client) CopyPassThru(ctx context.Context, r io.Reader, remotePath string, permissions string, ...) error
- type ClientConfigurer
- func (c *ClientConfigurer) ClientConfig(config *ssh.ClientConfig) *ClientConfigurer
- func (c *ClientConfigurer) Create() Client
- func (c *ClientConfigurer) Host(host string) *ClientConfigurer
- func (c *ClientConfigurer) RemoteBinary(path string) *ClientConfigurer
- func (c *ClientConfigurer) SSHClient(sshClient *ssh.Client) *ClientConfigurer
- func (c *ClientConfigurer) Timeout(timeout time.Duration) *ClientConfigurer
- type FileInfos
- type PassThru
- type Response
- type ResponseType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client struct { // Host the host to connect to. Host string // ClientConfig the client config to use. ClientConfig *ssh.ClientConfig // Timeout the maximal amount of time to wait for a file transfer to complete. // Deprecated: use context.Context for each function instead. Timeout time.Duration // RemoteBinary the absolute path to the remote SCP binary. RemoteBinary string // contains filtered or unexported fields }
func NewClient ¶
func NewClient(host string, config *ssh.ClientConfig) Client
NewClient returns a new scp.Client with provided host and ssh.clientConfig.
func NewClientBySSH ¶
NewClientBySSH returns a new scp.Client using an already existing established SSH connection.
func NewClientBySSHWithTimeout ¶
NewClientBySSHWithTimeout same as NewClientWithTimeout but uses an existing SSH client. Deprecated: provide meaningful context to each "Copy*" function instead.
func NewClientWithTimeout ¶
NewClientWithTimeout returns a new scp.Client with provides host, ssh.ClientConfig and timeout. Deprecated: provide meaningful context to each "Copy*" function instead.
func (*Client) Connect ¶
Connect connects to the remote SSH server, returns error if it couldn't establish a session to the SSH server.
func (*Client) Copy ¶
func (a *Client) Copy(ctx context.Context, r io.Reader, remotePath string, permissions string, size int64) error
Copy copies the contents of an io.Reader to a remote location.
func (*Client) CopyFile ¶
func (a *Client) CopyFile(ctx context.Context, fileReader io.Reader, remotePath string, permissions string) error
CopyFile copies the contents of an io.Reader to a remote location, the length is determined by reading the io.Reader until EOF if the file length in know in advance please use "Copy" instead.
func (*Client) CopyFilePassThru ¶
func (a *Client) CopyFilePassThru(ctx context.Context, fileReader io.Reader, remotePath string, permissions string, passThru PassThru) error
CopyFilePassThru copies the contents of an io.Reader to a remote location, the length is determined by reading the io.Reader until EOF if the file length in know in advance please use "Copy" instead. Access copied bytes by providing a PassThru reader factory.
func (*Client) CopyFromFile ¶
func (a *Client) CopyFromFile(ctx context.Context, file os.File, remotePath string, permissions string) error
CopyFromFile copies the contents of an os.File to a remote location, it will get the length of the file by looking it up from the filesystem.
func (*Client) CopyFromFilePassThru ¶
func (a *Client) CopyFromFilePassThru(ctx context.Context, file os.File, remotePath string, permissions string, passThru PassThru) error
CopyFromFilePassThru copies the contents of an os.File to a remote location, it will get the length of the file by looking it up from the filesystem. Access copied bytes by providing a PassThru reader factory.
func (*Client) CopyFromRemote ¶
CopyFromRemote copies a file from the remote to the local file given by the `file` parameter. Use `CopyFromRemotePassThru` if a more generic writer is desired instead of writing directly to a file on the file system.?
func (*Client) CopyFromRemotePassThru ¶
func (a *Client) CopyFromRemotePassThru(ctx context.Context, w io.Writer, remotePath string, passThru PassThru) error
CopyFromRemotePassThru copies a file from the remote to the given writer. The passThru parameter can be used to keep track of progress and how many bytes that were download from the remote. `passThru` can be set to nil to disable this behaviour.
type ClientConfigurer ¶
type ClientConfigurer struct {
// contains filtered or unexported fields
}
ClientConfigurer a struct containing all the configuration options used by an scp client.
func NewConfigurer ¶
func NewConfigurer(host string, config *ssh.ClientConfig) *ClientConfigurer
NewConfigurer creates a new client configurer. It takes the required parameters: the host and the ssh.ClientConfig and returns a configurer populated with the default values for the optional parameters.
These optional parameters can be set by using the methods provided on the ClientConfigurer struct.
func (*ClientConfigurer) ClientConfig ¶
func (c *ClientConfigurer) ClientConfig(config *ssh.ClientConfig) *ClientConfigurer
ClientConfig alters the ssh.ClientConfig.
func (*ClientConfigurer) Create ¶
func (c *ClientConfigurer) Create() Client
Create builds a client with the configuration stored within the ClientConfigurer.
func (*ClientConfigurer) Host ¶
func (c *ClientConfigurer) Host(host string) *ClientConfigurer
Host alters the host of the client connects to.
func (*ClientConfigurer) RemoteBinary ¶
func (c *ClientConfigurer) RemoteBinary(path string) *ClientConfigurer
RemoteBinary sets the path of the location of the remote scp binary Defaults to: /usr/bin/scp.
func (*ClientConfigurer) SSHClient ¶
func (c *ClientConfigurer) SSHClient(sshClient *ssh.Client) *ClientConfigurer
func (*ClientConfigurer) Timeout ¶
func (c *ClientConfigurer) Timeout(timeout time.Duration) *ClientConfigurer
Timeout Changes the connection timeout. Defaults to one minute.
type Response ¶
type Response struct { Type ResponseType Message string }
Response represent a response from the SCP command. There are tree types of responses that the remote can send back: ok, warning and error
The difference between warning and error is that the connection is not closed by the remote, however, a warning can indicate a file transfer failure (such as invalid destination directory) and such be handled as such.
All responses except for the `Ok` type always have a message (although these can be empty)
The remote sends a confirmation after every SCP command, because a failure can occur after every command, the response should be read and checked after sending them.
func ParseResponse ¶
ParseResponse reads from the given reader (assuming it is the output of the remote) and parses it into a Response structure.
func (*Response) GetMessage ¶
GetMessage returns the message the remote sent back.
func (*Response) IsFailure ¶
IsFailure returns true when the remote answered with a warning or an error.
func (*Response) ParseFileInfos ¶
type ResponseType ¶
type ResponseType = uint8
const ( Ok ResponseType = 0 Warning ResponseType = 1 Error ResponseType = 2 )
Directories ¶
Path | Synopsis |
---|---|
Copyright (c) 2020 Bram Vandenbogaerde * You may use, distribute or modify this code under the * terms of the Mozilla Public License 2.0, which is distributed * along with the source code.
|
Copyright (c) 2020 Bram Vandenbogaerde * You may use, distribute or modify this code under the * terms of the Mozilla Public License 2.0, which is distributed * along with the source code. |