2015-06-25 21:47:32 -04:00
|
|
|
package api
|
|
|
|
|
|
2018-07-24 18:49:55 -04:00
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"fmt"
|
|
|
|
|
)
|
2015-06-25 21:47:32 -04:00
|
|
|
|
2015-07-02 17:23:09 -04:00
|
|
|
// SSH is used to return a client to invoke operations on SSH backend.
|
2015-07-01 11:58:49 -04:00
|
|
|
type SSH struct {
|
2015-08-12 13:30:50 -04:00
|
|
|
c *Client
|
|
|
|
|
MountPoint string
|
2015-06-25 21:47:32 -04:00
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:35:16 -04:00
|
|
|
// SSH returns the client for logical-backend API calls.
|
2015-08-12 12:56:17 -04:00
|
|
|
func (c *Client) SSH() *SSH {
|
2016-02-23 00:08:21 -05:00
|
|
|
return c.SSHWithMountPoint(SSHHelperDefaultMountPoint)
|
2015-08-12 12:56:17 -04:00
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:35:16 -04:00
|
|
|
// SSHWithMountPoint returns the client with specific SSH mount point.
|
2015-08-12 13:30:50 -04:00
|
|
|
func (c *Client) SSHWithMountPoint(mountPoint string) *SSH {
|
2015-07-29 14:21:36 -04:00
|
|
|
return &SSH{
|
2015-08-12 13:30:50 -04:00
|
|
|
c: c,
|
|
|
|
|
MountPoint: mountPoint,
|
2015-07-06 11:05:02 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:35:16 -04:00
|
|
|
// Credential invokes the SSH backend API to create a credential to establish an SSH session.
|
2015-07-29 14:21:36 -04:00
|
|
|
func (c *SSH) Credential(role string, data map[string]interface{}) (*Secret, error) {
|
2015-08-12 13:30:50 -04:00
|
|
|
r := c.c.NewRequest("PUT", fmt.Sprintf("/v1/%s/creds/%s", c.MountPoint, role))
|
2015-06-25 21:47:32 -04:00
|
|
|
if err := r.SetJSONBody(data); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-24 18:49:55 -04:00
|
|
|
ctx, cancelFunc := context.WithCancel(context.Background())
|
|
|
|
|
defer cancelFunc()
|
|
|
|
|
resp, err := c.c.RawRequestWithContext(ctx, r)
|
2015-06-25 21:47:32 -04:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
return ParseSecret(resp.Body)
|
|
|
|
|
}
|
2017-08-16 18:44:28 -04:00
|
|
|
|
|
|
|
|
// SignKey signs the given public key and returns a signed public key to pass
|
|
|
|
|
// along with the SSH request.
|
|
|
|
|
func (c *SSH) SignKey(role string, data map[string]interface{}) (*Secret, error) {
|
|
|
|
|
r := c.c.NewRequest("PUT", fmt.Sprintf("/v1/%s/sign/%s", c.MountPoint, role))
|
|
|
|
|
if err := r.SetJSONBody(data); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-24 18:49:55 -04:00
|
|
|
ctx, cancelFunc := context.WithCancel(context.Background())
|
|
|
|
|
defer cancelFunc()
|
|
|
|
|
resp, err := c.c.RawRequestWithContext(ctx, r)
|
2017-08-16 18:44:28 -04:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
return ParseSecret(resp.Body)
|
|
|
|
|
}
|