mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 03:07:34 +08:00 
			
		
		
		
	feat: 增加火山引擎DNS (#7006)
This commit is contained in:
		
							parent
							
								
									fbbbd52d72
								
							
						
					
					
						commit
						3a400dd15a
					
				
					 8 changed files with 398 additions and 102 deletions
				
			
		|  | @ -23,6 +23,7 @@ import ( | |||
| 	"github.com/go-acme/lego/v4/providers/dns/namedotcom" | ||||
| 	"github.com/go-acme/lego/v4/providers/dns/namesilo" | ||||
| 	"github.com/go-acme/lego/v4/providers/dns/tencentcloud" | ||||
| 	"github.com/go-acme/lego/v4/providers/dns/volcengine" | ||||
| 	"github.com/go-acme/lego/v4/providers/http/webroot" | ||||
| 	"github.com/go-acme/lego/v4/registration" | ||||
| 	"github.com/pkg/errors" | ||||
|  | @ -67,6 +68,7 @@ type DnsType string | |||
| const ( | ||||
| 	DnsPod       DnsType = "DnsPod" | ||||
| 	AliYun       DnsType = "AliYun" | ||||
| 	Volcengine   DnsType = "Volcengine" | ||||
| 	CloudFlare   DnsType = "CloudFlare" | ||||
| 	NameSilo     DnsType = "NameSilo" | ||||
| 	NameCheap    DnsType = "NameCheap" | ||||
|  | @ -122,6 +124,14 @@ func (c *AcmeClient) UseDns(dnsType DnsType, params string, websiteSSL model.Web | |||
| 		alidnsConfig.PollingInterval = pollingInterval | ||||
| 		alidnsConfig.TTL = ttl | ||||
| 		p, err = alidns.NewDNSProviderConfig(alidnsConfig) | ||||
| 	case Volcengine: | ||||
| 		volcConfig := volcengine.NewDefaultConfig() | ||||
| 		volcConfig.SecretKey = param.SecretKey | ||||
| 		volcConfig.AccessKey = param.AccessKey | ||||
| 		volcConfig.PropagationTimeout = propagationTimeout | ||||
| 		volcConfig.PollingInterval = pollingInterval | ||||
| 		volcConfig.TTL = ttl | ||||
| 		p, err = volcengine.NewDNSProviderConfig(volcConfig) | ||||
| 	case CloudFlare: | ||||
| 		cloudflareConfig := cloudflare.NewDefaultConfig() | ||||
| 		cloudflareConfig.AuthEmail = param.Email | ||||
|  |  | |||
|  | @ -168,6 +168,10 @@ export const DNSTypes = [ | |||
|         label: i18n.global.t('website.huaweicloud'), | ||||
|         value: 'HuaweiCloud', | ||||
|     }, | ||||
|     { | ||||
|         label: i18n.global.t('website.volcengine'), | ||||
|         value: 'Volcengine', | ||||
|     }, | ||||
|     { | ||||
|         label: 'DNSPod (' + i18n.global.t('ssl.deprecated') + ')', | ||||
|         value: 'DnsPod', | ||||
|  |  | |||
|  | @ -1938,6 +1938,7 @@ const message = { | |||
|         SSLList: 'Certificate List', | ||||
|         createDnsAccount: 'DNS Account', | ||||
|         aliyun: 'Aliyun', | ||||
|         volcengine: 'Volcengine', | ||||
|         manual: 'Manual parsing', | ||||
|         key: 'Key', | ||||
|         check: 'View', | ||||
|  |  | |||
|  | @ -1796,6 +1796,7 @@ const message = { | |||
|         SSLList: '證書列表', | ||||
|         createDnsAccount: 'DNS賬戶', | ||||
|         aliyun: '阿裏雲', | ||||
|         volcengine: '火山引擎', | ||||
|         manual: '手動解析', | ||||
|         key: '密鑰', | ||||
|         check: '查看', | ||||
|  |  | |||
|  | @ -1797,6 +1797,7 @@ const message = { | |||
|         SSLList: '证书列表', | ||||
|         createDnsAccount: 'DNS账户', | ||||
|         aliyun: '阿里云', | ||||
|         volcengine: '火山引擎', | ||||
|         manual: '手动解析', | ||||
|         key: '密钥', | ||||
|         check: '查看', | ||||
|  |  | |||
|  | @ -44,6 +44,14 @@ | |||
|                     <el-form-item label="Region" prop="authorization.region" v-if="account.type === 'HuaweiCloud'"> | ||||
|                         <el-input v-model.trim="account.authorization['region']" :placeholder="'cn-north-1'"></el-input> | ||||
|                     </el-form-item> | ||||
|                     <div v-if="account.type === 'Volcengine'"> | ||||
|                         <el-form-item label="Access Key" prop="authorization.accessKey"> | ||||
|                             <el-input v-model.trim="account.authorization['accessKey']"></el-input> | ||||
|                         </el-form-item> | ||||
|                         <el-form-item label="Secret Key" prop="authorization.secretKey"> | ||||
|                             <el-input v-model.trim="account.authorization['secretKey']"></el-input> | ||||
|                         </el-form-item> | ||||
|                     </div> | ||||
|                     <div v-if="account.type === 'TencentCloud'"> | ||||
|                         <el-form-item label="Secret ID" prop="authorization.secretID"> | ||||
|                             <el-input v-model.trim="account.authorization['secretID']"></el-input> | ||||
|  |  | |||
							
								
								
									
										63
									
								
								go.mod
									
										
									
									
									
								
							
							
						
						
									
										63
									
								
								go.mod
									
										
									
									
									
								
							|  | @ -15,7 +15,7 @@ require ( | |||
| 	github.com/gin-contrib/gzip v0.0.6 | ||||
| 	github.com/gin-gonic/gin v1.9.1 | ||||
| 	github.com/glebarez/sqlite v1.10.0 | ||||
| 	github.com/go-acme/lego/v4 v4.19.2 | ||||
| 	github.com/go-acme/lego/v4 v4.20.2 | ||||
| 	github.com/go-gormigrate/gormigrate/v2 v2.1.1 | ||||
| 	github.com/go-playground/validator/v10 v10.18.0 | ||||
| 	github.com/go-redis/redis v6.15.9+incompatible | ||||
|  | @ -51,12 +51,12 @@ require ( | |||
| 	github.com/swaggo/swag v1.16.3 | ||||
| 	github.com/tencentyun/cos-go-sdk-v5 v0.7.46 | ||||
| 	github.com/xlzd/gotp v0.1.0 | ||||
| 	golang.org/x/crypto v0.27.0 | ||||
| 	golang.org/x/net v0.29.0 | ||||
| 	golang.org/x/crypto v0.28.0 | ||||
| 	golang.org/x/net v0.30.0 | ||||
| 	golang.org/x/oauth2 v0.23.0 | ||||
| 	golang.org/x/sys v0.25.0 | ||||
| 	golang.org/x/term v0.24.0 | ||||
| 	golang.org/x/text v0.18.0 | ||||
| 	golang.org/x/sys v0.26.0 | ||||
| 	golang.org/x/term v0.25.0 | ||||
| 	golang.org/x/text v0.19.0 | ||||
| 	gopkg.in/ini.v1 v1.67.0 | ||||
| 	gopkg.in/yaml.v3 v3.0.1 | ||||
| 	gorm.io/gorm v1.25.7 | ||||
|  | @ -68,21 +68,21 @@ require ( | |||
| 	github.com/KyleBanks/depth v1.2.1 // indirect | ||||
| 	github.com/Microsoft/go-winio v0.6.1 // indirect | ||||
| 	github.com/Microsoft/hcsshim v0.11.4 // indirect | ||||
| 	github.com/aliyun/alibaba-cloud-sdk-go v1.63.15 // indirect | ||||
| 	github.com/aliyun/alibaba-cloud-sdk-go v1.63.47 // indirect | ||||
| 	github.com/andybalholm/brotli v1.1.0 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2 v1.30.5 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/config v1.27.33 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/credentials v1.17.32 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2 v1.32.3 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/config v1.28.1 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/credentials v1.17.42 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.18 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.22 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.22 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect | ||||
| 	github.com/aws/smithy-go v1.20.4 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.3 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/sso v1.24.3 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.3 // indirect | ||||
| 	github.com/aws/aws-sdk-go-v2/service/sts v1.32.3 // indirect | ||||
| 	github.com/aws/smithy-go v1.22.0 // indirect | ||||
| 	github.com/beorn7/perks v1.0.1 // indirect | ||||
| 	github.com/bodgit/plumbing v1.3.0 // indirect | ||||
| 	github.com/bodgit/sevenzip v1.5.0 // indirect | ||||
|  | @ -93,7 +93,7 @@ require ( | |||
| 	github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect | ||||
| 	github.com/chenzhuoyu/iasm v0.9.1 // indirect | ||||
| 	github.com/clbanning/mxj v1.8.5-0.20200714211355-ff02cfb8ea28 // indirect | ||||
| 	github.com/cloudflare/cloudflare-go v0.104.0 // indirect | ||||
| 	github.com/cloudflare/cloudflare-go v0.108.0 // indirect | ||||
| 	github.com/containerd/console v1.0.4 // indirect | ||||
| 	github.com/containerd/containerd v1.7.13 // indirect | ||||
| 	github.com/containerd/continuity v0.4.3 // indirect | ||||
|  | @ -132,7 +132,7 @@ require ( | |||
| 	github.com/gogo/googleapis v1.4.1 // indirect | ||||
| 	github.com/gogo/protobuf v1.3.2 // indirect | ||||
| 	github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||||
| 	github.com/golang/glog v1.2.1 // indirect | ||||
| 	github.com/golang/glog v1.2.2 // indirect | ||||
| 	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||||
| 	github.com/golang/protobuf v1.5.4 // indirect | ||||
| 	github.com/golang/snappy v0.0.4 // indirect | ||||
|  | @ -147,9 +147,9 @@ require ( | |||
| 	github.com/h2non/filetype v1.1.3 // indirect | ||||
| 	github.com/hashicorp/errwrap v1.1.0 // indirect | ||||
| 	github.com/hashicorp/go-multierror v1.1.1 // indirect | ||||
| 	github.com/hashicorp/go-version v1.6.0 // indirect | ||||
| 	github.com/hashicorp/go-version v1.7.0 // indirect | ||||
| 	github.com/hashicorp/hcl v1.0.0 // indirect | ||||
| 	github.com/huaweicloud/huaweicloud-sdk-go-v3 v0.1.114 // indirect | ||||
| 	github.com/huaweicloud/huaweicloud-sdk-go-v3 v0.1.120 // indirect | ||||
| 	github.com/imdario/mergo v0.3.16 // indirect | ||||
| 	github.com/in-toto/in-toto-golang v0.9.0 // indirect | ||||
| 	github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||||
|  | @ -216,8 +216,8 @@ require ( | |||
| 	github.com/spf13/cast v1.6.0 // indirect | ||||
| 	github.com/spf13/pflag v1.0.5 // indirect | ||||
| 	github.com/stretchr/testify v1.9.0 // indirect | ||||
| 	github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.1002 // indirect | ||||
| 	github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod v1.0.1002 // indirect | ||||
| 	github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.1034 // indirect | ||||
| 	github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod v1.0.1034 // indirect | ||||
| 	github.com/therootcompany/xz v1.0.1 // indirect | ||||
| 	github.com/theupdateframework/notary v0.7.0 // indirect | ||||
| 	github.com/tjfoc/gmsm v1.4.1 // indirect | ||||
|  | @ -229,6 +229,7 @@ require ( | |||
| 	github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||||
| 	github.com/ugorji/go/codec v1.2.12 // indirect | ||||
| 	github.com/ulikunitz/xz v0.5.11 // indirect | ||||
| 	github.com/volcengine/volc-sdk-golang v1.0.183 // indirect | ||||
| 	github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||||
| 	github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||||
| 	github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||||
|  | @ -253,13 +254,13 @@ require ( | |||
| 	golang.org/x/image v0.18.0 // indirect | ||||
| 	golang.org/x/mod v0.21.0 // indirect | ||||
| 	golang.org/x/sync v0.8.0 // indirect | ||||
| 	golang.org/x/time v0.6.0 // indirect | ||||
| 	golang.org/x/time v0.7.0 // indirect | ||||
| 	golang.org/x/tools v0.25.0 // indirect | ||||
| 	google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||||
| 	google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect | ||||
| 	google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||||
| 	google.golang.org/grpc v1.66.1 // indirect | ||||
| 	google.golang.org/protobuf v1.34.2 // indirect | ||||
| 	google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38 // indirect | ||||
| 	google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53 // indirect | ||||
| 	google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect | ||||
| 	google.golang.org/grpc v1.67.1 // indirect | ||||
| 	google.golang.org/protobuf v1.35.1 // indirect | ||||
| 	gopkg.in/inf.v0 v0.9.1 // indirect | ||||
| 	gopkg.in/yaml.v2 v2.4.0 // indirect | ||||
| 	k8s.io/apimachinery v0.29.2 // indirect | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue