mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 10:18:38 +00:00
Refactor names (#31405)
This PR only does "renaming": * `Route` should be `Router` (and chi router is also called "router") * `Params` should be `PathParam` (to distingush it from URL query param, and to match `FormString`) * Use lower case for private functions to avoid exposing or abusing
This commit is contained in:
@@ -294,7 +294,7 @@ func GetArchive(ctx *context.APIContext) {
|
||||
}
|
||||
|
||||
func archiveDownload(ctx *context.APIContext) {
|
||||
uri := ctx.Params("*")
|
||||
uri := ctx.PathParam("*")
|
||||
aReq, err := archiver_service.NewRequest(ctx.Repo.Repository.ID, ctx.Repo.GitRepo, uri)
|
||||
if err != nil {
|
||||
if errors.Is(err, archiver_service.ErrUnknownArchiveFormat{}) {
|
||||
@@ -393,7 +393,7 @@ func GetEditorconfig(ctx *context.APIContext) {
|
||||
return
|
||||
}
|
||||
|
||||
fileName := ctx.Params("filename")
|
||||
fileName := ctx.PathParam("filename")
|
||||
def, err := ec.GetDefinitionForFilename(fileName)
|
||||
if def == nil {
|
||||
ctx.NotFound(err)
|
||||
@@ -577,7 +577,7 @@ func CreateFile(ctx *context.APIContext) {
|
||||
Files: []*files_service.ChangeRepoFile{
|
||||
{
|
||||
Operation: "create",
|
||||
TreePath: ctx.Params("*"),
|
||||
TreePath: ctx.PathParam("*"),
|
||||
ContentReader: contentReader,
|
||||
},
|
||||
},
|
||||
@@ -681,7 +681,7 @@ func UpdateFile(ctx *context.APIContext) {
|
||||
ContentReader: contentReader,
|
||||
SHA: apiOpts.SHA,
|
||||
FromTreePath: apiOpts.FromPath,
|
||||
TreePath: ctx.Params("*"),
|
||||
TreePath: ctx.PathParam("*"),
|
||||
},
|
||||
},
|
||||
Message: apiOpts.Message,
|
||||
@@ -840,7 +840,7 @@ func DeleteFile(ctx *context.APIContext) {
|
||||
{
|
||||
Operation: "delete",
|
||||
SHA: apiOpts.SHA,
|
||||
TreePath: ctx.Params("*"),
|
||||
TreePath: ctx.PathParam("*"),
|
||||
},
|
||||
},
|
||||
Message: apiOpts.Message,
|
||||
@@ -935,7 +935,7 @@ func GetContents(ctx *context.APIContext) {
|
||||
return
|
||||
}
|
||||
|
||||
treePath := ctx.Params("*")
|
||||
treePath := ctx.PathParam("*")
|
||||
ref := ctx.FormTrim("ref")
|
||||
|
||||
if fileList, err := files_service.GetContentsOrList(ctx, ctx.Repo.Repository, treePath, ref); err != nil {
|
||||
|
Reference in New Issue
Block a user