mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 09:21:56 +08:00
fix: typo module paths
This commit is contained in:
parent
583d308459
commit
b617b45495
@ -48,7 +48,7 @@ Certimate 旨在为用户提供一个安全、简便的 SSL 证书管理解决
|
|||||||
|
|
||||||
**5 分钟部署 Certimate!**
|
**5 分钟部署 Certimate!**
|
||||||
|
|
||||||
以二进制部署为例,从 [GitHub Releases](https://github.com/certimate-go/certimate/te/releases) 页面下载预先编译好的二进制可执行文件压缩包,解压缩后在终端中执行:
|
以二进制部署为例,从 [GitHub Releases](https://github.com/certimate-go/certimate/releases) 页面下载预先编译好的二进制可执行文件压缩包,解压缩后在终端中执行:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./certimate serve
|
./certimate serve
|
||||||
|
@ -48,7 +48,7 @@ Certimate aims to provide users with a secure and user-friendly SSL certificate
|
|||||||
|
|
||||||
**Deploy Certimate in 5 minutes!**
|
**Deploy Certimate in 5 minutes!**
|
||||||
|
|
||||||
Download the archived package of precompiled binary files directly from [GitHub Releases](https://github.com/certimate-go/certimate/te/releases), extract and then execute:
|
Download the archived package of precompiled binary files directly from [GitHub Releases](https://github.com/certimate-go/certimate/releases), extract and then execute:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./certimate serve
|
./certimate serve
|
||||||
|
@ -14,9 +14,9 @@ import (
|
|||||||
"golang.org/x/sync/singleflight"
|
"golang.org/x/sync/singleflight"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
type acmeUser struct {
|
type acmeUser struct {
|
||||||
|
@ -20,9 +20,9 @@ import (
|
|||||||
"golang.org/x/time/rate"
|
"golang.org/x/time/rate"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ApplyResult struct {
|
type ApplyResult struct {
|
||||||
|
@ -6,45 +6,45 @@ import (
|
|||||||
"github.com/go-acme/lego/v4/challenge"
|
"github.com/go-acme/lego/v4/challenge"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
pACMEHttpReq "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/acmehttpreq"
|
pACMEHttpReq "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/acmehttpreq"
|
||||||
pAliyun "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/aliyun"
|
pAliyun "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/aliyun"
|
||||||
pAliyunESA "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/aliyun-esa"
|
pAliyunESA "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/aliyun-esa"
|
||||||
pAWSRoute53 "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/aws-route53"
|
pAWSRoute53 "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/aws-route53"
|
||||||
pAzureDNS "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/azure-dns"
|
pAzureDNS "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/azure-dns"
|
||||||
pBaiduCloud "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/baiducloud"
|
pBaiduCloud "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/baiducloud"
|
||||||
pBunny "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/bunny"
|
pBunny "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/bunny"
|
||||||
pCloudflare "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/cloudflare"
|
pCloudflare "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/cloudflare"
|
||||||
pClouDNS "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/cloudns"
|
pClouDNS "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/cloudns"
|
||||||
pCMCCCloud "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/cmcccloud"
|
pCMCCCloud "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/cmcccloud"
|
||||||
pConstellix "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/constellix"
|
pConstellix "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/constellix"
|
||||||
pCTCCCloud "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/ctcccloud"
|
pCTCCCloud "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/ctcccloud"
|
||||||
pDeSEC "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/desec"
|
pDeSEC "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/desec"
|
||||||
pDigitalOcean "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/digitalocean"
|
pDigitalOcean "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/digitalocean"
|
||||||
pDNSLA "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/dnsla"
|
pDNSLA "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/dnsla"
|
||||||
pDuckDNS "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/duckdns"
|
pDuckDNS "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/duckdns"
|
||||||
pDynv6 "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/dynv6"
|
pDynv6 "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/dynv6"
|
||||||
pGcore "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/gcore"
|
pGcore "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/gcore"
|
||||||
pGname "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/gname"
|
pGname "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/gname"
|
||||||
pGoDaddy "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/godaddy"
|
pGoDaddy "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/godaddy"
|
||||||
pHetzner "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/hetzner"
|
pHetzner "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/hetzner"
|
||||||
pHuaweiCloud "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/huaweicloud"
|
pHuaweiCloud "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/huaweicloud"
|
||||||
pJDCloud "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/jdcloud"
|
pJDCloud "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/jdcloud"
|
||||||
pNamecheap "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/namecheap"
|
pNamecheap "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/namecheap"
|
||||||
pNameDotCom "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/namedotcom"
|
pNameDotCom "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/namedotcom"
|
||||||
pNameSilo "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/namesilo"
|
pNameSilo "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/namesilo"
|
||||||
pNetcup "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/netcup"
|
pNetcup "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/netcup"
|
||||||
pNetlify "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/netlify"
|
pNetlify "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/netlify"
|
||||||
pNS1 "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/ns1"
|
pNS1 "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/ns1"
|
||||||
pPorkbun "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/porkbun"
|
pPorkbun "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/porkbun"
|
||||||
pPowerDNS "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/powerdns"
|
pPowerDNS "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/powerdns"
|
||||||
pRainYun "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/rainyun"
|
pRainYun "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/rainyun"
|
||||||
pTencentCloud "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/tencentcloud"
|
pTencentCloud "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/tencentcloud"
|
||||||
pTencentCloudEO "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/tencentcloud-eo"
|
pTencentCloudEO "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/tencentcloud-eo"
|
||||||
pUCloudUDNR "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/ucloud-udnr"
|
pUCloudUDNR "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/ucloud-udnr"
|
||||||
pVercel "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/vercel"
|
pVercel "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/vercel"
|
||||||
pVolcEngine "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/volcengine"
|
pVolcEngine "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/volcengine"
|
||||||
pWestcn "github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/westcn"
|
pWestcn "github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/westcn"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
type applicantProviderOptions struct {
|
type applicantProviderOptions struct {
|
||||||
|
@ -14,11 +14,11 @@ import (
|
|||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
"github.com/certimate-go/certimate/te/internal/notify"
|
"github.com/certimate-go/certimate/internal/notify"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Deployer interface {
|
type Deployer interface {
|
||||||
|
@ -6,105 +6,105 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
p1PanelConsole "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/1panel-console"
|
p1PanelConsole "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/1panel-console"
|
||||||
p1PanelSite "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/1panel-site"
|
p1PanelSite "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/1panel-site"
|
||||||
pAliyunALB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-alb"
|
pAliyunALB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-alb"
|
||||||
pAliyunAPIGW "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-apigw"
|
pAliyunAPIGW "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-apigw"
|
||||||
pAliyunCAS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-cas"
|
pAliyunCAS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-cas"
|
||||||
pAliyunCASDeploy "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-cas-deploy"
|
pAliyunCASDeploy "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-cas-deploy"
|
||||||
pAliyunCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-cdn"
|
pAliyunCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-cdn"
|
||||||
pAliyunCLB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-clb"
|
pAliyunCLB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-clb"
|
||||||
pAliyunDCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-dcdn"
|
pAliyunDCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-dcdn"
|
||||||
pAliyunDDoS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-ddos"
|
pAliyunDDoS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-ddos"
|
||||||
pAliyunESA "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-esa"
|
pAliyunESA "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-esa"
|
||||||
pAliyunFC "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-fc"
|
pAliyunFC "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-fc"
|
||||||
pAliyunGA "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-ga"
|
pAliyunGA "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-ga"
|
||||||
pAliyunLive "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-live"
|
pAliyunLive "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-live"
|
||||||
pAliyunNLB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-nlb"
|
pAliyunNLB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-nlb"
|
||||||
pAliyunOSS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-oss"
|
pAliyunOSS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-oss"
|
||||||
pAliyunVOD "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-vod"
|
pAliyunVOD "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-vod"
|
||||||
pAliyunWAF "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aliyun-waf"
|
pAliyunWAF "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aliyun-waf"
|
||||||
pAPISIX "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/apisix"
|
pAPISIX "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/apisix"
|
||||||
pAWSACM "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aws-acm"
|
pAWSACM "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aws-acm"
|
||||||
pAWSCloudFront "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aws-cloudfront"
|
pAWSCloudFront "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aws-cloudfront"
|
||||||
pAWSIAM "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/aws-iam"
|
pAWSIAM "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/aws-iam"
|
||||||
pAzureKeyVault "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/azure-keyvault"
|
pAzureKeyVault "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/azure-keyvault"
|
||||||
pBaiduCloudAppBLB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baiducloud-appblb"
|
pBaiduCloudAppBLB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baiducloud-appblb"
|
||||||
pBaiduCloudBLB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baiducloud-blb"
|
pBaiduCloudBLB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baiducloud-blb"
|
||||||
pBaiduCloudCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baiducloud-cdn"
|
pBaiduCloudCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baiducloud-cdn"
|
||||||
pBaiduCloudCert "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baiducloud-cert"
|
pBaiduCloudCert "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baiducloud-cert"
|
||||||
pBaishanCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baishan-cdn"
|
pBaishanCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baishan-cdn"
|
||||||
pBaotaPanelConsole "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baotapanel-console"
|
pBaotaPanelConsole "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baotapanel-console"
|
||||||
pBaotaPanelSite "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baotapanel-site"
|
pBaotaPanelSite "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baotapanel-site"
|
||||||
pBaotaWAFConsole "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baotawaf-console"
|
pBaotaWAFConsole "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baotawaf-console"
|
||||||
pBaotaWAFSite "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/baotawaf-site"
|
pBaotaWAFSite "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/baotawaf-site"
|
||||||
pBunnyCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/bunny-cdn"
|
pBunnyCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/bunny-cdn"
|
||||||
pBytePlusCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/byteplus-cdn"
|
pBytePlusCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/byteplus-cdn"
|
||||||
pCacheFly "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/cachefly"
|
pCacheFly "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/cachefly"
|
||||||
pCdnfly "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/cdnfly"
|
pCdnfly "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/cdnfly"
|
||||||
pCTCCCloudAO "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ctcccloud-ao"
|
pCTCCCloudAO "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ctcccloud-ao"
|
||||||
pCTCCCloudCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ctcccloud-cdn"
|
pCTCCCloudCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ctcccloud-cdn"
|
||||||
pCTCCCloudCMS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ctcccloud-cms"
|
pCTCCCloudCMS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ctcccloud-cms"
|
||||||
pCTCCCloudELB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ctcccloud-elb"
|
pCTCCCloudELB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ctcccloud-elb"
|
||||||
pCTCCCloudICDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ctcccloud-icdn"
|
pCTCCCloudICDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ctcccloud-icdn"
|
||||||
pCTCCCloudLVDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ctcccloud-lvdn"
|
pCTCCCloudLVDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ctcccloud-lvdn"
|
||||||
pDogeCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/dogecloud-cdn"
|
pDogeCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/dogecloud-cdn"
|
||||||
pEdgioApplications "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/edgio-applications"
|
pEdgioApplications "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/edgio-applications"
|
||||||
pFlexCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/flexcdn"
|
pFlexCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/flexcdn"
|
||||||
pGcoreCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/gcore-cdn"
|
pGcoreCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/gcore-cdn"
|
||||||
pGoEdge "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/goedge"
|
pGoEdge "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/goedge"
|
||||||
pHuaweiCloudCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/huaweicloud-cdn"
|
pHuaweiCloudCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/huaweicloud-cdn"
|
||||||
pHuaweiCloudELB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/huaweicloud-elb"
|
pHuaweiCloudELB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/huaweicloud-elb"
|
||||||
pHuaweiCloudSCM "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/huaweicloud-scm"
|
pHuaweiCloudSCM "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/huaweicloud-scm"
|
||||||
pHuaweiCloudWAF "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/huaweicloud-waf"
|
pHuaweiCloudWAF "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/huaweicloud-waf"
|
||||||
pJDCloudALB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/jdcloud-alb"
|
pJDCloudALB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/jdcloud-alb"
|
||||||
pJDCloudCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/jdcloud-cdn"
|
pJDCloudCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/jdcloud-cdn"
|
||||||
pJDCloudLive "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/jdcloud-live"
|
pJDCloudLive "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/jdcloud-live"
|
||||||
pJDCloudVOD "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/jdcloud-vod"
|
pJDCloudVOD "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/jdcloud-vod"
|
||||||
pK8sSecret "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/k8s-secret"
|
pK8sSecret "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/k8s-secret"
|
||||||
pLeCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/lecdn"
|
pLeCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/lecdn"
|
||||||
pLocal "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/local"
|
pLocal "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/local"
|
||||||
pNetlifySite "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/netlify-site"
|
pNetlifySite "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/netlify-site"
|
||||||
pProxmoxVE "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/proxmoxve"
|
pProxmoxVE "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/proxmoxve"
|
||||||
pQiniuCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/qiniu-cdn"
|
pQiniuCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/qiniu-cdn"
|
||||||
pQiniuPili "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/qiniu-pili"
|
pQiniuPili "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/qiniu-pili"
|
||||||
pRainYunRCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/rainyun-rcdn"
|
pRainYunRCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/rainyun-rcdn"
|
||||||
pRatPanelConsole "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ratpanel-console"
|
pRatPanelConsole "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ratpanel-console"
|
||||||
pRatPanelSite "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ratpanel-site"
|
pRatPanelSite "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ratpanel-site"
|
||||||
pSafeLine "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/safeline"
|
pSafeLine "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/safeline"
|
||||||
pSSH "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ssh"
|
pSSH "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ssh"
|
||||||
pTencentCloudCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-cdn"
|
pTencentCloudCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-cdn"
|
||||||
pTencentCloudCLB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-clb"
|
pTencentCloudCLB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-clb"
|
||||||
pTencentCloudCOS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-cos"
|
pTencentCloudCOS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-cos"
|
||||||
pTencentCloudCSS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-css"
|
pTencentCloudCSS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-css"
|
||||||
pTencentCloudECDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-ecdn"
|
pTencentCloudECDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-ecdn"
|
||||||
pTencentCloudEO "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-eo"
|
pTencentCloudEO "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-eo"
|
||||||
pTencentCloudGAAP "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-gaap"
|
pTencentCloudGAAP "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-gaap"
|
||||||
pTencentCloudSCF "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-scf"
|
pTencentCloudSCF "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-scf"
|
||||||
pTencentCloudSSL "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-ssl"
|
pTencentCloudSSL "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-ssl"
|
||||||
pTencentCloudSSLDeploy "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-ssl-deploy"
|
pTencentCloudSSLDeploy "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-ssl-deploy"
|
||||||
pTencentCloudVOD "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-vod"
|
pTencentCloudVOD "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-vod"
|
||||||
pTencentCloudWAF "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/tencentcloud-waf"
|
pTencentCloudWAF "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/tencentcloud-waf"
|
||||||
pUCloudUCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ucloud-ucdn"
|
pUCloudUCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ucloud-ucdn"
|
||||||
pUCloudUS3 "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/ucloud-us3"
|
pUCloudUS3 "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/ucloud-us3"
|
||||||
pUniCloudWebHost "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/unicloud-webhost"
|
pUniCloudWebHost "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/unicloud-webhost"
|
||||||
pUpyunCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/upyun-cdn"
|
pUpyunCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/upyun-cdn"
|
||||||
pVolcEngineALB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-alb"
|
pVolcEngineALB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-alb"
|
||||||
pVolcEngineCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-cdn"
|
pVolcEngineCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-cdn"
|
||||||
pVolcEngineCertCenter "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-certcenter"
|
pVolcEngineCertCenter "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-certcenter"
|
||||||
pVolcEngineCLB "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-clb"
|
pVolcEngineCLB "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-clb"
|
||||||
pVolcEngineDCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-dcdn"
|
pVolcEngineDCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-dcdn"
|
||||||
pVolcEngineImageX "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-imagex"
|
pVolcEngineImageX "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-imagex"
|
||||||
pVolcEngineLive "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-live"
|
pVolcEngineLive "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-live"
|
||||||
pVolcEngineTOS "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/volcengine-tos"
|
pVolcEngineTOS "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/volcengine-tos"
|
||||||
pWangsuCDN "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/wangsu-cdn"
|
pWangsuCDN "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/wangsu-cdn"
|
||||||
pWangsuCDNPro "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/wangsu-cdnpro"
|
pWangsuCDNPro "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/wangsu-cdnpro"
|
||||||
pWangsuCertificate "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/wangsu-certificate"
|
pWangsuCertificate "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/wangsu-certificate"
|
||||||
pWebhook "github.com/certimate-go/certimate/te/pkg/core/ssl-deployer/providers/webhook"
|
pWebhook "github.com/certimate-go/certimate/pkg/core/ssl-deployer/providers/webhook"
|
||||||
xhttp "github.com/certimate-go/certimate/te/pkg/utils/http"
|
xhttp "github.com/certimate-go/certimate/pkg/utils/http"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type deployerProviderOptions struct {
|
type deployerProviderOptions struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain/expr"
|
"github.com/certimate-go/certimate/internal/domain/expr"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
const CollectionNameWorkflow = "workflow"
|
const CollectionNameWorkflow = "workflow"
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Notifier interface {
|
type Notifier interface {
|
||||||
|
@ -8,9 +8,9 @@ import (
|
|||||||
"golang.org/x/sync/errgroup"
|
"golang.org/x/sync/errgroup"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Deprecated: v0.4.x 将废弃
|
// Deprecated: v0.4.x 将废弃
|
||||||
|
@ -5,18 +5,18 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
pDingTalkBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/dingtalkbot"
|
pDingTalkBot "github.com/certimate-go/certimate/pkg/core/notifier/providers/dingtalkbot"
|
||||||
pDiscordBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/discordbot"
|
pDiscordBot "github.com/certimate-go/certimate/pkg/core/notifier/providers/discordbot"
|
||||||
pEmail "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/email"
|
pEmail "github.com/certimate-go/certimate/pkg/core/notifier/providers/email"
|
||||||
pLarkBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/larkbot"
|
pLarkBot "github.com/certimate-go/certimate/pkg/core/notifier/providers/larkbot"
|
||||||
pMattermost "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/mattermost"
|
pMattermost "github.com/certimate-go/certimate/pkg/core/notifier/providers/mattermost"
|
||||||
pSlackBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/slackbot"
|
pSlackBot "github.com/certimate-go/certimate/pkg/core/notifier/providers/slackbot"
|
||||||
pTelegramBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/telegrambot"
|
pTelegramBot "github.com/certimate-go/certimate/pkg/core/notifier/providers/telegrambot"
|
||||||
pWebhook "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/webhook"
|
pWebhook "github.com/certimate-go/certimate/pkg/core/notifier/providers/webhook"
|
||||||
pWeComBot "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/wecombot"
|
pWeComBot "github.com/certimate-go/certimate/pkg/core/notifier/providers/wecombot"
|
||||||
xhttp "github.com/certimate-go/certimate/te/pkg/utils/http"
|
xhttp "github.com/certimate-go/certimate/pkg/utils/http"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
type notifierProviderOptions struct {
|
type notifierProviderOptions struct {
|
||||||
|
@ -4,20 +4,20 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
pBark "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/bark"
|
pBark "github.com/certimate-go/certimate/pkg/core/notifier/providers/bark"
|
||||||
pDingTalk "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/dingtalkbot"
|
pDingTalk "github.com/certimate-go/certimate/pkg/core/notifier/providers/dingtalkbot"
|
||||||
pEmail "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/email"
|
pEmail "github.com/certimate-go/certimate/pkg/core/notifier/providers/email"
|
||||||
pGotify "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/gotify"
|
pGotify "github.com/certimate-go/certimate/pkg/core/notifier/providers/gotify"
|
||||||
pLark "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/larkbot"
|
pLark "github.com/certimate-go/certimate/pkg/core/notifier/providers/larkbot"
|
||||||
pMattermost "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/mattermost"
|
pMattermost "github.com/certimate-go/certimate/pkg/core/notifier/providers/mattermost"
|
||||||
pPushover "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/pushover"
|
pPushover "github.com/certimate-go/certimate/pkg/core/notifier/providers/pushover"
|
||||||
pPushPlus "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/pushplus"
|
pPushPlus "github.com/certimate-go/certimate/pkg/core/notifier/providers/pushplus"
|
||||||
pServerChan "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/serverchan"
|
pServerChan "github.com/certimate-go/certimate/pkg/core/notifier/providers/serverchan"
|
||||||
pTelegram "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/telegrambot"
|
pTelegram "github.com/certimate-go/certimate/pkg/core/notifier/providers/telegrambot"
|
||||||
pWebhook "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/webhook"
|
pWebhook "github.com/certimate-go/certimate/pkg/core/notifier/providers/webhook"
|
||||||
pWeCom "github.com/certimate-go/certimate/te/pkg/core/notifier/providers/wecombot"
|
pWeCom "github.com/certimate-go/certimate/pkg/core/notifier/providers/wecombot"
|
||||||
xmaps "github.com/certimate-go/certimate/te/pkg/utils/maps"
|
xmaps "github.com/certimate-go/certimate/pkg/utils/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Deprecated: v0.4.x 将废弃
|
// Deprecated: v0.4.x 将废弃
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Deprecated: v0.4.x 将废弃
|
// Deprecated: v0.4.x 将废弃
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AccessRepository struct{}
|
type AccessRepository struct{}
|
||||||
|
@ -12,7 +12,7 @@ import (
|
|||||||
"golang.org/x/sync/singleflight"
|
"golang.org/x/sync/singleflight"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AcmeAccountRepository struct{}
|
type AcmeAccountRepository struct{}
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
)
|
)
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type StatisticsRepository struct{}
|
type StatisticsRepository struct{}
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/tools/router"
|
"github.com/pocketbase/pocketbase/tools/router"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
"github.com/certimate-go/certimate/te/internal/rest/resp"
|
"github.com/certimate-go/certimate/internal/rest/resp"
|
||||||
)
|
)
|
||||||
|
|
||||||
type certificateService interface {
|
type certificateService interface {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/tools/router"
|
"github.com/pocketbase/pocketbase/tools/router"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
"github.com/certimate-go/certimate/te/internal/rest/resp"
|
"github.com/certimate-go/certimate/internal/rest/resp"
|
||||||
)
|
)
|
||||||
|
|
||||||
type notifyService interface {
|
type notifyService interface {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/tools/router"
|
"github.com/pocketbase/pocketbase/tools/router"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/rest/resp"
|
"github.com/certimate-go/certimate/internal/rest/resp"
|
||||||
)
|
)
|
||||||
|
|
||||||
type statisticsService interface {
|
type statisticsService interface {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/tools/router"
|
"github.com/pocketbase/pocketbase/tools/router"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
"github.com/certimate-go/certimate/te/internal/rest/resp"
|
"github.com/certimate-go/certimate/internal/rest/resp"
|
||||||
)
|
)
|
||||||
|
|
||||||
type workflowService interface {
|
type workflowService interface {
|
||||||
|
@ -8,11 +8,11 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/tools/router"
|
"github.com/pocketbase/pocketbase/tools/router"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/certificate"
|
"github.com/certimate-go/certimate/internal/certificate"
|
||||||
"github.com/certimate-go/certimate/te/internal/notify"
|
"github.com/certimate-go/certimate/internal/notify"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
"github.com/certimate-go/certimate/te/internal/rest/handlers"
|
"github.com/certimate-go/certimate/internal/rest/handlers"
|
||||||
"github.com/certimate-go/certimate/te/internal/statistics"
|
"github.com/certimate-go/certimate/internal/statistics"
|
||||||
"github.com/certimate-go/certimate/te/internal/workflow"
|
"github.com/certimate-go/certimate/internal/workflow"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -2,9 +2,9 @@ package scheduler
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/certificate"
|
"github.com/certimate-go/certimate/internal/certificate"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
"github.com/certimate-go/certimate/te/internal/workflow"
|
"github.com/certimate-go/certimate/internal/workflow"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Register() {
|
func Register() {
|
||||||
|
@ -13,8 +13,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
var maxWorkers = 1
|
var maxWorkers = 1
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
nodes "github.com/certimate-go/certimate/te/internal/workflow/node-processor"
|
nodes "github.com/certimate-go/certimate/internal/workflow/node-processor"
|
||||||
"github.com/certimate-go/certimate/te/pkg/logging"
|
"github.com/certimate-go/certimate/pkg/logging"
|
||||||
)
|
)
|
||||||
|
|
||||||
type workflowInvoker struct {
|
type workflowInvoker struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
)
|
)
|
||||||
|
|
||||||
type workflowRepository interface {
|
type workflowRepository interface {
|
||||||
|
@ -7,9 +7,9 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/core"
|
"github.com/pocketbase/pocketbase/core"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Register() {
|
func Register() {
|
||||||
|
@ -10,9 +10,9 @@ import (
|
|||||||
"golang.org/x/exp/maps"
|
"golang.org/x/exp/maps"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/applicant"
|
"github.com/certimate-go/certimate/internal/applicant"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type applyNode struct {
|
type applyNode struct {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain/expr"
|
"github.com/certimate-go/certimate/internal/domain/expr"
|
||||||
)
|
)
|
||||||
|
|
||||||
type conditionNode struct {
|
type conditionNode struct {
|
||||||
|
@ -10,8 +10,8 @@ import (
|
|||||||
"golang.org/x/exp/maps"
|
"golang.org/x/exp/maps"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/deployer"
|
"github.com/certimate-go/certimate/internal/deployer"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
)
|
)
|
||||||
|
|
||||||
type deployNode struct {
|
type deployNode struct {
|
||||||
|
@ -14,7 +14,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
xhttp "github.com/certimate-go/certimate/te/pkg/utils/http"
|
xhttp "github.com/certimate-go/certimate/pkg/utils/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
type monitorNode struct {
|
type monitorNode struct {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
nodeprocessor "github.com/certimate-go/certimate/te/internal/workflow/node-processor"
|
nodeprocessor "github.com/certimate-go/certimate/internal/workflow/node-processor"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_MonitorNode(t *testing.T) {
|
func Test_MonitorNode(t *testing.T) {
|
||||||
|
@ -7,8 +7,8 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/notify"
|
"github.com/certimate-go/certimate/internal/notify"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
)
|
)
|
||||||
|
|
||||||
type notifyNode struct {
|
type notifyNode struct {
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/repository"
|
"github.com/certimate-go/certimate/internal/repository"
|
||||||
)
|
)
|
||||||
|
|
||||||
type uploadNode struct {
|
type uploadNode struct {
|
||||||
|
@ -10,9 +10,9 @@ import (
|
|||||||
"github.com/pocketbase/dbx"
|
"github.com/pocketbase/dbx"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain"
|
"github.com/certimate-go/certimate/internal/domain"
|
||||||
"github.com/certimate-go/certimate/te/internal/domain/dtos"
|
"github.com/certimate-go/certimate/internal/domain/dtos"
|
||||||
"github.com/certimate-go/certimate/te/internal/workflow/dispatcher"
|
"github.com/certimate-go/certimate/internal/workflow/dispatcher"
|
||||||
)
|
)
|
||||||
|
|
||||||
type workflowRepository interface {
|
type workflowRepository interface {
|
||||||
|
10
main.go
10
main.go
@ -14,12 +14,12 @@ import (
|
|||||||
"github.com/pocketbase/pocketbase/tools/hook"
|
"github.com/pocketbase/pocketbase/tools/hook"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/internal/app"
|
"github.com/certimate-go/certimate/internal/app"
|
||||||
"github.com/certimate-go/certimate/te/internal/rest/routes"
|
"github.com/certimate-go/certimate/internal/rest/routes"
|
||||||
"github.com/certimate-go/certimate/te/internal/scheduler"
|
"github.com/certimate-go/certimate/internal/scheduler"
|
||||||
"github.com/certimate-go/certimate/te/internal/workflow"
|
"github.com/certimate-go/certimate/internal/workflow"
|
||||||
"github.com/certimate-go/certimate/te/ui"
|
"github.com/certimate-go/certimate/ui"
|
||||||
|
|
||||||
_ "github.com/certimate-go/certimate/te/migrations"
|
_ "github.com/certimate-go/certimate/migrations"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/aliyun-esa/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/aliyun-esa/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/go-acme/lego/v4/providers/dns/azuredns"
|
"github.com/go-acme/lego/v4/providers/dns/azuredns"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
azenv "github.com/certimate-go/certimate/te/pkg/sdk3rd/azure/env"
|
azenv "github.com/certimate-go/certimate/pkg/sdk3rd/azure/env"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/baiducloud/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/baiducloud/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/cmcccloud/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/cmcccloud/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/ctcccloud/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/ctcccloud/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -10,7 +10,7 @@ import (
|
|||||||
"github.com/go-acme/lego/v4/platform/config/env"
|
"github.com/go-acme/lego/v4/platform/config/env"
|
||||||
|
|
||||||
ctyundns "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/dns"
|
ctyundns "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/dns"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/dnsla/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/dnsla/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/dynv6/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/dynv6/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/gname/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/gname/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -10,7 +10,7 @@ import (
|
|||||||
"github.com/go-acme/lego/v4/platform/config/env"
|
"github.com/go-acme/lego/v4/platform/config/env"
|
||||||
|
|
||||||
gnamesdk "github.com/certimate-go/certimate/pkg/sdk3rd/gname"
|
gnamesdk "github.com/certimate-go/certimate/pkg/sdk3rd/gname"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/jdcloud/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/jdcloud/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/tencentcloud-eo/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/tencentcloud-eo/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
"github.com/certimate-go/certimate/te/pkg/core/ssl-applicator/acme-dns01/providers/ucloud-udnr/internal"
|
"github.com/certimate-go/certimate/pkg/core/ssl-applicator/acme-dns01/providers/ucloud-udnr/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChallengeProviderConfig struct {
|
type ChallengeProviderConfig struct {
|
||||||
|
@ -9,8 +9,8 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
onepanelsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/1panel"
|
onepanelsdk "github.com/certimate-go/certimate/pkg/sdk3rd/1panel"
|
||||||
onepanelsdkv2 "github.com/certimate-go/certimate/te/pkg/sdk3rd/1panel/v2"
|
onepanelsdkv2 "github.com/certimate-go/certimate/pkg/sdk3rd/1panel/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -9,9 +9,9 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/1panel-ssl"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/1panel-ssl"
|
||||||
onepanelsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/1panel"
|
onepanelsdk "github.com/certimate-go/certimate/pkg/sdk3rd/1panel"
|
||||||
onepanelsdkv2 "github.com/certimate-go/certimate/te/pkg/sdk3rd/1panel/v2"
|
onepanelsdkv2 "github.com/certimate-go/certimate/pkg/sdk3rd/1panel/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -16,7 +16,7 @@ import (
|
|||||||
"golang.org/x/exp/slices"
|
"golang.org/x/exp/slices"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -14,8 +14,8 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -13,7 +13,7 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -11,7 +11,7 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-slb"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-slb"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -13,7 +13,7 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-slb"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-slb"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -13,7 +13,7 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,8 +12,8 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,7 +12,7 @@ import (
|
|||||||
"github.com/alibabacloud-go/tea/tea"
|
"github.com/alibabacloud-go/tea/tea"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,9 +12,9 @@ import (
|
|||||||
aliwaf "github.com/alibabacloud-go/waf-openapi-20211001/v5/client"
|
aliwaf "github.com/alibabacloud-go/waf-openapi-20211001/v5/client"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aliyun-cas"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aliyun-cas"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,9 +8,9 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
apisixsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/apisix"
|
apisixsdk "github.com/certimate-go/certimate/pkg/sdk3rd/apisix"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,8 +12,8 @@ import (
|
|||||||
awsacm "github.com/aws/aws-sdk-go-v2/service/acm"
|
awsacm "github.com/aws/aws-sdk-go-v2/service/acm"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aws-acm"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aws-acm"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -13,8 +13,8 @@ import (
|
|||||||
"github.com/aws/aws-sdk-go-v2/service/cloudfront/types"
|
"github.com/aws/aws-sdk-go-v2/service/cloudfront/types"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrspacm "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aws-acm"
|
sslmgrspacm "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aws-acm"
|
||||||
sslmgrspiam "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aws-iam"
|
sslmgrspiam "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aws-iam"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/aws-iam"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/aws-iam"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -14,9 +14,9 @@ import (
|
|||||||
"github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates"
|
"github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/azure-keyvault"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/azure-keyvault"
|
||||||
azenv "github.com/certimate-go/certimate/te/pkg/sdk3rd/azure/env"
|
azenv "github.com/certimate-go/certimate/pkg/sdk3rd/azure/env"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,8 +12,8 @@ import (
|
|||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/baiducloud-cert"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/baiducloud-cert"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,8 +12,8 @@ import (
|
|||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/baiducloud-cert"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/baiducloud-cert"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/baiducloud-cert"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/baiducloud-cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -11,8 +11,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
bssdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/baishan"
|
bssdk "github.com/certimate-go/certimate/pkg/sdk3rd/baishan"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
btsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/btpanel"
|
btsdk "github.com/certimate-go/certimate/pkg/sdk3rd/btpanel"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,8 +8,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
btsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/btpanel"
|
btsdk "github.com/certimate-go/certimate/pkg/sdk3rd/btpanel"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,8 +8,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
btwafsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/btwaf"
|
btwafsdk "github.com/certimate-go/certimate/pkg/sdk3rd/btwaf"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,8 +8,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
btwafsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/btwaf"
|
btwafsdk "github.com/certimate-go/certimate/pkg/sdk3rd/btwaf"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
bunnysdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/bunny"
|
bunnysdk "github.com/certimate-go/certimate/pkg/sdk3rd/bunny"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -10,7 +10,7 @@ import (
|
|||||||
bpcdn "github.com/byteplus-sdk/byteplus-sdk-golang/service/cdn"
|
bpcdn "github.com/byteplus-sdk/byteplus-sdk-golang/service/cdn"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/byteplus-cdn"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/byteplus-cdn"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,8 +7,8 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
cacheflysdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/cachefly"
|
cacheflysdk "github.com/certimate-go/certimate/pkg/sdk3rd/cachefly"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -10,8 +10,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
cdnflysdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/cdnfly"
|
cdnflysdk "github.com/certimate-go/certimate/pkg/sdk3rd/cdnfly"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,9 +7,9 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/ctcccloud-ao"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-ao"
|
||||||
ctyunao "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/ao"
|
ctyunao "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/ao"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,9 +7,9 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/ctcccloud-cdn"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-cdn"
|
||||||
ctyuncdn "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/cdn"
|
ctyuncdn "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/cdn"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/ctcccloud-cms"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-cms"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,9 +8,9 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/ctcccloud-elb"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-elb"
|
||||||
ctyunelb "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/elb"
|
ctyunelb "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/elb"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,9 +7,9 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/ctcccloud-icdn"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-icdn"
|
||||||
ctyunicdn "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/icdn"
|
ctyunicdn "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/icdn"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,9 +7,9 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/ctcccloud-lvdn"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/ctcccloud-lvdn"
|
||||||
ctyunlvdn "github.com/certimate-go/certimate/te/pkg/sdk3rd/ctyun/lvdn"
|
ctyunlvdn "github.com/certimate-go/certimate/pkg/sdk3rd/ctyun/lvdn"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -8,8 +8,8 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/dogecloud"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/dogecloud"
|
||||||
dogesdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/dogecloud"
|
dogesdk "github.com/certimate-go/certimate/pkg/sdk3rd/dogecloud"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -10,7 +10,7 @@ import (
|
|||||||
edgiodtos "github.com/Edgio/edgio-api/applications/v7/dtos"
|
edgiodtos "github.com/Edgio/edgio-api/applications/v7/dtos"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -10,8 +10,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
flexcdnsdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/flexcdn"
|
flexcdnsdk "github.com/certimate-go/certimate/pkg/sdk3rd/flexcdn"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -13,8 +13,8 @@ import (
|
|||||||
"github.com/G-Core/gcorelabscdn-go/sslcerts"
|
"github.com/G-Core/gcorelabscdn-go/sslcerts"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/gcore-cdn"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/gcore-cdn"
|
||||||
gcoresdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/gcore"
|
gcoresdk "github.com/certimate-go/certimate/pkg/sdk3rd/gcore"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -10,8 +10,8 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
goedgesdk "github.com/certimate-go/certimate/te/pkg/sdk3rd/goedge"
|
goedgesdk "github.com/certimate-go/certimate/pkg/sdk3rd/goedge"
|
||||||
xcert "github.com/certimate-go/certimate/te/pkg/utils/cert"
|
xcert "github.com/certimate-go/certimate/pkg/utils/cert"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -12,8 +12,8 @@ import (
|
|||||||
hccdnregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/cdn/v2/region"
|
hccdnregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/cdn/v2/region"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/huaweicloud-scm"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/huaweicloud-scm"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -17,8 +17,8 @@ import (
|
|||||||
"golang.org/x/exp/slices"
|
"golang.org/x/exp/slices"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/huaweicloud-elb"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/huaweicloud-elb"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/huaweicloud-scm"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/huaweicloud-scm"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -17,8 +17,8 @@ import (
|
|||||||
hcwafregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/waf/v1/region"
|
hcwafregion "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/waf/v1/region"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/huaweicloud-waf"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/huaweicloud-waf"
|
||||||
xtypes "github.com/certimate-go/certimate/te/pkg/utils/types"
|
xtypes "github.com/certimate-go/certimate/pkg/utils/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
@ -14,8 +14,8 @@ import (
|
|||||||
jdlbmodel "github.com/jdcloud-api/jdcloud-sdk-go/services/lb/models"
|
jdlbmodel "github.com/jdcloud-api/jdcloud-sdk-go/services/lb/models"
|
||||||
|
|
||||||
"github.com/certimate-go/certimate/pkg/core"
|
"github.com/certimate-go/certimate/pkg/core"
|
||||||
sslmgrsp "github.com/certimate-go/certimate/te/pkg/core/ssl-manager/providers/jdcloud-ssl"
|
sslmgrsp "github.com/certimate-go/certimate/pkg/core/ssl-manager/providers/jdcloud-ssl"
|
||||||
xslices "github.com/certimate-go/certimate/te/pkg/utils/slices"
|
xslices "github.com/certimate-go/certimate/pkg/utils/slices"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SSLDeployerProviderConfig struct {
|
type SSLDeployerProviderConfig struct {
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user