From e79bc3422570d6a2f6f09a16eb501ee311b0c5e4 Mon Sep 17 00:00:00 2001 From: 474420502 <474420502@qq.com> Date: Sun, 7 Apr 2024 18:12:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AD=A5=E6=A1=86=E6=9E=B6=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 35 ++++ go.sum | 94 +++++++++ .../internal/handlers/action_routes_gen.go | 18 ++ server/app/internal/handlers/actions/auth.go | 92 +++++++++ .../internal/handlers/actions/types_gen.go | 57 ++++++ .../internal/handlers/gen_action_routes.tpl | 14 ++ .../handlers/gen_action_routes_test.go | 193 ++++++++++++++++++ server/app/internal/handlers/types_gen.tpl | 9 + server/app/main.go | 27 +++ server/app/main_test.go | 7 + 10 files changed, 546 insertions(+) create mode 100644 go.mod create mode 100644 go.sum create mode 100644 server/app/internal/handlers/action_routes_gen.go create mode 100644 server/app/internal/handlers/actions/auth.go create mode 100644 server/app/internal/handlers/actions/types_gen.go create mode 100644 server/app/internal/handlers/gen_action_routes.tpl create mode 100644 server/app/internal/handlers/gen_action_routes_test.go create mode 100644 server/app/internal/handlers/types_gen.tpl create mode 100644 server/app/main.go create mode 100644 server/app/main_test.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b5a34ae --- /dev/null +++ b/go.mod @@ -0,0 +1,35 @@ +module github.com/iapologizewhenimwrong/Vestmore_GO + +go 1.22.1 + +require github.com/gin-gonic/gin v1.9.1 + +require ( + github.com/bytedance/sonic v1.9.1 // indirect + github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect + github.com/gabriel-vasile/mimetype v1.4.2 // indirect + github.com/gin-contrib/sse v0.1.0 // indirect + github.com/go-playground/locales v0.14.1 // indirect + github.com/go-playground/universal-translator v0.18.1 // indirect + github.com/go-playground/validator/v10 v10.14.0 // indirect + github.com/goccy/go-json v0.10.2 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/cpuid/v2 v2.2.4 // indirect + github.com/kr/text v0.2.0 // indirect + github.com/leodido/go-urn v1.2.4 // indirect + github.com/mattn/go-isatty v0.0.19 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect + github.com/pelletier/go-toml/v2 v2.0.8 // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect + github.com/ugorji/go/codec v1.2.11 // indirect + golang.org/x/arch v0.3.0 // indirect + golang.org/x/crypto v0.22.0 // indirect + golang.org/x/net v0.24.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/text v0.14.0 // indirect + google.golang.org/protobuf v1.30.0 // indirect + gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..b983ebf --- /dev/null +++ b/go.sum @@ -0,0 +1,94 @@ +github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM= +github.com/bytedance/sonic v1.9.1 h1:6iJ6NqdoxCDr6mbY8h18oSO+cShGSMRGCEo7F2h0x8s= +github.com/bytedance/sonic v1.9.1/go.mod h1:i736AoUSYt75HyZLoJW9ERYxcy6eaN6h4BZXU064P/U= +github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY= +github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 h1:qSGYFH7+jGhDF8vLC+iwCD4WpbV1EBDSzWkJODFLams= +github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311/go.mod h1:b583jCggY9gE99b6G5LEC39OIiVsWj+R97kbl5odCEk= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU= +github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA= +github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= +github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg= +github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU= +github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= +github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js= +github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= +github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= +github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= +github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4= +github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= +github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ= +github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY= +github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= +github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= +github.com/ugorji/go/codec v1.2.11/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= +golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= +golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k= +golang.org/x/arch v0.3.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= +golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/server/app/internal/handlers/action_routes_gen.go b/server/app/internal/handlers/action_routes_gen.go new file mode 100644 index 0000000..382082a --- /dev/null +++ b/server/app/internal/handlers/action_routes_gen.go @@ -0,0 +1,18 @@ +package handlers + +import ( + "github.com/gin-gonic/gin" + "github.com/iapologizewhenimwrong/Vestmore_GO/server/app/internal/handlers/actions" +) + +var HandlersFuncRoutes map[string]gin.HandlerFunc = make(map[string]gin.HandlerFunc) + +func init() { + HandlersFuncRoutes["account/forgetSmsCode"] = actions.AccountForgetSmsCode + HandlersFuncRoutes["account/loginWithEmailPassword"] = actions.AccountLoginWithEmailPassword + HandlersFuncRoutes["account/loginWithTelephonePassword"] = actions.AccountLoginWithTelephonePassword + HandlersFuncRoutes["account/registerEmailCode"] = actions.AccountRegisterEmailCode + HandlersFuncRoutes["account/registerSmsCode"] = actions.AccountRegisterSmsCode + HandlersFuncRoutes["base/getToken"] = actions.BaseGetToken + HandlersFuncRoutes["member/alterPassword"] = actions.MemberAlterPassword +} diff --git a/server/app/internal/handlers/actions/auth.go b/server/app/internal/handlers/actions/auth.go new file mode 100644 index 0000000..0714896 --- /dev/null +++ b/server/app/internal/handlers/actions/auth.go @@ -0,0 +1,92 @@ +package actions + +import ( + "log" + + "github.com/gin-gonic/gin" +) + +// @Action base/getToken +// Base_GetToken +// action: string; +// app_market: string; +// lang: string; +// token: string; +func BaseGetToken(ctx *gin.Context) { + param := &BaseGetTokenParam{} + ctx.ShouldBind(param) + log.Println() +} + +// @Action account/loginWithTelephonePassword +// AccountLoginWithTelephonePassword +// action: string; +// country_code: string; +// device?: string; +// lang: string; +// password: string; +// telephone: string; +// token?: string; +// version?: string; +func AccountLoginWithTelephonePassword(ctx *gin.Context) { + // ctx.ShouldBind() + log.Println() +} + +// @Action account/registerSmsCode +// AccountRegisterSmsCode +// action: string; +// country_code?: string; +// telephone?: string; +// token: string; +func AccountRegisterSmsCode(ctx *gin.Context) { + // ctx.ShouldBind() + log.Println() +} + +// @Action account/forgetSmsCode +// AccountForgetSmsCode +// action: string; +// country_code?: string; +// telephone?: string; +// token: string; +func AccountForgetSmsCode(ctx *gin.Context) { + // ctx.ShouldBind() + log.Println() +} + +// @Action account/registerEmailCode +// AccountRegisterEmailCode +// action: string; +// email?: string; +// token: string; +func AccountRegisterEmailCode(ctx *gin.Context) { + // ctx.ShouldBind() + log.Println() +} + +// @Action member/alterPassword +// MemberAlterPassword +// action: string; +// confirm_password: string; +// new_password: string; +// old_password: string; +// token?: string; +func MemberAlterPassword(ctx *gin.Context) { + // ctx.ShouldBind() + log.Println() +} + +// @Action account/loginWithEmailPassword +// AccountLoginWithEmailPassword +// action: string; +// device?: string; +// email: string; +// lang: string; +// password: string; +// token?: string; +// version?: string; +func AccountLoginWithEmailPassword(ctx *gin.Context) { + // ctx.ShouldBind() + log.Println() +} diff --git a/server/app/internal/handlers/actions/types_gen.go b/server/app/internal/handlers/actions/types_gen.go new file mode 100644 index 0000000..ba373ee --- /dev/null +++ b/server/app/internal/handlers/actions/types_gen.go @@ -0,0 +1,57 @@ +package actions + +type AccountForgetSmsCodeParam struct { + Action string `json:"action" form:"action" binding:"-"` + CountryCode string `json:"country_code" form:"country_code" binding:"required"` + Telephone string `json:"telephone" form:"telephone" binding:"required"` + Token string `json:"token" form:"token" binding:"-"` +} + +type AccountLoginWithEmailPasswordParam struct { + Action string `json:"action" form:"action" binding:"-"` + Device string `json:"device" form:"device" binding:"required"` + Email string `json:"email" form:"email" binding:"-"` + Lang string `json:"lang" form:"lang" binding:"-"` + Password string `json:"password" form:"password" binding:"-"` + Token string `json:"token" form:"token" binding:"required"` + Version string `json:"version" form:"version" binding:"required"` +} + +type AccountLoginWithTelephonePasswordParam struct { + Action string `json:"action" form:"action" binding:"-"` + CountryCode string `json:"country_code" form:"country_code" binding:"-"` + Device string `json:"device" form:"device" binding:"required"` + Lang string `json:"lang" form:"lang" binding:"-"` + Password string `json:"password" form:"password" binding:"-"` + Telephone string `json:"telephone" form:"telephone" binding:"-"` + Token string `json:"token" form:"token" binding:"required"` + Version string `json:"version" form:"version" binding:"required"` +} + +type AccountRegisterEmailCodeParam struct { + Action string `json:"action" form:"action" binding:"-"` + Email string `json:"email" form:"email" binding:"required"` + Token string `json:"token" form:"token" binding:"-"` +} + +type AccountRegisterSmsCodeParam struct { + Action string `json:"action" form:"action" binding:"-"` + CountryCode string `json:"country_code" form:"country_code" binding:"required"` + Telephone string `json:"telephone" form:"telephone" binding:"required"` + Token string `json:"token" form:"token" binding:"-"` +} + +type BaseGetTokenParam struct { + Action string `json:"action" form:"action" binding:"-"` + AppMarket string `json:"app_market" form:"app_market" binding:"-"` + Lang string `json:"lang" form:"lang" binding:"-"` + Token string `json:"token" form:"token" binding:"-"` +} + +type MemberAlterPasswordParam struct { + Action string `json:"action" form:"action" binding:"-"` + ConfirmPassword string `json:"confirm_password" form:"confirm_password" binding:"-"` + NewPassword string `json:"new_password" form:"new_password" binding:"-"` + OldPassword string `json:"old_password" form:"old_password" binding:"-"` + Token string `json:"token" form:"token" binding:"required"` +} diff --git a/server/app/internal/handlers/gen_action_routes.tpl b/server/app/internal/handlers/gen_action_routes.tpl new file mode 100644 index 0000000..32f7f56 --- /dev/null +++ b/server/app/internal/handlers/gen_action_routes.tpl @@ -0,0 +1,14 @@ +package handlers + +import ( + "github.com/gin-gonic/gin" + "github.com/iapologizewhenimwrong/Vestmore_GO/server/app/internal/handlers/actions" +) + +var HandlersFuncRoutes map[string]gin.HandlerFunc = make(map[string]gin.HandlerFunc) + +func init() { +{{- range .}} + HandlersFuncRoutes["{{.ActionName}}"] = actions.{{.FuncName}} +{{- end}} +} \ No newline at end of file diff --git a/server/app/internal/handlers/gen_action_routes_test.go b/server/app/internal/handlers/gen_action_routes_test.go new file mode 100644 index 0000000..2d53b15 --- /dev/null +++ b/server/app/internal/handlers/gen_action_routes_test.go @@ -0,0 +1,193 @@ +package handlers + +import ( + "bytes" + "fmt" + "go/ast" + "go/format" + "go/parser" + "go/token" + "log" + "os" + "path/filepath" + "regexp" + "strings" + "testing" + "text/template" + "unicode" +) + +func TestGenActionsHandlerFunc(t *testing.T) { + createActionRoutesGen() +} + +// 生成路由代码 +func createActionRoutesGen() { + var err error + af := getActionsInfo() + tpl, err := template.ParseGlob("./*.tpl") + if err != nil { + panic(err) + } + + genFile(tpl, "gen_action_routes.tpl", "./action_routes_gen.go", af) + genFile(tpl, "types_gen.tpl", "./actions/types_gen.go", af) +} + +func genFile(tpl *template.Template, executeTemplate string, genFilePath string, tplParam any) { + + var buf bytes.Buffer + err := tpl.ExecuteTemplate(&buf, executeTemplate, tplParam) + if err != nil { + panic(err) + } + + data, err := format.Source(buf.Bytes()) + if err != nil { + panic(err) + } + + log.Println(string(data)) + + f, err := os.OpenFile(genFilePath, os.O_TRUNC|os.O_WRONLY|os.O_CREATE, 0644) + if err != nil { + panic(err) + } + + f.Write(data) + f.Close() +} + +type actionsFunc struct { + ActionName string + FuncName string + ParamStruct *paramStruct +} + +type paramStructField struct { + ParamName string + ParamNameCamel string + ParamType string + ParamBinding string +} + +type paramStruct struct { + ParamStructName string + ParamFields []paramStructField +} + +func getActionsInfo() map[string]*actionsFunc { + regActionRe := regexp.MustCompile(`(?i)action +([^ ]+)`) + paramStructRe := regexp.MustCompile(` +([a-zA-Z_\-/]+)(\?{0,1}): +(\w+) ?;`) + + dir := "actions" + actionsMap := make(map[string]*actionsFunc) + + err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + + if !info.IsDir() && strings.HasSuffix(info.Name(), ".go") { + fset := token.NewFileSet() + + file, err := parser.ParseFile(fset, path, nil, parser.ParseComments) + if err != nil { + return err + } + + for _, decl := range file.Decls { + fn, ok := decl.(*ast.FuncDecl) + if !ok { + continue + } + + if fn.Doc != nil { + var pstru *paramStruct + var af *actionsFunc + for _, comment := range fn.Doc.List { + // 匹配 @Action 提取 + if strings.Contains(comment.Text, "@Action") || strings.Contains(comment.Text, "@action") { + matches := regActionRe.FindStringSubmatch(comment.Text) + if len(matches) != 0 { + af = &actionsFunc{ + ActionName: matches[1], + FuncName: fn.Name.Name, + } + actionsMap[af.ActionName] = af + } else { + log.Panicf("action 无法匹配: %s", comment.Text) + } + continue + } + + psvalue := paramStructRe.FindAllStringSubmatch(comment.Text, -1) + if len(psvalue) != 0 { + + if pstru == nil { + pstru = ¶mStruct{ + ParamStructName: fn.Name.Name + "Param", + } + af.ParamStruct = pstru + } + + pf := paramStructField{} + + paramInfo := psvalue[0] + + pf.ParamName = paramInfo[1] + pf.ParamNameCamel = toCamelCase(pf.ParamName) + + paramRequired := paramInfo[2] + if paramRequired != "" { + pf.ParamBinding = "required" + } else { + pf.ParamBinding = "-" + } + + pf.ParamType = paramInfo[3] + + pstru.ParamFields = append(pstru.ParamFields, pf) + } + } + } + } + } + + return nil + }) + + if err != nil { + panic(fmt.Sprint("Error:", err)) + // return actionsMap + } + + for action, funcNames := range actionsMap { + fmt.Printf("Action: %s %v\n", action, funcNames) + } + + return actionsMap +} + +func TestCase2(t *testing.T) { + eg := `// device: string;` + re := regexp.MustCompile(` +([a-zA-Z_\-/]+)(\?{0,1}): +(\w+) ?;`) + vs := re.FindAllStringSubmatch(eg, -1) + log.Println(vs) +} + +func toCamelCase(s string) string { + var sb strings.Builder + capitalizeNext := true + for _, r := range s { + if r == '_' || r == '/' || r == '-' { + capitalizeNext = true + } else if capitalizeNext { + sb.WriteRune(unicode.ToUpper(r)) + capitalizeNext = false + } else { + sb.WriteRune(unicode.ToLower(r)) + } + } + return sb.String() +} diff --git a/server/app/internal/handlers/types_gen.tpl b/server/app/internal/handlers/types_gen.tpl new file mode 100644 index 0000000..82d6b54 --- /dev/null +++ b/server/app/internal/handlers/types_gen.tpl @@ -0,0 +1,9 @@ +package actions + +{{- range .}} +type {{.ParamStruct.ParamStructName}} struct { + {{- range .ParamStruct.ParamFields}} + {{.ParamNameCamel}} {{.ParamType}} `json:"{{.ParamName}}" form:"{{.ParamName}}" binding:"{{.ParamBinding}}"` + {{- end}} +} +{{end}} \ No newline at end of file diff --git a/server/app/main.go b/server/app/main.go new file mode 100644 index 0000000..c4c53fa --- /dev/null +++ b/server/app/main.go @@ -0,0 +1,27 @@ +package main + +import ( + "log" + + "github.com/gin-gonic/gin" + "github.com/iapologizewhenimwrong/Vestmore_GO/server/app/internal/handlers" +) + +func AppV10(ctx *gin.Context) { + if actionKey, ok := ctx.GetPostForm("action"); ok { + handlers.HandlersFuncRoutes[actionKey](ctx) + } +} + +func main() { + r := gin.Default() + v10 := r.Group("app") + + v10.POST("/1_0", AppV10) + + for k := range handlers.HandlersFuncRoutes { + log.Printf("api %s", k) + } + + r.Run(":8080") +} diff --git a/server/app/main_test.go b/server/app/main_test.go new file mode 100644 index 0000000..ef64976 --- /dev/null +++ b/server/app/main_test.go @@ -0,0 +1,7 @@ +package main + +import "testing" + +func TestMain(t *testing.T) { + main() +}