From a437eaf608506c8e036ff93fb4258a51470ac245 Mon Sep 17 00:00:00 2001 From: Wangjunqi123 Date: Fri, 14 Jun 2024 17:17:58 +0800 Subject: [PATCH] template: add handler/logger/signal module --- template/server/global/file.go | 43 ++++++++++ template/server/global/globalConst.go | 5 ++ template/server/go.mod | 40 ++++++++- template/server/go.sum | 109 ++++++++++++++++++++++++ template/server/handler/handle.go | 31 +++++++ template/server/handler/router.go | 46 ++++++++++ template/server/handler/static.go | 28 ++++++ template/server/handler/staticPro.go | 46 ++++++++++ template/server/logger/sdkLogger.go | 16 ++++ template/server/main.go | 35 +++++++- template/server/signal/signalMonitor.go | 24 ++++++ 11 files changed, 420 insertions(+), 3 deletions(-) create mode 100755 template/server/global/file.go create mode 100755 template/server/global/globalConst.go create mode 100644 template/server/go.sum create mode 100644 template/server/handler/handle.go create mode 100644 template/server/handler/router.go create mode 100644 template/server/handler/static.go create mode 100644 template/server/handler/staticPro.go create mode 100644 template/server/logger/sdkLogger.go create mode 100644 template/server/signal/signalMonitor.go diff --git a/template/server/global/file.go b/template/server/global/file.go new file mode 100755 index 00000000..f9283daa --- /dev/null +++ b/template/server/global/file.go @@ -0,0 +1,43 @@ +package global + +import ( + "io" + "os" + + "github.com/pkg/errors" +) + +func FileReadString(filePath string) (string, error) { + content, err := os.ReadFile(filePath) + if err != nil { + return "", errors.New(err.Error()) + } + + return string(content), nil +} + +func FileReadBytes(filePath string) ([]byte, error) { + f, err := os.Open(filePath) + if err != nil { + return nil, errors.New(err.Error()) + } + defer f.Close() + + var content []byte + readbuff := make([]byte, 1024*4) + for { + n, err := f.Read(readbuff) + if err != nil { + if err == io.EOF { + if n != 0 { + content = append(content, readbuff[:n]...) + } + break + } + return nil, errors.New(err.Error()) + } + content = append(content, readbuff[:n]...) + } + + return content, nil +} diff --git a/template/server/global/globalConst.go b/template/server/global/globalConst.go new file mode 100755 index 00000000..5de34e5c --- /dev/null +++ b/template/server/global/globalConst.go @@ -0,0 +1,5 @@ +package global + +func init() { + +} diff --git a/template/server/go.mod b/template/server/go.mod index 0d501559..7bce3c62 100644 --- a/template/server/go.mod +++ b/template/server/go.mod @@ -1,3 +1,41 @@ -module template +module gitee.com/openeuler/PilotGo-plugin-template go 1.20 + +require ( + gitee.com/openeuler/PilotGo/sdk v0.0.0-20240614022520-bf4ab338cbeb + github.com/gin-gonic/gin v1.9.1 + github.com/pkg/errors v0.9.1 + gopkg.in/yaml.v2 v2.4.0 +) + +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.1 // 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/pretty v0.3.1 // indirect + github.com/leodido/go-urn v1.2.4 // indirect + github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect + github.com/lestrrat-go/strftime v1.0.6 // 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/pelletier/go-toml/v2 v2.1.0 // indirect + github.com/sirupsen/logrus v1.9.3 // 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.13.0 // indirect + golang.org/x/net v0.15.0 // indirect + golang.org/x/sys v0.12.0 // indirect + golang.org/x/text v0.13.0 // indirect + google.golang.org/protobuf v1.31.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) diff --git a/template/server/go.sum b/template/server/go.sum new file mode 100644 index 00000000..16b17f68 --- /dev/null +++ b/template/server/go.sum @@ -0,0 +1,109 @@ +gitee.com/openeuler/PilotGo/sdk v0.0.0-20240614022520-bf4ab338cbeb h1:Oh30GyGojK4+JPraBFce7u+qs6lAKluHLTL6lVMQqik= +gitee.com/openeuler/PilotGo/sdk v0.0.0-20240614022520-bf4ab338cbeb/go.mod h1:87giU5v2IkUx78GRfezNBHhDGqzlwhNICOVY+hUYSJM= +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/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.1 h1:9c50NUPC30zyuKprjL3vNZ0m5oG+jU0zvx4AqHGnv4k= +github.com/go-playground/validator/v10 v10.14.1/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/jonboulle/clockwork v0.4.0 h1:p4Cf1aMWXnXAUh8lVfewRBx1zaTSYKrKMF2g3ST4RZ4= +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/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +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/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc h1:RKf14vYWi2ttpEmkA4aQ3j4u9dStX2t4M8UM6qqNsG8= +github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc/go.mod h1:kopuH9ugFRkIXf3YoqHKyrJ9YfUFsckUU9S7B+XP+is= +github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkLibYKgg+SwmyFU9dF2hn6MdTj4= +github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible/go.mod h1:ZQnN8lSECaebrkQytbHj4xNgtg8CR7RYXnPok8e0EHA= +github.com/lestrrat-go/strftime v1.0.6 h1:CFGsDEt1pOpFNU+TJB0nhz9jl+K0hZSLE205AhTIGQQ= +github.com/lestrrat-go/strftime v1.0.6/go.mod h1:f7jQKgV5nnJpYgdEasS+/y7EsTb8ykN2z68n3TtcTaw= +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/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= +github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +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/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +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.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/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.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +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.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= +google.golang.org/protobuf v1.31.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-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +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/template/server/handler/handle.go b/template/server/handler/handle.go new file mode 100644 index 00000000..6dd12d42 --- /dev/null +++ b/template/server/handler/handle.go @@ -0,0 +1,31 @@ +package handler + +import ( + "gitee.com/openeuler/PilotGo/sdk/logger" + "gitee.com/openeuler/PilotGo/sdk/response" + "github.com/gin-gonic/gin" +) + +func DoSomethingHandle(ctx *gin.Context) { + query := &response.PaginationQ{} + err := ctx.ShouldBindQuery(query) + if err != nil || (query.PageSize == 0 && query.Page == 0) { + logger.Warn(err.Error()) + response.Fail(ctx, nil, err.Error()) + return + } + + // condition: 1 成功响应 2 失败响应 3 翻页查询响应 + condition := 1 + switch condition { + case 1: + response.Success(ctx, nil, "") + case 2: + response.Fail(ctx, nil, "") + return + default: + results := []string{} + total := 0 + response.DataPagination(ctx, results, total, query) + } +} \ No newline at end of file diff --git a/template/server/handler/router.go b/template/server/handler/router.go new file mode 100644 index 00000000..adb5bc1f --- /dev/null +++ b/template/server/handler/router.go @@ -0,0 +1,46 @@ +package handler + +import ( + "os" + + "gitee.com/openeuler/PilotGo-plugin-template/conf" + "gitee.com/openeuler/PilotGo-plugin-template/pluginclient" + "gitee.com/openeuler/PilotGo/sdk/logger" + "github.com/gin-gonic/gin" +) + +func InitWebServer() { + if pluginclient.Global_Client == nil { + logger.Error("Global_Client is nil") + os.Exit(1) + } + + go func() { + engine := gin.Default() + gin.SetMode(gin.ReleaseMode) + pluginclient.Global_Client.RegisterHandlers(engine) + InitRouter(engine) + StaticRouter(engine) + + if conf.Global_Config.Template.Https_enabled { + err := engine.RunTLS(conf.Global_Config.Template.Addr, conf.Global_Config.Template.CertFile, conf.Global_Config.Template.KeyFile) + if err != nil { + logger.Error(err.Error()) + os.Exit(1) + } + } else { + err := engine.Run(conf.Global_Config.Template.Addr) + if err != nil { + logger.Error(err.Error()) + os.Exit(1) + } + } + }() +} + +func InitRouter(router *gin.Engine) { + api := router.Group("/plugin/template/api") + { + api.GET("/do_something", DoSomethingHandle) + } +} diff --git a/template/server/handler/static.go b/template/server/handler/static.go new file mode 100644 index 00000000..0eeb2e54 --- /dev/null +++ b/template/server/handler/static.go @@ -0,0 +1,28 @@ +//go:build !production +// +build !production + +package handler + +import ( + "net/http" + "strings" + + "github.com/gin-gonic/gin" +) + +func StaticRouter(router *gin.Engine) { + static := router.Group("/plugin/template") + { + static.Static("/static", "../web/dist/static") + static.StaticFile("/", "../web/dist/index.html") + + // 解决页面刷新404的问题 + router.NoRoute(func(c *gin.Context) { + if !strings.HasPrefix(c.Request.RequestURI, "/plugin/template/api") { + c.File("../web/dist/index.html") + return + } + c.AbortWithStatus(http.StatusNotFound) + }) + } +} diff --git a/template/server/handler/staticPro.go b/template/server/handler/staticPro.go new file mode 100644 index 00000000..9489c804 --- /dev/null +++ b/template/server/handler/staticPro.go @@ -0,0 +1,46 @@ +//go:build production +// +build production + +package handler + +import ( + "embed" + "io/fs" + "mime" + "net/http" + "strings" + + "gitee.com/openeuler/PilotGo/sdk/logger" + "github.com/gin-gonic/gin" +) + +//go:embed static index.html +var StaticFiles embed.FS + +func StaticRouter(router *gin.Engine) { + sf, err := fs.Sub(StaticFiles, "assets") + if err != nil { + logger.Warn(err.Error()) + return + } + + mime.AddExtensionType(".js", "application/javascript") + static := router.Group("/plugin/template") + { + static.StaticFS("/static", http.FS(sf)) + static.GET("/", func(c *gin.Context) { + c.FileFromFS("/", http.FS(StaticFiles)) + }) + + } + + // 解决页面刷新404的问题 + router.NoRoute(func(c *gin.Context) { + if !strings.HasPrefix(c.Request.RequestURI, "/plugin/template/api") { + c.FileFromFS("/", http.FS(StaticFiles)) + return + } + c.AbortWithStatus(http.StatusNotFound) + }) + +} diff --git a/template/server/logger/sdkLogger.go b/template/server/logger/sdkLogger.go new file mode 100644 index 00000000..d0223a44 --- /dev/null +++ b/template/server/logger/sdkLogger.go @@ -0,0 +1,16 @@ +package logger + +import ( + "os" + + "gitee.com/openeuler/PilotGo-plugin-template/conf" + "gitee.com/openeuler/PilotGo/sdk/logger" +) + +func InitLogger() { + err := logger.Init(conf.Global_Config.Logopts) + if err != nil { + logger.Error(err.Error()) + os.Exit(1) + } +} diff --git a/template/server/main.go b/template/server/main.go index d3103f97..e60ef748 100644 --- a/template/server/main.go +++ b/template/server/main.go @@ -1,5 +1,36 @@ package main +import ( + "gitee.com/openeuler/PilotGo-plugin-template/conf" + "gitee.com/openeuler/PilotGo-plugin-template/handler" + "gitee.com/openeuler/PilotGo-plugin-template/logger" + "gitee.com/openeuler/PilotGo-plugin-template/pluginclient" + "gitee.com/openeuler/PilotGo-plugin-template/signal" +) + func main() { - -} \ No newline at end of file + /* + init config + */ + conf.InitConfig() + + /* + init logger + */ + logger.InitLogger() + + /* + init plugin client + */ + pluginclient.InitPluginClient() + + /* + init web server + */ + handler.InitWebServer() + + /* + 终止进程信号监听 + */ + signal.SignalMonitoring() +} diff --git a/template/server/signal/signalMonitor.go b/template/server/signal/signalMonitor.go new file mode 100644 index 00000000..ddb233ba --- /dev/null +++ b/template/server/signal/signalMonitor.go @@ -0,0 +1,24 @@ +package signal + +import ( + "os" + "os/signal" + "syscall" + + "gitee.com/openeuler/PilotGo/sdk/logger" +) + +func SignalMonitoring() { + ch := make(chan os.Signal, 1) + + signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT) + for s := range ch { + switch s { + case syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT: + // actions before exit + os.Exit(1) + default: + logger.Warn("unknown signal-> %s\n", s.String()) + } + } +} -- Gitee