forked from TrueCloudLab/lego
42941ccea6
- Packages - Isolate code used by the CLI into the package `cmd` - (experimental) Add e2e tests for HTTP01, TLS-ALPN-01 and DNS-01, use [Pebble](https://github.com/letsencrypt/pebble) and [challtestsrv](https://github.com/letsencrypt/boulder/tree/master/test/challtestsrv) - Support non-ascii domain name (punnycode) - Check all challenges in a predictable order - No more global exported variables - Archive revoked certificates - Fixes revocation for subdomains and non-ascii domains - Disable pending authorizations - use pointer for RemoteError/ProblemDetails - Poll authz URL instead of challenge URL - The ability for a DNS provider to solve the challenge sequentially - Check all nameservers in a predictable order - Option to disable the complete propagation Requirement - CLI, support for renew with CSR - CLI, add SAN on renew - Add command to list certificates. - Logs every iteration of waiting for the propagation - update DNSimple client - update github.com/miekg/dns
80 lines
1.6 KiB
Go
80 lines
1.6 KiB
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/sacloud/libsacloud/sacloud"
|
|
)
|
|
|
|
// Error APIコール時のエラー情報
|
|
type Error interface {
|
|
// errorインターフェースを内包
|
|
error
|
|
|
|
// エラー発生時のレスポンスコード
|
|
ResponseCode() int
|
|
|
|
// エラーコード
|
|
Code() string
|
|
|
|
// エラー発生時のメッセージ
|
|
Message() string
|
|
|
|
// エラー追跡用シリアルコード
|
|
Serial() string
|
|
|
|
// エラー(オリジナル)
|
|
OrigErr() *sacloud.ResultErrorValue
|
|
}
|
|
|
|
// NewError APIコール時のエラー情報
|
|
func NewError(responseCode int, err *sacloud.ResultErrorValue) Error {
|
|
return &apiError{
|
|
responseCode: responseCode,
|
|
origErr: err,
|
|
}
|
|
}
|
|
|
|
type apiError struct {
|
|
responseCode int
|
|
origErr *sacloud.ResultErrorValue
|
|
}
|
|
|
|
// Error errorインターフェース
|
|
func (e *apiError) Error() string {
|
|
return fmt.Sprintf("Error in response: %#v", e.origErr)
|
|
}
|
|
|
|
// ResponseCode エラー発生時のレスポンスコード
|
|
func (e *apiError) ResponseCode() int {
|
|
return e.responseCode
|
|
}
|
|
|
|
// Code エラーコード
|
|
func (e *apiError) Code() string {
|
|
if e.origErr != nil {
|
|
return e.origErr.ErrorCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// Message エラー発生時のメッセージ(
|
|
func (e *apiError) Message() string {
|
|
if e.origErr != nil {
|
|
return e.origErr.ErrorMessage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// Serial エラー追跡用シリアルコード
|
|
func (e *apiError) Serial() string {
|
|
if e.origErr != nil {
|
|
return e.origErr.Serial
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// OrigErr エラー(オリジナル)
|
|
func (e *apiError) OrigErr() *sacloud.ResultErrorValue {
|
|
return e.origErr
|
|
}
|