mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
4ab6fc62d2
Works in both organization and repository project boards Fixes #21846 Replaces #21963 Replaces #27117 ![image](https://github.com/user-attachments/assets/1837ace8-3de2-444f-a153-e166bd0da2c0) **Note** that implementation was made intentionally to work same as in issue list so that URL can be bookmarked for quick access with predefined filters in URL
31 lines
797 B
Go
31 lines
797 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
"code.gitea.io/gitea/services/context"
|
|
)
|
|
|
|
func HandleGitError(ctx *context.Context, msg string, err error) {
|
|
if git.IsErrNotExist(err) {
|
|
refType := ""
|
|
switch {
|
|
case ctx.Repo.IsViewBranch:
|
|
refType = "branch"
|
|
case ctx.Repo.IsViewTag:
|
|
refType = "tag"
|
|
case ctx.Repo.IsViewCommit:
|
|
refType = "commit"
|
|
}
|
|
ctx.Data["NotFoundPrompt"] = ctx.Locale.Tr("repo.tree_path_not_found_"+refType, ctx.Repo.TreePath, url.PathEscape(ctx.Repo.RefName))
|
|
ctx.Data["NotFoundGoBackURL"] = ctx.Repo.RepoLink + "/src/" + refType + "/" + url.PathEscape(ctx.Repo.RefName)
|
|
ctx.NotFound(msg, err)
|
|
} else {
|
|
ctx.ServerError(msg, err)
|
|
}
|
|
}
|