31 lines
588 B
Go
31 lines
588 B
Go
|
package certificate
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"fmt"
|
||
|
"sort"
|
||
|
)
|
||
|
|
||
|
// obtainError is returned when there are specific errors available per domain.
|
||
|
type obtainError map[string]error
|
||
|
|
||
|
func (e obtainError) Error() string {
|
||
|
buffer := bytes.NewBufferString("error: one or more domains had a problem:\n")
|
||
|
|
||
|
var domains []string
|
||
|
for domain := range e {
|
||
|
domains = append(domains, domain)
|
||
|
}
|
||
|
sort.Strings(domains)
|
||
|
|
||
|
for _, domain := range domains {
|
||
|
buffer.WriteString(fmt.Sprintf("[%s] %s\n", domain, e[domain]))
|
||
|
}
|
||
|
return buffer.String()
|
||
|
}
|
||
|
|
||
|
type domainError struct {
|
||
|
Domain string
|
||
|
Error error
|
||
|
}
|