You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
3.0 KiB
54 lines
3.0 KiB
package keycloak
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"gopkg.in/h2non/gentleman.v2/plugins/body"
|
|
"gopkg.in/h2non/gentleman.v2/plugins/url"
|
|
)
|
|
|
|
const (
|
|
clientAttrCertPath = "/auth/admin/realms/:realm/clients/:id/certificates/:attr"
|
|
)
|
|
|
|
// GetKeyInfo returns the key info. idClient is the id of client (not client-id).
|
|
func (c *Client) GetKeyInfo(accessToken string, realmName, idClient, attr string) (CertificateRepresentation, error) {
|
|
var resp = CertificateRepresentation{}
|
|
var err = c.get(accessToken, &resp, url.Path(clientAttrCertPath), url.Param("realm", realmName), url.Param("id", idClient), url.Param("attr", attr))
|
|
return resp, err
|
|
}
|
|
|
|
// GetKeyStore returns a keystore file for the client, containing private key and public certificate. idClient is the id of client (not client-id).
|
|
func (c *Client) GetKeyStore(accessToken string, realmName, idClient, attr string, keyStoreConfig KeyStoreConfig) ([]byte, error) {
|
|
var resp = []byte{}
|
|
var err = c.post(accessToken, &resp, url.Path(clientAttrCertPath+"/download"), url.Param("realm", realmName), url.Param("id", idClient), url.Param("attr", attr), body.JSON(keyStoreConfig))
|
|
return resp, err
|
|
}
|
|
|
|
// GenerateCertificate generates a new certificate with new key pair. idClient is the id of client (not client-id).
|
|
func (c *Client) GenerateCertificate(accessToken string, realmName, idClient, attr string) (CertificateRepresentation, error) {
|
|
var resp = CertificateRepresentation{}
|
|
var err = c.post(accessToken, &resp, url.Path(clientAttrCertPath+"/generate"), url.Param("realm", realmName), url.Param("id", idClient), url.Param("attr", attr))
|
|
return resp, err
|
|
}
|
|
|
|
// GenerateKeyPairAndCertificate generates a keypair and certificate and serves the private key in a specified keystore format.
|
|
func (c *Client) GenerateKeyPairAndCertificate(accessToken string, realmName, idClient, attr string, keyStoreConfig KeyStoreConfig) ([]byte, error) {
|
|
var resp = []byte{}
|
|
var err = c.post(accessToken, &resp, url.Path(clientAttrCertPath+"/generate-and-download"), url.Param("realm", realmName), url.Param("id", idClient), url.Param("attr", attr), body.JSON(keyStoreConfig))
|
|
return resp, err
|
|
}
|
|
|
|
// UploadCertificatePrivateKey uploads a certificate and eventually a private key.
|
|
func (c *Client) UploadCertificatePrivateKey(accessToken string, realmName, idClient, attr string, file []byte) (CertificateRepresentation, error) {
|
|
var resp = CertificateRepresentation{}
|
|
var err = c.post(accessToken, &resp, url.Path(clientAttrCertPath+"/upload"), url.Param("realm", realmName), url.Param("id", idClient), url.Param("attr", attr), body.Reader(bytes.NewReader(file)))
|
|
return resp, err
|
|
}
|
|
|
|
// UploadCertificate uploads only a certificate, not the private key.
|
|
func (c *Client) UploadCertificate(accessToken string, realmName, idClient, attr string, file []byte) (CertificateRepresentation, error) {
|
|
var resp = CertificateRepresentation{}
|
|
var err = c.post(accessToken, &resp, url.Path(clientAttrCertPath+"/upload-certificate"), url.Param("realm", realmName), url.Param("id", idClient), url.Param("attr", attr), body.Reader(bytes.NewReader(file)))
|
|
return resp, err
|
|
}
|
|
|