Some checks failed
Build and Release / Create Release (push) Successful in 0s
Trigger Vault Plugin Rebuild / Trigger Vault Rebuild (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 2m48s
Build and Release / Lint (push) Failing after 5m2s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Has been skipped
Build and Release / Unit Tests (push) Successful in 5m37s
Go's semantic import versioning requires v2+ modules to include the major version in the module path. This enables using proper version tags (v3.x.x) instead of pseudo-versions. Updated module path: code.gitcaddy.com/server/v3
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package devtest
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"code.gitcaddy.com/server/v3/modules/templates"
|
|
"code.gitcaddy.com/server/v3/services/context"
|
|
"code.gitcaddy.com/server/v3/services/mailer"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
func MailPreviewRender(ctx *context.Context) {
|
|
tmplName := ctx.PathParam("*")
|
|
mockDataContent, err := templates.AssetFS().ReadFile("mail/" + tmplName + ".devtest.yml")
|
|
mockData := map[string]any{}
|
|
if err == nil {
|
|
err = yaml.Unmarshal(mockDataContent, &mockData)
|
|
if err != nil {
|
|
http.Error(ctx.Resp, "Failed to parse mock data: "+err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
mockData["locale"] = ctx.Locale
|
|
err = mailer.LoadedTemplates().BodyTemplates.ExecuteTemplate(ctx.Resp, tmplName, mockData)
|
|
if err != nil {
|
|
_, _ = ctx.Resp.Write([]byte(err.Error()))
|
|
}
|
|
}
|
|
|
|
func prepareMailPreviewRender(ctx *context.Context, tmplName string) {
|
|
tmplSubject := mailer.LoadedTemplates().SubjectTemplates.Lookup(tmplName)
|
|
if tmplSubject == nil {
|
|
ctx.Data["RenderMailSubject"] = "default subject"
|
|
} else {
|
|
var buf strings.Builder
|
|
err := tmplSubject.Execute(&buf, nil)
|
|
if err != nil {
|
|
ctx.Data["RenderMailSubject"] = err.Error()
|
|
} else {
|
|
ctx.Data["RenderMailSubject"] = buf.String()
|
|
}
|
|
}
|
|
ctx.Data["RenderMailTemplateName"] = tmplName
|
|
}
|
|
|
|
func MailPreview(ctx *context.Context) {
|
|
ctx.Data["MailTemplateNames"] = mailer.LoadedTemplates().TemplateNames
|
|
tmplName := ctx.FormString("tmpl")
|
|
if tmplName != "" {
|
|
prepareMailPreviewRender(ctx, tmplName)
|
|
}
|
|
ctx.HTML(http.StatusOK, "devtest/mail-preview")
|
|
}
|