[PR #952] [MERGED] v0.4 http-01 challenge #1085

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

📋 Pull Request Information

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

Base: nextHead: dev


📝 Commits (9)

  • 4768779 refactor: certdeploy module
  • 34dd521 refactor: notify module
  • a5da1e4 feat(provider): new acme http-01 provider: ssh
  • ba37eee refactor(ui): clean code
  • c17d27c feat(ui): NotificationProviderPicker
  • fb4dd92 feat(ui): display both available and unavailable providers
  • 3d5f2f4 feat(ui): auto set provider access after pick provider
  • 9139a45 feat(ui): enhance providers select
  • b9af584 feat(ui): http-01 challenge

📊 Changes

66 files changed (+2172 additions, -1033 deletions)

View changed files

📝 cmd/intercmd.go (+1 -1)
internal/certapply/applicators/sp_ssh.go (+51 -0)
📝 internal/certapply/client_certifier.go (+3 -3)
internal/certdeploy/client.go (+25 -0)
internal/certdeploy/client_deployer.go (+49 -0)
📝 internal/certdeploy/deployers/sp_ssh.go (+11 -9)
internal/deployer/deployer.go (+0 -75)
internal/deployer/providers.go (+0 -25)
📝 internal/domain/provider.go (+1 -0)
internal/notify/client.go (+25 -0)
internal/notify/client_notifier.go (+49 -0)
internal/notify/notifier.go (+0 -75)
internal/notify/providers.go (+0 -25)
📝 internal/notify/service.go (+2 -2)
📝 internal/workflow/engine/executor_bizapply.go (+2 -2)
📝 internal/workflow/engine/executor_bizdeploy.go (+22 -13)
📝 internal/workflow/engine/executor_biznotify.go (+21 -11)
📝 pkg/core/ssl-applicator/acme-http01/providers/local/local.go (+1 -0)
pkg/core/ssl-applicator/acme-http01/providers/ssh/ssh.go (+292 -0)
📝 pkg/core/ssl-deployer/providers/ssh/ssh.go (+15 -99)

...and 46 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 支持 HTTP-01 质询。关闭 #644
  • feat: 优化提供商选择器交互。

🔄 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/952 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 9/5/2025 **Status:** ✅ Merged **Merged:** 9/5/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `next` ← **Head:** `dev` --- ### 📝 Commits (9) - [`4768779`](https://github.com/certimate-go/certimate/commit/476877991ca23aa7a70c18effc96346e73bd6e0a) refactor: certdeploy module - [`34dd521`](https://github.com/certimate-go/certimate/commit/34dd521efdff88142d0fa6174046bd176410312f) refactor: notify module - [`a5da1e4`](https://github.com/certimate-go/certimate/commit/a5da1e47af80a267f8c2ceb0b6ccc846839579e7) feat(provider): new acme http-01 provider: ssh - [`ba37eee`](https://github.com/certimate-go/certimate/commit/ba37eeedb53d485c290e0b6e9878630883b0d85f) refactor(ui): clean code - [`c17d27c`](https://github.com/certimate-go/certimate/commit/c17d27c98778a9fb70bda083f949c4e56120ed1e) feat(ui): NotificationProviderPicker - [`fb4dd92`](https://github.com/certimate-go/certimate/commit/fb4dd929cad764a702df9884159a8982980f4883) feat(ui): display both available and unavailable providers - [`3d5f2f4`](https://github.com/certimate-go/certimate/commit/3d5f2f4bfccff80905361410edb13b1a4a7b445d) feat(ui): auto set provider access after pick provider - [`9139a45`](https://github.com/certimate-go/certimate/commit/9139a45699d73f3b6e9d30e81ec9e48cb34d5eca) feat(ui): enhance providers select - [`b9af584`](https://github.com/certimate-go/certimate/commit/b9af584b4ae32b80d070acac63a0e6ce91eb6de2) feat(ui): http-01 challenge ### 📊 Changes **66 files changed** (+2172 additions, -1033 deletions) <details> <summary>View changed files</summary> 📝 `cmd/intercmd.go` (+1 -1) ➕ `internal/certapply/applicators/sp_ssh.go` (+51 -0) 📝 `internal/certapply/client_certifier.go` (+3 -3) ➕ `internal/certdeploy/client.go` (+25 -0) ➕ `internal/certdeploy/client_deployer.go` (+49 -0) 📝 `internal/certdeploy/deployers/sp_ssh.go` (+11 -9) ➖ `internal/deployer/deployer.go` (+0 -75) ➖ `internal/deployer/providers.go` (+0 -25) 📝 `internal/domain/provider.go` (+1 -0) ➕ `internal/notify/client.go` (+25 -0) ➕ `internal/notify/client_notifier.go` (+49 -0) ➖ `internal/notify/notifier.go` (+0 -75) ➖ `internal/notify/providers.go` (+0 -25) 📝 `internal/notify/service.go` (+2 -2) 📝 `internal/workflow/engine/executor_bizapply.go` (+2 -2) 📝 `internal/workflow/engine/executor_bizdeploy.go` (+22 -13) 📝 `internal/workflow/engine/executor_biznotify.go` (+21 -11) 📝 `pkg/core/ssl-applicator/acme-http01/providers/local/local.go` (+1 -0) ➕ `pkg/core/ssl-applicator/acme-http01/providers/ssh/ssh.go` (+292 -0) 📝 `pkg/core/ssl-deployer/providers/ssh/ssh.go` (+15 -99) _...and 46 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 支持 HTTP-01 质询。关闭 #644 - **feat**: 优化提供商选择器交互。 --- <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:37 +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#1085
No description provided.