[PR #726] [MERGED] new providers #1026

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

📋 Pull Request Information

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

Base: mainHead: feat/providers


📝 Commits (10+)

  • 71c093c refactor: clean code
  • b798b82 refactor(ui): MultipleSplitValueInput
  • 0909671 refactor: clean code
  • b139139 Merge branch 'main' into feat/providers
  • 4c13a3e feat: new acme dns-01 provider: hetzner
  • 40f4488 feat: new acme dns-01 provider: digitalocean
  • cd9dac7 feat: new acme dns-01 provider: duckdns
  • 8e23b14 feat: new notification provider: discord bot
  • e82a592 feat: new notification provider: slack bot
  • b0eb714 chore(deps): upgrade go mod dependencies

📊 Changes

127 files changed (+2507 additions, -1583 deletions)

View changed files

📝 go.mod (+23 -23)
📝 go.sum (+59 -58)
📝 internal/applicant/providers.go (+48 -1)
📝 internal/deployer/providers.go (+14 -14)
📝 internal/domain/access.go (+33 -11)
📝 internal/domain/provider.go (+10 -0)
📝 internal/notify/providers.go (+28 -0)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/aliyun-esa/internal/lego.go (+6 -4)
internal/pkg/core/applicant/acme-dns-01/lego-providers/digitalocean/digitalocean.go (+36 -0)
internal/pkg/core/applicant/acme-dns-01/lego-providers/duckdns/duckdns.go (+32 -0)
internal/pkg/core/applicant/acme-dns-01/lego-providers/hetzner/hetzner.go (+36 -0)
📝 internal/pkg/core/applicant/acme-dns-01/lego-providers/powerdns/powerdns.go (+3 -3)
📝 internal/pkg/core/deployer/providers/1panel-console/1panel_console.go (+7 -7)
📝 internal/pkg/core/deployer/providers/1panel-console/1panel_console_test.go (+5 -5)
📝 internal/pkg/core/deployer/providers/1panel-site/1panel_site.go (+8 -8)
📝 internal/pkg/core/deployer/providers/1panel-site/1panel_site_test.go (+5 -5)
📝 internal/pkg/core/deployer/providers/baotapanel-console/baotapanel_console.go (+7 -7)
📝 internal/pkg/core/deployer/providers/baotapanel-console/baotapanel_console_test.go (+5 -5)
📝 internal/pkg/core/deployer/providers/baotapanel-site/baotapanel_site.go (+7 -7)
📝 internal/pkg/core/deployer/providers/baotapanel-site/baotapanel_site_test.go (+5 -5)

...and 80 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新增 DNS-01 提供商:DigitalOcean。
  • feat: 新增 DNS-01 提供商:DuckDNS。
  • feat: 新增 DNS-01 提供商:Hetzner。
  • feat: 新增通知渠道:Discord Bot。
  • feat: 新增通知渠道:Slack Bot。
  • refactor: 优化部分代码:
    1. 前端实现 MultipleSplitValueInput 组件,减少多值输入框表单的样板代码;
    2. 后端规范化自建服务的参数命名,ApiUrlServerUrlUrl 等统一调整为 ServerUrl
    3. 迁移脚本增加示踪指示器,可更好地观测迁移进度。
  • chore: 升级 gomod & npm 依赖项。

🔄 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/726 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 5/26/2025 **Status:** ✅ Merged **Merged:** 5/26/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `feat/providers` --- ### 📝 Commits (10+) - [`71c093c`](https://github.com/certimate-go/certimate/commit/71c093c042dc008928711a13f43e92bb13a3d309) refactor: clean code - [`b798b82`](https://github.com/certimate-go/certimate/commit/b798b824dbdea7d4dac581c7b976927429fcf8eb) refactor(ui): MultipleSplitValueInput - [`0909671`](https://github.com/certimate-go/certimate/commit/0909671be65fdf23025280fdef507b49ca3e0d6c) refactor: clean code - [`b139139`](https://github.com/certimate-go/certimate/commit/b139139f5015d2025b23e8e867ba678b928bdd9e) Merge branch 'main' into feat/providers - [`4c13a3e`](https://github.com/certimate-go/certimate/commit/4c13a3e86ad54d29d8ae7bd272bad36edb387005) feat: new acme dns-01 provider: hetzner - [`40f4488`](https://github.com/certimate-go/certimate/commit/40f4488009db60b768f35026a9dffcbb615c1b0a) feat: new acme dns-01 provider: digitalocean - [`cd9dac7`](https://github.com/certimate-go/certimate/commit/cd9dac776551db29ee8e3968e8dadcf5a0cd67fa) feat: new acme dns-01 provider: duckdns - [`8e23b14`](https://github.com/certimate-go/certimate/commit/8e23b14bf37612aaa4f82255f1ce0b7cd2724fd6) feat: new notification provider: discord bot - [`e82a592`](https://github.com/certimate-go/certimate/commit/e82a59289b2537ee3ee31c24a1823c9e5bb4033e) feat: new notification provider: slack bot - [`b0eb714`](https://github.com/certimate-go/certimate/commit/b0eb71421f8e50fb7e6120454581e48fdf4719a7) chore(deps): upgrade go mod dependencies ### 📊 Changes **127 files changed** (+2507 additions, -1583 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+23 -23) 📝 `go.sum` (+59 -58) 📝 `internal/applicant/providers.go` (+48 -1) 📝 `internal/deployer/providers.go` (+14 -14) 📝 `internal/domain/access.go` (+33 -11) 📝 `internal/domain/provider.go` (+10 -0) 📝 `internal/notify/providers.go` (+28 -0) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/aliyun-esa/internal/lego.go` (+6 -4) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/digitalocean/digitalocean.go` (+36 -0) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/duckdns/duckdns.go` (+32 -0) ➕ `internal/pkg/core/applicant/acme-dns-01/lego-providers/hetzner/hetzner.go` (+36 -0) 📝 `internal/pkg/core/applicant/acme-dns-01/lego-providers/powerdns/powerdns.go` (+3 -3) 📝 `internal/pkg/core/deployer/providers/1panel-console/1panel_console.go` (+7 -7) 📝 `internal/pkg/core/deployer/providers/1panel-console/1panel_console_test.go` (+5 -5) 📝 `internal/pkg/core/deployer/providers/1panel-site/1panel_site.go` (+8 -8) 📝 `internal/pkg/core/deployer/providers/1panel-site/1panel_site_test.go` (+5 -5) 📝 `internal/pkg/core/deployer/providers/baotapanel-console/baotapanel_console.go` (+7 -7) 📝 `internal/pkg/core/deployer/providers/baotapanel-console/baotapanel_console_test.go` (+5 -5) 📝 `internal/pkg/core/deployer/providers/baotapanel-site/baotapanel_site.go` (+7 -7) 📝 `internal/pkg/core/deployer/providers/baotapanel-site/baotapanel_site_test.go` (+5 -5) _...and 80 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新增 DNS-01 提供商:DigitalOcean。 - **feat**: 新增 DNS-01 提供商:DuckDNS。 - **feat**: 新增 DNS-01 提供商:Hetzner。 - **feat**: 新增通知渠道:Discord Bot。 - **feat**: 新增通知渠道:Slack Bot。 - **refactor**: 优化部分代码: 1. 前端实现 MultipleSplitValueInput 组件,减少多值输入框表单的样板代码; 2. 后端规范化自建服务的参数命名,`ApiUrl`、`ServerUrl`、`Url` 等统一调整为 `ServerUrl`; 3. 迁移脚本增加示踪指示器,可更好地观测迁移进度。 - **chore**: 升级 gomod & npm 依赖项。 --- <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:20 +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#1026
No description provided.