mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
85 lines
1.7 KiB
Go
85 lines
1.7 KiB
Go
package cdnflysdk
|
|
|
|
import "fmt"
|
|
|
|
type BaseResponse interface {
|
|
GetCode() string
|
|
GetMessage() string
|
|
}
|
|
|
|
type baseResponse struct {
|
|
Code any `json:"code"`
|
|
Message string `json:"msg"`
|
|
}
|
|
|
|
func (r *baseResponse) GetCode() string {
|
|
if r.Code == nil {
|
|
return ""
|
|
}
|
|
|
|
if code, ok := r.Code.(int); ok {
|
|
return fmt.Sprintf("%d", code)
|
|
}
|
|
|
|
if code, ok := r.Code.(string); ok {
|
|
return code
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
func (r *baseResponse) GetMessage() string {
|
|
return r.Message
|
|
}
|
|
|
|
type GetSiteRequest struct {
|
|
Id string `json:"-"`
|
|
}
|
|
|
|
type GetSiteResponse struct {
|
|
baseResponse
|
|
Data *struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Domain string `json:"domain"`
|
|
HttpsListen string `json:"https_listen"`
|
|
} `json:"data,omitempty"`
|
|
}
|
|
|
|
type UpdateSiteRequest struct {
|
|
Id string `json:"-"`
|
|
HttpsListen *string `json:"https_listen,omitempty"`
|
|
Enable *bool `json:"enable,omitempty"`
|
|
}
|
|
|
|
type UpdateSiteResponse struct {
|
|
baseResponse
|
|
}
|
|
|
|
type CreateCertificateRequest struct {
|
|
Name string `json:"name"`
|
|
Description *string `json:"des,omitempty"`
|
|
Type string `json:"type"`
|
|
Cert string `json:"cert"`
|
|
Key string `json:"key"`
|
|
}
|
|
|
|
type CreateCertificateResponse struct {
|
|
baseResponse
|
|
Data string `json:"data"`
|
|
}
|
|
|
|
type UpdateCertificateRequest struct {
|
|
Id string `json:"-"`
|
|
Name *string `json:"name,omitempty"`
|
|
Description *string `json:"des,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
Cert *string `json:"cert,omitempty"`
|
|
Key *string `json:"key,omitempty"`
|
|
Enable *bool `json:"enable,omitempty"`
|
|
}
|
|
|
|
type UpdateCertificateResponse struct {
|
|
baseResponse
|
|
}
|