[PR #1166] [MERGED] new providers #1161

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/1166
Author: @fudiwei
Created: 1/16/2026
Status: Merged
Merged: 1/19/2026
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (7)

  • 24e2770 feat(provider): support custom message payload for some notifiers (dingtalkbot, larkbot and wecombot)
  • fd536ef feat: add preset webhook data for messagenest, wxpush and pushme
  • cd74658 feat(provider): new deployment provider: s3
  • e409a8c chore(deps): minor go-acme/lego
  • 0299044 chore(i18n): improve i18n
  • c77d480 chore(i18n): improve i18n
  • 553aa1d feat(provider): support updating certificate on deployment to ratpanel

📊 Changes

64 files changed (+1480 additions, -894 deletions)

View changed files

📝 go.mod (+8 -7)
📝 go.sum (+14 -12)
📝 internal/certificate/service.go (+3 -3)
📝 internal/certmgmt/deployers/sp_ratpanel.go (+1 -0)
internal/certmgmt/deployers/sp_s3.go (+40 -0)
📝 internal/domain/access.go (+8 -5)
📝 internal/domain/certificate.go (+8 -0)
📝 internal/domain/provider.go (+1 -0)
📝 internal/notify/notifiers/sp_dingtalkbot.go (+3 -2)
📝 internal/notify/notifiers/sp_larkbot.go (+3 -2)
📝 internal/notify/notifiers/sp_wecombot.go (+2 -1)
📝 internal/tools/s3/client.go (+13 -2)
📝 pkg/core/certifier/challengers/dns01/35cn/35cn.go (+4 -3)
pkg/core/certifier/challengers/dns01/35cn/internal/client.go (+0 -230)
pkg/core/certifier/challengers/dns01/35cn/internal/lego.go (+0 -156)
📝 pkg/core/certifier/challengers/dns01/dynv6/dynv6.go (+0 -0)
pkg/core/certifier/challengers/dns01/jdcloud/internal/client.go (+0 -94)
pkg/core/certifier/challengers/dns01/jdcloud/internal/lego.go (+0 -199)
📝 pkg/core/certifier/challengers/dns01/jdcloud/jdcloud.go (+5 -4)
📝 pkg/core/certifier/challengers/dns01/xinnet/xinnet.go (+0 -0)

...and 44 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增部署提供商:上传到 S3 兼容的对象存储服务。关闭 #1163
  • feat: 部署到耗子面板时支持替换指定证书。
  • feat: 通知渠道中钉钉群机器人、飞书群机器人、企业微信群机器人等可自定义消息结构。关闭 #1156
  • feat: 通知渠道中 Webhook 新增 MessageNest、WXPush、PushMe 等预设模板。

🔄 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/1166 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 1/16/2026 **Status:** ✅ Merged **Merged:** 1/19/2026 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (7) - [`24e2770`](https://github.com/certimate-go/certimate/commit/24e2770a0b26f5904000ae10d3f3ed45563088a2) feat(provider): support custom message payload for some notifiers (dingtalkbot, larkbot and wecombot) - [`fd536ef`](https://github.com/certimate-go/certimate/commit/fd536eff85201e3850bfe6f8eacefccdc71f923c) feat: add preset webhook data for messagenest, wxpush and pushme - [`cd74658`](https://github.com/certimate-go/certimate/commit/cd746580792467ac5615588982213dfa314b1445) feat(provider): new deployment provider: s3 - [`e409a8c`](https://github.com/certimate-go/certimate/commit/e409a8caa030ca5d02157a922724b3daf406294d) chore(deps): minor go-acme/lego - [`0299044`](https://github.com/certimate-go/certimate/commit/0299044ab63ef0e8f10335003e202f617a1bcd8f) chore(i18n): improve i18n - [`c77d480`](https://github.com/certimate-go/certimate/commit/c77d480bdc117be3097b6860bf1da2b7fb461d41) chore(i18n): improve i18n - [`553aa1d`](https://github.com/certimate-go/certimate/commit/553aa1d600e19ca27091c2f43155b2f201d4a298) feat(provider): support updating certificate on deployment to ratpanel ### 📊 Changes **64 files changed** (+1480 additions, -894 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+8 -7) 📝 `go.sum` (+14 -12) 📝 `internal/certificate/service.go` (+3 -3) 📝 `internal/certmgmt/deployers/sp_ratpanel.go` (+1 -0) ➕ `internal/certmgmt/deployers/sp_s3.go` (+40 -0) 📝 `internal/domain/access.go` (+8 -5) 📝 `internal/domain/certificate.go` (+8 -0) 📝 `internal/domain/provider.go` (+1 -0) 📝 `internal/notify/notifiers/sp_dingtalkbot.go` (+3 -2) 📝 `internal/notify/notifiers/sp_larkbot.go` (+3 -2) 📝 `internal/notify/notifiers/sp_wecombot.go` (+2 -1) 📝 `internal/tools/s3/client.go` (+13 -2) 📝 `pkg/core/certifier/challengers/dns01/35cn/35cn.go` (+4 -3) ➖ `pkg/core/certifier/challengers/dns01/35cn/internal/client.go` (+0 -230) ➖ `pkg/core/certifier/challengers/dns01/35cn/internal/lego.go` (+0 -156) 📝 `pkg/core/certifier/challengers/dns01/dynv6/dynv6.go` (+0 -0) ➖ `pkg/core/certifier/challengers/dns01/jdcloud/internal/client.go` (+0 -94) ➖ `pkg/core/certifier/challengers/dns01/jdcloud/internal/lego.go` (+0 -199) 📝 `pkg/core/certifier/challengers/dns01/jdcloud/jdcloud.go` (+5 -4) 📝 `pkg/core/certifier/challengers/dns01/xinnet/xinnet.go` (+0 -0) _...and 44 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增部署提供商:上传到 S3 兼容的对象存储服务。关闭 #1163 - **feat**: 部署到耗子面板时支持替换指定证书。 - **feat**: 通知渠道中钉钉群机器人、飞书群机器人、企业微信群机器人等可自定义消息结构。关闭 #1156 - **feat**: 通知渠道中 Webhook 新增 MessageNest、WXPush、PushMe 等预设模板。 --- <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:58 +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#1161
No description provided.