summaryrefslogtreecommitdiffstats
path: root/routers/private
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2022-12-12 16:09:26 +0800
committerGitHub <noreply@github.com>2022-12-12 16:09:26 +0800
commit6398ca745aabdc40f10465e71da99c5a3866990e (patch)
treec990402874826edd10ff6f31cfcdc9709b795e80 /routers/private
parent003b4e209ce27e21e68b6a48ad2a7f6a1bcb17fb (diff)
downloadgitea-6398ca745aabdc40f10465e71da99c5a3866990e.tar.gz
gitea-6398ca745aabdc40f10465e71da99c5a3866990e.zip
refactor bind functions based on generics (#22055)
Diffstat (limited to 'routers/private')
-rw-r--r--routers/private/internal.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/routers/private/internal.go b/routers/private/internal.go
index d5c85480a7..306e4ffb00 100644
--- a/routers/private/internal.go
+++ b/routers/private/internal.go
@@ -6,7 +6,6 @@ package private
import (
"net/http"
- "reflect"
"strings"
"code.gitea.io/gitea/modules/context"
@@ -39,13 +38,9 @@ func CheckInternalToken(next http.Handler) http.Handler {
}
// bind binding an obj to a handler
-func bind(obj interface{}) http.HandlerFunc {
- tp := reflect.TypeOf(obj)
- for tp.Kind() == reflect.Ptr {
- tp = tp.Elem()
- }
+func bind[T any](obj T) http.HandlerFunc {
return web.Wrap(func(ctx *context.PrivateContext) {
- theObj := reflect.New(tp).Interface() // create a new form obj for every request but not use obj directly
+ theObj := new(T) // create a new form obj for every request but not use obj directly
binding.Bind(ctx.Req, theObj)
web.SetForm(ctx, theObj)
})