Add SSH getHosts api

This commit is contained in:
max furman 2019-10-25 13:47:49 -07:00
parent 5092e8cfc2
commit 64b69374fa
6 changed files with 98 additions and 12 deletions

View file

@ -21,6 +21,7 @@ type SSHAuthority interface {
GetSSHFederation() (*authority.SSHKeys, error)
GetSSHConfig(typ string, data map[string]string) ([]templates.Output, error)
CheckSSHHost(principal string) (bool, error)
GetSSHHosts() ([]string, error)
}
// SSHSignRequest is the request body of an SSH certificate request.
@ -66,6 +67,11 @@ type SSHCertificate struct {
*ssh.Certificate `json:"omitempty"`
}
// SSHGetHostsResponse
type SSHGetHostsResponse struct {
Hosts []string `json:"hosts"`
}
// MarshalJSON implements the json.Marshaler interface. Returns a quoted,
// base64 encoded, openssh wire format version of the certificate.
func (c SSHCertificate) MarshalJSON() ([]byte, error) {
@ -369,3 +375,15 @@ func (h *caHandler) SSHCheckHost(w http.ResponseWriter, r *http.Request) {
Exists: exists,
})
}
// SSHGetHosts is the HTTP handler that returns a list of valid ssh hosts.
func (h *caHandler) SSHGetHosts(w http.ResponseWriter, r *http.Request) {
hosts, err := h.Authority.GetSSHHosts()
if err != nil {
WriteError(w, InternalServerError(err))
return
}
JSON(w, &SSHGetHostsResponse{
Hosts: hosts,
})
}