9a5720e8ad
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
Universal: PR Check / Branch Policy (pull_request) Has been cancelled
PR RC Release / Build RC Release (pull_request) Has been cancelled
Universal: PR Check / Validate PR (pull_request) Has been cancelled
Branch Cleanup / Delete merged branch (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
53 lines
1.6 KiB
Go
53 lines
1.6 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/services/context"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/services/forms"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/services/repository/files"
|
|
)
|
|
|
|
func NewDiffPatch(ctx *context.Context) {
|
|
prepareEditorPage(ctx, "_diffpatch")
|
|
if ctx.Written() {
|
|
return
|
|
}
|
|
|
|
ctx.Data["PageIsPatch"] = true
|
|
ctx.Data["CodeEditorConfig"] = CodeEditorConfig{Filename: "diff.patch"}
|
|
ctx.HTML(http.StatusOK, tplPatchFile)
|
|
}
|
|
|
|
// NewDiffPatchPost response for sending patch page
|
|
func NewDiffPatchPost(ctx *context.Context) {
|
|
parsed := prepareEditorCommitSubmittedForm[*forms.EditRepoFileForm](ctx)
|
|
if ctx.Written() {
|
|
return
|
|
}
|
|
|
|
defaultCommitMessage := ctx.Locale.TrString("repo.editor.patch")
|
|
_, err := files.ApplyDiffPatch(ctx, ctx.Repo.Repository, ctx.Doer, &files.ApplyDiffPatchOptions{
|
|
LastCommitID: parsed.form.LastCommit,
|
|
OldBranch: parsed.OldBranchName,
|
|
NewBranch: parsed.NewBranchName,
|
|
Message: parsed.GetCommitMessage(defaultCommitMessage),
|
|
Content: strings.ReplaceAll(parsed.form.Content.Value(), "\r\n", "\n"),
|
|
Author: parsed.GitCommitter,
|
|
Committer: parsed.GitCommitter,
|
|
})
|
|
if err != nil {
|
|
err = util.ErrorWrapTranslatable(err, "repo.editor.fail_to_apply_patch")
|
|
}
|
|
if err != nil {
|
|
editorHandleFileOperationError(ctx, parsed.NewBranchName, err)
|
|
return
|
|
}
|
|
redirectForCommitChoice(ctx, parsed, parsed.form.TreePath)
|
|
}
|