[PR #697] [MERGED] new providers #1016

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/697
Author: @fudiwei
Created: 5/16/2025
Status: Merged
Merged: 5/20/2025
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (10+)

  • fd875fe feat: support 1panel v2
  • e9f248d Merge branch 'usual2970:main' into main
  • 980d1ee feat: new deployment providers: ratpanel console & site
  • 122d766 feat: new ca provider: custom acme ca
  • eabd16d feat: new deployment provider: flexcdn
  • 3462e45 feat: new deployment provider: aliyun ga
  • 3098f6a feat: rename certificate props 'issuer' to 'issuerOrg'
  • a66e1c0 feat(ui): allow clear input when field is optional
  • c9e6bd0 feat: new deployment provider: lecdn
  • e6fc92e feat: new deployment provider: wangsu certificate management

📊 Changes

163 files changed (+5504 additions, -952 deletions)

View changed files

📝 go.mod (+1 -0)
📝 go.sum (+3 -0)
📝 internal/applicant/acme_ca.go (+17 -16)
📝 internal/applicant/acme_user.go (+44 -10)
📝 internal/applicant/applicant.go (+38 -23)
📝 internal/applicant/providers.go (+23 -22)
📝 internal/deployer/deployer.go (+3 -3)
📝 internal/deployer/providers.go (+305 -198)
📝 internal/domain/access.go (+31 -1)
📝 internal/domain/certificate.go (+2 -2)
📝 internal/domain/provider.go (+13 -9)
📝 internal/notify/notifier.go (+3 -3)
📝 internal/notify/providers.go (+9 -9)
📝 internal/pkg/core/deployer/providers/1panel-console/1panel_console.go (+13 -6)
📝 internal/pkg/core/deployer/providers/1panel-console/1panel_console_test.go (+5 -0)
📝 internal/pkg/core/deployer/providers/1panel-site/1panel_site.go (+19 -11)
📝 internal/pkg/core/deployer/providers/1panel-site/1panel_site_test.go (+5 -0)
📝 internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go (+9 -4)
📝 internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb_test.go (+1 -0)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go (+0 -1)

...and 80 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增证书颁发机构:自定义 ACME CA。关闭 #657
  • feat: 新增部署提供商:阿里云 GA 全球加速。关闭 #688
  • feat: 新增部署提供商:耗子面板。完善 #696 的相关前端
  • feat: 新增部署提供商:网宿云 CDN。
  • feat: 新增部署提供商:网宿云证书管理。
  • feat: 新增部署提供商:堡塔云 WAF。
  • feat: 新增部署提供商:FlexCDN。
  • feat: 部署到 1Panel 支持 1Panel V2 版。关闭 #695

🔄 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/697 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 5/16/2025 **Status:** ✅ Merged **Merged:** 5/20/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`fd875fe`](https://github.com/certimate-go/certimate/commit/fd875feef390dbd00d67bcfb93f3e5b1689923f7) feat: support 1panel v2 - [`e9f248d`](https://github.com/certimate-go/certimate/commit/e9f248d8ecd430f0f479c29d669d64abc9105542) Merge branch 'usual2970:main' into main - [`980d1ee`](https://github.com/certimate-go/certimate/commit/980d1ee0b9a327e6f53aea35c2e4b67405568889) feat: new deployment providers: ratpanel console & site - [`122d766`](https://github.com/certimate-go/certimate/commit/122d766cab7304ed28d4ff23e03063db0984cdea) feat: new ca provider: custom acme ca - [`eabd16d`](https://github.com/certimate-go/certimate/commit/eabd16dd715e861f0f468144fa005f79f433fa87) feat: new deployment provider: flexcdn - [`3462e45`](https://github.com/certimate-go/certimate/commit/3462e454d017b2aa4cc910d93b0fe5ba9a739ac7) feat: new deployment provider: aliyun ga - [`3098f6a`](https://github.com/certimate-go/certimate/commit/3098f6a82fccb3489034f99231b6bd2d0eaa6486) feat: rename certificate props 'issuer' to 'issuerOrg' - [`a66e1c0`](https://github.com/certimate-go/certimate/commit/a66e1c04c94e9d67d308eb33fac1d1727a73e460) feat(ui): allow clear input when field is optional - [`c9e6bd0`](https://github.com/certimate-go/certimate/commit/c9e6bd0c2f178812042097e1487282942e098186) feat: new deployment provider: lecdn - [`e6fc92e`](https://github.com/certimate-go/certimate/commit/e6fc92eccbb341e89d5495ebc9b193833c2a755b) feat: new deployment provider: wangsu certificate management ### 📊 Changes **163 files changed** (+5504 additions, -952 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -0) 📝 `go.sum` (+3 -0) 📝 `internal/applicant/acme_ca.go` (+17 -16) 📝 `internal/applicant/acme_user.go` (+44 -10) 📝 `internal/applicant/applicant.go` (+38 -23) 📝 `internal/applicant/providers.go` (+23 -22) 📝 `internal/deployer/deployer.go` (+3 -3) 📝 `internal/deployer/providers.go` (+305 -198) 📝 `internal/domain/access.go` (+31 -1) 📝 `internal/domain/certificate.go` (+2 -2) 📝 `internal/domain/provider.go` (+13 -9) 📝 `internal/notify/notifier.go` (+3 -3) 📝 `internal/notify/providers.go` (+9 -9) 📝 `internal/pkg/core/deployer/providers/1panel-console/1panel_console.go` (+13 -6) 📝 `internal/pkg/core/deployer/providers/1panel-console/1panel_console_test.go` (+5 -0) 📝 `internal/pkg/core/deployer/providers/1panel-site/1panel_site.go` (+19 -11) 📝 `internal/pkg/core/deployer/providers/1panel-site/1panel_site_test.go` (+5 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go` (+9 -4) 📝 `internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb_test.go` (+1 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go` (+0 -1) _...and 80 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增证书颁发机构:自定义 ACME CA。关闭 #657 - **feat**: 新增部署提供商:阿里云 GA 全球加速。关闭 #688 - **feat**: 新增部署提供商:耗子面板。完善 #696 的相关前端 - **feat**: 新增部署提供商:网宿云 CDN。 - **feat**: 新增部署提供商:网宿云证书管理。 - **feat**: 新增部署提供商:堡塔云 WAF。 - **feat**: 新增部署提供商:FlexCDN。 - **feat**: 部署到 1Panel 支持 1Panel V2 版。关闭 #695 --- <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:17 +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#1016
No description provided.