[PR #597] [MERGED] new providers #991

Closed
opened 2026-03-03 01:07:10 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/597
Author: @fudiwei
Created: 4/8/2025
Status: Merged
Merged: 4/13/2025
Merged by: @usual2970

Base: mainHead: feat/providers


📝 Commits (10+)

📊 Changes

58 files changed (+1909 additions, -57 deletions)

View changed files

📝 go.mod (+3 -0)
📝 internal/deployer/providers.go (+47 -0)
📝 internal/domain/access.go (+5 -0)
📝 internal/domain/provider.go (+3 -0)
📝 internal/pkg/core/deployer/providers/edgio-applications/edgio_applications.go (+6 -6)
internal/pkg/core/deployer/providers/rainyun-rcdn/rainyun_rcdn.go (+102 -0)
internal/pkg/core/deployer/providers/rainyun-rcdn/rainyun_rcdn_test.go (+75 -0)
internal/pkg/core/deployer/providers/wangsu-cdnpro/wangsu_cdnpro.go (+276 -0)
internal/pkg/core/deployer/providers/wangsu-cdnpro/wangsu_cdnpro_test.go (+90 -0)
📝 internal/pkg/core/uploader/providers/1panel-ssl/1panel_ssl.go (+3 -3)
internal/pkg/core/uploader/providers/rainyun-sslcenter/rainyun_sslcenter.go (+169 -0)
internal/pkg/core/uploader/providers/rainyun-sslcenter/rainyun_sslcenter_test.go (+67 -0)
📝 internal/pkg/core/uploader/providers/ucloud-ussl/ucloud_ussl.go (+3 -3)
📝 internal/pkg/utils/maputil/getter.go (+18 -0)
📝 internal/pkg/vendors/1panel-sdk/client.go (+1 -1)
📝 internal/pkg/vendors/baishan-sdk/client.go (+1 -1)
📝 internal/pkg/vendors/btpanel-sdk/client.go (+1 -1)
📝 internal/pkg/vendors/cachefly-sdk/client.go (+1 -1)
📝 internal/pkg/vendors/cdnfly-sdk/api.go (+4 -3)
📝 internal/pkg/vendors/cdnfly-sdk/client.go (+1 -1)

...and 38 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增部署提供商:雨云 RCDN
  • feat: 新增部署提供商:网宿云 CDN Pro。关闭 #569

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/certimate-go/certimate/pull/597 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 4/8/2025 **Status:** ✅ Merged **Merged:** 4/13/2025 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `main` ← **Head:** `feat/providers` --- ### 📝 Commits (10+) - [`ed6d74f`](https://github.com/certimate-go/certimate/commit/ed6d74f1ba5dd7f0a50071561a4b19d062ea4780) feat(ui): builtin providers tag - [`2127bb7`](https://github.com/certimate-go/certimate/commit/2127bb7e69d06cc5417d76b622bdc716678213e7) Merge branch 'feat/providers' of https://github.com/fudiwei/certimate into feat/providers - [`25bd17d`](https://github.com/certimate-go/certimate/commit/25bd17dc6e25d3e3c800547ca3f3c1ba7b3e01a8) feat: add rainyun ssl center uploader - [`3cebe51`](https://github.com/certimate-go/certimate/commit/3cebe51796bf7480b3f95a4107c80b8298e25b24) feat: add rainyun rcdn deployer - [`b97de6c`](https://github.com/certimate-go/certimate/commit/b97de6c06b26c4cff494f42c51412a691eb1ccbc) Merge branch 'usual2970:main' into feat/providers - [`c5409c7`](https://github.com/certimate-go/certimate/commit/c5409c78ba7461f16945e28520241250bf38e082) refactor: edgio api sdk - [`acc1365`](https://github.com/certimate-go/certimate/commit/acc1365101959631b6e05d0d818df569792b9847) Merge branch 'feat/providers' of https://github.com/fudiwei/certimate into feat/providers - [`2a6cc01`](https://github.com/certimate-go/certimate/commit/2a6cc01eedaa08f804081f4b0016b9ff5d85dd7c) feat(ui): adjust table scroll width in Dashboard - [`b0973b5`](https://github.com/certimate-go/certimate/commit/b0973b5ca8dcad509f44028c93e8dda6a904a8c9) refactor: clean code - [`f970ae7`](https://github.com/certimate-go/certimate/commit/f970ae752993ff2e69a27e7b6058781ac52f03ef) feat: add wangsu cdnpro deployer ### 📊 Changes **58 files changed** (+1909 additions, -57 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+3 -0) 📝 `internal/deployer/providers.go` (+47 -0) 📝 `internal/domain/access.go` (+5 -0) 📝 `internal/domain/provider.go` (+3 -0) 📝 `internal/pkg/core/deployer/providers/edgio-applications/edgio_applications.go` (+6 -6) ➕ `internal/pkg/core/deployer/providers/rainyun-rcdn/rainyun_rcdn.go` (+102 -0) ➕ `internal/pkg/core/deployer/providers/rainyun-rcdn/rainyun_rcdn_test.go` (+75 -0) ➕ `internal/pkg/core/deployer/providers/wangsu-cdnpro/wangsu_cdnpro.go` (+276 -0) ➕ `internal/pkg/core/deployer/providers/wangsu-cdnpro/wangsu_cdnpro_test.go` (+90 -0) 📝 `internal/pkg/core/uploader/providers/1panel-ssl/1panel_ssl.go` (+3 -3) ➕ `internal/pkg/core/uploader/providers/rainyun-sslcenter/rainyun_sslcenter.go` (+169 -0) ➕ `internal/pkg/core/uploader/providers/rainyun-sslcenter/rainyun_sslcenter_test.go` (+67 -0) 📝 `internal/pkg/core/uploader/providers/ucloud-ussl/ucloud_ussl.go` (+3 -3) 📝 `internal/pkg/utils/maputil/getter.go` (+18 -0) 📝 `internal/pkg/vendors/1panel-sdk/client.go` (+1 -1) 📝 `internal/pkg/vendors/baishan-sdk/client.go` (+1 -1) 📝 `internal/pkg/vendors/btpanel-sdk/client.go` (+1 -1) 📝 `internal/pkg/vendors/cachefly-sdk/client.go` (+1 -1) 📝 `internal/pkg/vendors/cdnfly-sdk/api.go` (+4 -3) 📝 `internal/pkg/vendors/cdnfly-sdk/client.go` (+1 -1) _...and 38 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增部署提供商:雨云 RCDN - **feat**: 新增部署提供商:网宿云 CDN Pro。关闭 #569 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:07:10 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/certimate#991
No description provided.