mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-19 12:55:15 +00:00
191 lines
4.4 KiB
Markdown
191 lines
4.4 KiB
Markdown
|
<div align="center">
|
||
|
<h1>Golang SSH Client.</h1>
|
||
|
<a href="https://github.com/melbahja/goph">
|
||
|
<img src="https://github.com/melbahja/goph/raw/master/.github/goph.png" width="200">
|
||
|
</a>
|
||
|
<h4 align="center">
|
||
|
Fast and easy golang ssh client module.
|
||
|
</h4>
|
||
|
<p>Goph is a lightweight Go SSH client focusing on simplicity!</p>
|
||
|
</div>
|
||
|
|
||
|
<p align="center">
|
||
|
<a href="#installation">Installation</a> ❘
|
||
|
<a href="#features">Features</a> ❘
|
||
|
<a href="#usage">Usage</a> ❘
|
||
|
<a href="#examples">Examples</a> ❘
|
||
|
<a href="#license">License</a>
|
||
|
</p>
|
||
|
|
||
|
|
||
|
## 🚀 Installation and Documentation
|
||
|
|
||
|
```bash
|
||
|
go get github.com/melbahja/goph
|
||
|
```
|
||
|
|
||
|
You can find the docs at [go docs](https://pkg.go.dev/github.com/melbahja/goph).
|
||
|
|
||
|
## 🤘 Features
|
||
|
|
||
|
- Easy to use and **simple API**.
|
||
|
- Supports **known hosts** by default.
|
||
|
- Supports connections with **passwords**.
|
||
|
- Supports connections with **private keys**.
|
||
|
- Supports connections with **protected private keys** with passphrase.
|
||
|
- Supports **upload** files from local to remote.
|
||
|
- Supports **download** files from remote to local.
|
||
|
- Supports connections with **ssh agent** (Unix systems only).
|
||
|
- Supports adding new hosts to **known_hosts file**.
|
||
|
- Supports **file system operations** like: `Open, Create, Chmod...`
|
||
|
- Supports **context.Context** for command cancellation.
|
||
|
|
||
|
## 📄 Usage
|
||
|
|
||
|
Run a command via ssh:
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"fmt"
|
||
|
"github.com/melbahja/goph"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
|
||
|
// Start new ssh connection with private key.
|
||
|
auth, err := goph.Key("/home/mohamed/.ssh/id_rsa", "")
|
||
|
if err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
|
||
|
client, err := goph.New("root", "192.1.1.3", auth)
|
||
|
if err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
|
||
|
// Defer closing the network connection.
|
||
|
defer client.Close()
|
||
|
|
||
|
// Execute your command.
|
||
|
out, err := client.Run("ls /tmp/")
|
||
|
|
||
|
if err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
|
||
|
// Get your output as []byte.
|
||
|
fmt.Println(string(out))
|
||
|
}
|
||
|
```
|
||
|
|
||
|
#### 🔐 Start Connection With Protected Private Key:
|
||
|
```go
|
||
|
auth, err := goph.Key("/home/mohamed/.ssh/id_rsa", "you_passphrase_here")
|
||
|
if err != nil {
|
||
|
// handle error
|
||
|
}
|
||
|
|
||
|
client, err := goph.New("root", "192.1.1.3", auth)
|
||
|
```
|
||
|
|
||
|
#### 🔑 Start Connection With Password:
|
||
|
```go
|
||
|
client, err := goph.New("root", "192.1.1.3", goph.Password("you_password_here"))
|
||
|
```
|
||
|
|
||
|
#### ☛ Start Connection With SSH Agent (Unix systems only):
|
||
|
```go
|
||
|
auth, err := goph.UseAgent()
|
||
|
if err != nil {
|
||
|
// handle error
|
||
|
}
|
||
|
|
||
|
client, err := goph.New("root", "192.1.1.3", auth)
|
||
|
```
|
||
|
|
||
|
#### ⤴️ Upload Local File to Remote:
|
||
|
```go
|
||
|
err := client.Upload("/path/to/local/file", "/path/to/remote/file")
|
||
|
```
|
||
|
|
||
|
#### ⤵️ Download Remote File to Local:
|
||
|
```go
|
||
|
err := client.Download("/path/to/remote/file", "/path/to/local/file")
|
||
|
```
|
||
|
|
||
|
#### ☛ Execute Bash Commands:
|
||
|
```go
|
||
|
out, err := client.Run("bash -c 'printenv'")
|
||
|
```
|
||
|
|
||
|
#### ☛ Execute Bash Command with timeout:
|
||
|
```go
|
||
|
context, cancel := context.WithTimeout(ctx, time.Second)
|
||
|
defer cancel()
|
||
|
// will send SIGINT and return error after 1 second
|
||
|
out, err := client.RunContext(ctx, "sleep 5")
|
||
|
```
|
||
|
|
||
|
#### ☛ Execute Bash Command With Env Variables:
|
||
|
```go
|
||
|
out, err := client.Run(`env MYVAR="MY VALUE" bash -c 'echo $MYVAR;'`)
|
||
|
```
|
||
|
|
||
|
#### 🥪 Using Goph Cmd:
|
||
|
|
||
|
`Goph.Cmd` struct is like the Go standard `os/exec.Cmd`.
|
||
|
|
||
|
```go
|
||
|
// Get new `Goph.Cmd`
|
||
|
cmd, err := client.Command("ls", "-alh", "/tmp")
|
||
|
|
||
|
// or with context:
|
||
|
// cmd, err := client.CommandContext(ctx, "ls", "-alh", "/tmp")
|
||
|
|
||
|
if err != nil {
|
||
|
// handle the error!
|
||
|
}
|
||
|
|
||
|
// You can set env vars, but the server must be configured to `AcceptEnv line`.
|
||
|
cmd.Env = []string{"MY_VAR=MYVALUE"}
|
||
|
|
||
|
// Run you command.
|
||
|
err = cmd.Run()
|
||
|
```
|
||
|
|
||
|
🗒️ Just like `os/exec.Cmd` you can run `CombinedOutput, Output, Start, Wait`, and [`ssh.Session`](https://pkg.go.dev/golang.org/x/crypto/ssh#Session) methods like `Signal`...
|
||
|
|
||
|
#### 📂 File System Operations Via SFTP:
|
||
|
|
||
|
You can easily get a [SFTP](https://github.com/pkg/sftp) client from Goph client:
|
||
|
```go
|
||
|
|
||
|
sftp, err := client.NewSftp()
|
||
|
|
||
|
if err != nil {
|
||
|
// handle the error!
|
||
|
}
|
||
|
|
||
|
file, err := sftp.Create("/tmp/remote_file")
|
||
|
|
||
|
file.Write([]byte(`Hello world`))
|
||
|
file.Close()
|
||
|
|
||
|
```
|
||
|
🗒️ For more file operations see [SFTP Docs](https://github.com/pkg/sftp).
|
||
|
|
||
|
|
||
|
## 🥙 Examples
|
||
|
|
||
|
See [Examples](https://github.com/melbahja/ssh/blob/master/examples).
|
||
|
|
||
|
## 🤝 Missing a Feature?
|
||
|
|
||
|
Feel free to open a new issue, or contact me.
|
||
|
|
||
|
## 📘 License
|
||
|
|
||
|
Goph is provided under the [MIT License](https://github.com/melbahja/goph/blob/master/LICENSE).
|