2015-06-08 00:36:07 +00:00
|
|
|
package acme
|
|
|
|
|
2015-10-23 14:24:02 +00:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2016-03-27 19:38:49 +00:00
|
|
|
"gopkg.in/square/go-jose.v1"
|
2015-10-23 14:24:02 +00:00
|
|
|
)
|
2015-06-08 21:54:15 +00:00
|
|
|
|
2015-09-26 20:59:16 +00:00
|
|
|
type directory struct {
|
|
|
|
NewAuthzURL string `json:"new-authz"`
|
|
|
|
NewCertURL string `json:"new-cert"`
|
|
|
|
NewRegURL string `json:"new-reg"`
|
|
|
|
RevokeCertURL string `json:"revoke-cert"`
|
|
|
|
}
|
|
|
|
|
2015-06-08 00:36:07 +00:00
|
|
|
type registrationMessage struct {
|
2015-09-26 17:45:52 +00:00
|
|
|
Resource string `json:"resource"`
|
|
|
|
Contact []string `json:"contact"`
|
2016-06-06 18:45:22 +00:00
|
|
|
Delete bool `json:"delete,omitempty"`
|
2015-06-08 00:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Registration is returned by the ACME server after the registration
|
|
|
|
// The client implementation should save this registration somewhere.
|
|
|
|
type Registration struct {
|
2016-01-27 01:01:39 +00:00
|
|
|
Resource string `json:"resource,omitempty"`
|
|
|
|
ID int `json:"id"`
|
|
|
|
Key jose.JsonWebKey `json:"key"`
|
|
|
|
Contact []string `json:"contact"`
|
|
|
|
Agreement string `json:"agreement,omitempty"`
|
|
|
|
Authorizations string `json:"authorizations,omitempty"`
|
|
|
|
Certificates string `json:"certificates,omitempty"`
|
2015-06-08 00:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RegistrationResource represents all important informations about a registration
|
|
|
|
// of which the client needs to keep track itself.
|
|
|
|
type RegistrationResource struct {
|
2015-11-13 19:20:15 +00:00
|
|
|
Body Registration `json:"body,omitempty"`
|
|
|
|
URI string `json:"uri,omitempty"`
|
|
|
|
NewAuthzURL string `json:"new_authzr_uri,omitempty"`
|
|
|
|
TosURL string `json:"terms_of_service,omitempty"`
|
2015-06-08 00:36:07 +00:00
|
|
|
}
|
2015-06-08 21:54:15 +00:00
|
|
|
|
|
|
|
type authorizationResource struct {
|
|
|
|
Body authorization
|
|
|
|
Domain string
|
|
|
|
NewCertURL string
|
2015-06-13 01:56:34 +00:00
|
|
|
AuthURL string
|
2015-06-08 21:54:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type authorization struct {
|
2015-09-26 17:45:52 +00:00
|
|
|
Resource string `json:"resource,omitempty"`
|
2015-06-08 21:54:15 +00:00
|
|
|
Identifier identifier `json:"identifier"`
|
|
|
|
Status string `json:"status,omitempty"`
|
|
|
|
Expires time.Time `json:"expires,omitempty"`
|
|
|
|
Challenges []challenge `json:"challenges,omitempty"`
|
|
|
|
Combinations [][]int `json:"combinations,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type identifier struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
|
|
|
|
2015-12-10 18:58:11 +00:00
|
|
|
type validationRecord struct {
|
|
|
|
URI string `json:"url,omitempty"`
|
|
|
|
Hostname string `json:"hostname,omitempty"`
|
|
|
|
Port string `json:"port,omitempty"`
|
|
|
|
ResolvedAddresses []string `json:"addressesResolved,omitempty"`
|
|
|
|
UsedAddress string `json:"addressUsed,omitempty"`
|
|
|
|
}
|
|
|
|
|
2015-06-08 21:54:15 +00:00
|
|
|
type challenge struct {
|
2015-12-10 18:58:11 +00:00
|
|
|
Resource string `json:"resource,omitempty"`
|
2016-01-15 04:06:25 +00:00
|
|
|
Type Challenge `json:"type,omitempty"`
|
2015-12-10 18:58:11 +00:00
|
|
|
Status string `json:"status,omitempty"`
|
|
|
|
URI string `json:"uri,omitempty"`
|
|
|
|
Token string `json:"token,omitempty"`
|
|
|
|
KeyAuthorization string `json:"keyAuthorization,omitempty"`
|
|
|
|
TLS bool `json:"tls,omitempty"`
|
|
|
|
Iterations int `json:"n,omitempty"`
|
|
|
|
Error RemoteError `json:"error,omitempty"`
|
|
|
|
ValidationRecords []validationRecord `json:"validationRecord,omitempty"`
|
2015-06-13 01:55:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type csrMessage struct {
|
2015-09-26 17:45:52 +00:00
|
|
|
Resource string `json:"resource,omitempty"`
|
2015-06-13 02:10:32 +00:00
|
|
|
Csr string `json:"csr"`
|
|
|
|
Authorizations []string `json:"authorizations"`
|
2015-06-13 01:55:53 +00:00
|
|
|
}
|
|
|
|
|
2015-09-27 12:51:44 +00:00
|
|
|
type revokeCertMessage struct {
|
|
|
|
Resource string `json:"resource"`
|
|
|
|
Certificate string `json:"certificate"`
|
|
|
|
}
|
|
|
|
|
2015-06-13 01:55:53 +00:00
|
|
|
// CertificateResource represents a CA issued certificate.
|
|
|
|
// PrivateKey and Certificate are both already PEM encoded
|
2015-10-24 01:55:18 +00:00
|
|
|
// and can be directly written to disk. Certificate may
|
|
|
|
// be a certificate bundle, depending on the options supplied
|
|
|
|
// to create it.
|
2015-06-13 01:55:53 +00:00
|
|
|
type CertificateResource struct {
|
2015-10-18 22:40:59 +00:00
|
|
|
Domain string `json:"domain"`
|
|
|
|
CertURL string `json:"certUrl"`
|
|
|
|
CertStableURL string `json:"certStableUrl"`
|
2016-03-14 02:29:29 +00:00
|
|
|
AccountRef string `json:"accountRef,omitempty"`
|
2015-10-18 22:40:59 +00:00
|
|
|
PrivateKey []byte `json:"-"`
|
|
|
|
Certificate []byte `json:"-"`
|
2016-06-08 02:50:52 +00:00
|
|
|
CSR []byte `json:"-"`
|
2015-06-08 21:54:15 +00:00
|
|
|
}
|