c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
61 lines
1.8 KiB
Go
61 lines
1.8 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package devtest
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/templates"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/services/context"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/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)
|
|
// FIXME: MAIL-TEMPLATE-SUBJECT: only "issue" related messages support using subject from templates
|
|
subject := "(default subject)"
|
|
if tmplSubject != nil {
|
|
var buf strings.Builder
|
|
err := tmplSubject.Execute(&buf, nil)
|
|
if err != nil {
|
|
subject = "ERROR: " + err.Error()
|
|
} else {
|
|
subject = util.IfZero(buf.String(), subject)
|
|
}
|
|
}
|
|
ctx.Data["RenderMailSubject"] = subject
|
|
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")
|
|
}
|