From 625beff086390aa5a9a450141941bfa9eeb4c78e Mon Sep 17 00:00:00 2001 From: kevin Date: Tue, 21 Oct 2025 20:55:29 +0800 Subject: [PATCH] up --- backend/.gitignore | 5 +- backend/defConfig/configTemp.yaml | 59 ++++++++++++++++ backend/defConfig/errorCodes.json | 5 ++ backend/go.mod | 56 +++++++++++++++ backend/go.sum | 112 ++++++++++++++++++++++++++++++ backend/main.go | 87 +++++++++++++++++++++++ backend/models/configs.go | 62 +++++++++++++++++ backend/models/file.go | 12 ++++ backend/models/sql.go | 99 ++++++++++++++++++++++++++ backend/routers/api.go | 37 ++++++++++ backend/routers/return.go | 22 ++++++ backend/routers/routers.go | 7 ++ frontent/ops_vue/vite.config.ts | 12 ++-- 13 files changed, 568 insertions(+), 7 deletions(-) create mode 100644 backend/defConfig/configTemp.yaml create mode 100644 backend/defConfig/errorCodes.json create mode 100644 backend/go.mod create mode 100644 backend/go.sum create mode 100644 backend/main.go create mode 100644 backend/models/configs.go create mode 100644 backend/models/file.go create mode 100644 backend/models/sql.go create mode 100644 backend/routers/api.go create mode 100644 backend/routers/return.go create mode 100644 backend/routers/routers.go diff --git a/backend/.gitignore b/backend/.gitignore index 45333e2..a5eb322 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -6,5 +6,8 @@ *.dylib .DS_Store +/dist /data -/tmp \ No newline at end of file +/tmp + +*.db \ No newline at end of file diff --git a/backend/defConfig/configTemp.yaml b/backend/defConfig/configTemp.yaml new file mode 100644 index 0000000..6d59ae3 --- /dev/null +++ b/backend/defConfig/configTemp.yaml @@ -0,0 +1,59 @@ +version: "0.3.0" + +web: + host: "127.0.0.1" + port: "8080" + tls: false + certPrivatePath: "" + certPublicPath: "" + +database: + type: "sqlite" # mysql or sqlite + path: "data/database.db" # sqlite path + host: "" # mysql host + port: "" + name: "" + user: "" + pass: "" + +user: + cookieTimeout: 604800 + passHashType: "md5" #密码哈希类型 text md5 + avatarSavePath: "/data/avatar/" #头像保存的真实位置 + avatarGinrouterPath: "/avatar/" #gin 路由的路径 + avatarPath: "/static/avatars/def.png" + +file: + maxSize: 52428800 + pahts: + avatar: "./data/avatar/" + image: "./data/upload/image/" + video: "./data/upload/video/" + music: "./data/upload/music/" + pdf: "./data/upload/pdf/" + other: "./data/upload/other/" + + allowImageMime: + image/jpeg: ".jpeg" + image/png: ".png" + image/gif: ".gif" + image/bmp: ".bmp" + + allowVideoMime: + video/mp4: ".mp4" + video/x-msvideo: ".avi" + video/quicktime: ".mov" + video/x-flv: ".flv" + video/mpeg: ".mpeg" + + allowMusicMime: + audio/mpeg: ".mpeg" + audio/aac: ".aac" + audio/wav: ".wav" + audio/flac: ".flac" + + allowPdfMime: + application/pdf: ".pdf" + + +configed: false diff --git a/backend/defConfig/errorCodes.json b/backend/defConfig/errorCodes.json new file mode 100644 index 0000000..70d7317 --- /dev/null +++ b/backend/defConfig/errorCodes.json @@ -0,0 +1,5 @@ +{ + "apiOK":0, + "apiErr":-1 + +} \ No newline at end of file diff --git a/backend/go.mod b/backend/go.mod new file mode 100644 index 0000000..0f811f3 --- /dev/null +++ b/backend/go.mod @@ -0,0 +1,56 @@ +module ops + +go 1.23.0 + +toolchain go1.24.9 + +require ( + filippo.io/edwards25519 v1.1.0 // indirect + github.com/bytedance/sonic v1.14.0 // indirect + github.com/bytedance/sonic/loader v0.3.0 // indirect + github.com/cloudwego/base64x v0.1.6 // indirect + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/gabriel-vasile/mimetype v1.4.8 // indirect + github.com/gin-contrib/sse v1.1.0 // indirect + github.com/gin-gonic/gin v1.11.0 // indirect + github.com/glebarez/go-sqlite v1.21.2 // indirect + github.com/glebarez/sqlite v1.11.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.27.0 // indirect + github.com/go-sql-driver/mysql v1.8.1 // indirect + github.com/goccy/go-json v0.10.2 // indirect + github.com/goccy/go-yaml v1.18.0 // indirect + github.com/google/uuid v1.3.0 // indirect + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.5 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/klauspost/cpuid/v2 v2.3.0 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mitchellh/mapstructure v1.5.0 // indirect + github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/pelletier/go-toml/v2 v2.2.4 // indirect + github.com/quic-go/qpack v0.5.1 // indirect + github.com/quic-go/quic-go v0.54.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect + github.com/ugorji/go/codec v1.3.0 // indirect + go.uber.org/mock v0.5.0 // indirect + golang.org/x/arch v0.20.0 // indirect + golang.org/x/crypto v0.40.0 // indirect + golang.org/x/mod v0.25.0 // indirect + golang.org/x/net v0.42.0 // indirect + golang.org/x/sync v0.16.0 // indirect + golang.org/x/sys v0.35.0 // indirect + golang.org/x/text v0.27.0 // indirect + golang.org/x/tools v0.34.0 // indirect + google.golang.org/protobuf v1.36.9 // indirect + gorm.io/driver/mysql v1.6.0 // indirect + gorm.io/gorm v1.31.0 // indirect + modernc.org/libc v1.22.5 // indirect + modernc.org/mathutil v1.5.0 // indirect + modernc.org/memory v1.5.0 // indirect + modernc.org/sqlite v1.23.1 // indirect +) diff --git a/backend/go.sum b/backend/go.sum new file mode 100644 index 0000000..06c3242 --- /dev/null +++ b/backend/go.sum @@ -0,0 +1,112 @@ +filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= +filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= +github.com/bytedance/sonic v1.14.0 h1:/OfKt8HFw0kh2rj8N0F6C/qPGRESq0BbaNZgcNXXzQQ= +github.com/bytedance/sonic v1.14.0/go.mod h1:WoEbx8WTcFJfzCe0hbmyTGrfjt8PzNEBdxlNUO24NhA= +github.com/bytedance/sonic/loader v0.3.0 h1:dskwH8edlzNMctoruo8FPTJDF3vLtDT0sXZwvZJyqeA= +github.com/bytedance/sonic/loader v0.3.0/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI= +github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M= +github.com/cloudwego/base64x v0.1.6/go.mod h1:OFcloc187FXDaYHvrNIjxSe8ncn0OOM8gEHfghB2IPU= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/gabriel-vasile/mimetype v1.4.8 h1:FfZ3gj38NjllZIeJAmMhr+qKL8Wu+nOoI3GqacKw1NM= +github.com/gabriel-vasile/mimetype v1.4.8/go.mod h1:ByKUIKGjh1ODkGM1asKUbQZOLGrPjydw3hYPU2YU9t8= +github.com/gin-contrib/sse v1.1.0 h1:n0w2GMuUpWDVp7qSpvze6fAu9iRxJY4Hmj6AmBOU05w= +github.com/gin-contrib/sse v1.1.0/go.mod h1:hxRZ5gVpWMT7Z0B0gSNYqqsSCNIJMjzvm6fqCz9vjwM= +github.com/gin-gonic/gin v1.11.0 h1:OW/6PLjyusp2PPXtyxKHU0RbX6I/l28FTdDlae5ueWk= +github.com/gin-gonic/gin v1.11.0/go.mod h1:+iq/FyxlGzII0KHiBGjuNn4UNENUlKbGlNmc+W50Dls= +github.com/glebarez/go-sqlite v1.21.2 h1:3a6LFC4sKahUunAmynQKLZceZCOzUthkRkEAl9gAXWo= +github.com/glebarez/go-sqlite v1.21.2/go.mod h1:sfxdZyhQjTM2Wry3gVYWaW072Ri1WMdWJi0k6+3382k= +github.com/glebarez/sqlite v1.11.0 h1:wSG0irqzP6VurnMEpFGer5Li19RpIRi2qvQz++w0GMw= +github.com/glebarez/sqlite v1.11.0/go.mod h1:h8/o8j5wiAsqSPoWELDUdJXhjAhsVliSn7bWZjOhrgQ= +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.27.0 h1:w8+XrWVMhGkxOaaowyKH35gFydVHOvC0/uWoy2Fzwn4= +github.com/go-playground/validator/v10 v10.27.0/go.mod h1:I5QpIEbmr8On7W0TktmJAumgzX4CA1XNl4ZmDuVHKKo= +github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y= +github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg= +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/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw= +github.com/goccy/go-yaml v1.18.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= +github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +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.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= +github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= +github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= +github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= +github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/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.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4= +github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/quic-go/qpack v0.5.1 h1:giqksBPnT/HDtZ6VhtFKgoLOWmlyo9Ei6u9PqzIMbhI= +github.com/quic-go/qpack v0.5.1/go.mod h1:+PC4XFrEskIVkcLzpEkbLqq1uCoxPhQuvK5rH1ZgaEg= +github.com/quic-go/quic-go v0.54.0 h1:6s1YB9QotYI6Ospeiguknbp2Znb/jZYjZLRXn9kMQBg= +github.com/quic-go/quic-go v0.54.0/go.mod h1:e68ZEaCdyviluZmy44P6Iey98v/Wfz6HCjQEm+l8zTY= +github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +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.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/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.3.0 h1:Qd2W2sQawAfG8XSvzwhBeoGq71zXOC/Q1E9y/wUcsUA= +github.com/ugorji/go/codec v1.3.0/go.mod h1:pRBVtBSKl77K30Bv8R2P+cLSGaTtex6fsA2Wjqmfxj4= +go.uber.org/mock v0.5.0 h1:KAMbZvZPyBPWgD14IrIQ38QCyjwpvVVV6K/bHl1IwQU= +go.uber.org/mock v0.5.0/go.mod h1:ge71pBPLYDk7QIi1LupWxdAykm7KIEFchiOqd6z7qMM= +golang.org/x/arch v0.20.0 h1:dx1zTU0MAE98U+TQ8BLl7XsJbgze2WnNKF/8tGp/Q6c= +golang.org/x/arch v0.20.0/go.mod h1:bdwinDaKcfZUGpH09BB7ZmOfhalA8lQdzl62l8gGWsk= +golang.org/x/crypto v0.40.0 h1:r4x+VvoG5Fm+eJcxMaY8CQM7Lb0l1lsmjGBQ6s8BfKM= +golang.org/x/crypto v0.40.0/go.mod h1:Qr1vMER5WyS2dfPHAlsOj01wgLbsyWtFn/aY+5+ZdxY= +golang.org/x/mod v0.25.0 h1:n7a+ZbQKQA/Ysbyb0/6IbB1H/X41mKgbhfv7AfG/44w= +golang.org/x/mod v0.25.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww= +golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs= +golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8= +golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= +golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI= +golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4= +golang.org/x/text v0.27.0/go.mod h1:1D28KMCvyooCX9hBiosv5Tz/+YLxj0j7XhWjpSUF7CU= +golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo= +golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg= +google.golang.org/protobuf v1.36.9 h1:w2gp2mA27hUeUzj9Ex9FBjsBm40zfaDtEWow293U7Iw= +google.golang.org/protobuf v1.36.9/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/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/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/mysql v1.6.0 h1:eNbLmNTpPpTOVZi8MMxCi2aaIm0ZpInbORNXDwyLGvg= +gorm.io/driver/mysql v1.6.0/go.mod h1:D/oCC2GWK3M/dqoLxnOlaNKmXz8WNTfcS9y5ovaSqKo= +gorm.io/gorm v1.31.0 h1:0VlycGreVhK7RF/Bwt51Fk8v0xLiiiFdbGDPIZQ7mJY= +gorm.io/gorm v1.31.0/go.mod h1:XyQVbO2k6YkOis7C2437jSit3SsDK72s7n7rsSHd+Gs= +modernc.org/libc v1.22.5 h1:91BNch/e5B0uPbJFgqbxXuOnxBQjlS//icfQEGmvyjE= +modernc.org/libc v1.22.5/go.mod h1:jj+Z7dTNX8fBScMVNRAYZ/jF91K8fdT2hYMThc3YjBY= +modernc.org/mathutil v1.5.0 h1:rV0Ko/6SfM+8G+yKiyI830l3Wuz1zRutdslNoQ0kfiQ= +modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/memory v1.5.0 h1:N+/8c5rE6EqugZwHii4IFsaJ7MUhoWX07J5tC/iI5Ds= +modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/sqlite v1.23.1 h1:nrSBg4aRQQwq59JpvGEQ15tNxoO5pX/kUjcRNwSAGQM= +modernc.org/sqlite v1.23.1/go.mod h1:OrDj17Mggn6MhE+iPbBNf7RGKODDE9NFT0f3EwDzJqk= diff --git a/backend/main.go b/backend/main.go new file mode 100644 index 0000000..ecd53bd --- /dev/null +++ b/backend/main.go @@ -0,0 +1,87 @@ +package main + +import ( + "fmt" + "ops/models" + "os" + + "github.com/gin-gonic/gin" + "github.com/goccy/go-yaml" +) + +func main() { + + fmt.Println("OPS Backend Service started") + + // 直接尝试创建所有必要的目录 + err := os.MkdirAll("./data", 0755) + if err != nil { + fmt.Printf("创建文件夹失败: %v\n", err) + panic("创建文件夹失败") + + } + + config_file_path := "./data/config.yaml" + config_temp_path := "./defConfig/configTemp.yaml" + + //尝试读取配置 + if !models.FileExists(config_file_path) { + fmt.Println("读取配置失败") + + //复制配置模板 + fmt.Println("复制配置模板") + input, err := os.ReadFile(config_temp_path) + if err != nil { + panic(err) + + } + err = os.WriteFile(config_file_path, input, 0644) + if err != nil { + panic(err) + + } + fmt.Printf("需要修改此配置:%s\n", config_file_path) + + } + + //读取默认配置 + data, err := os.ReadFile(config_file_path) + if err != nil { + panic(err) + + } + + if err := yaml.Unmarshal(data, &models.Configs); err != nil { + panic(err) + + } + + if models.Configs["configed"] == false { + fmt.Printf("需要将:%s 内的configed设置为true", config_file_path) + panic("need config") + } + + //统一初始化 + models.ConfigAllInit() + + //启动gin服务 + + r := gin.Default() + //r.Static("/assets", "./dist/assets") + //r.GET("/", func(ctx *gin.Context) {}) + + var http_port = models.ConfigsWed.Host + ":" + models.ConfigsWed.Port + var gin_port = "0.0.0.0" + ":" + models.ConfigsWed.Port + if models.ConfigsWed.Tls { + if models.ConfigsWed.CertPublicPath == "" || models.ConfigsWed.CertPrivatePath == "" { + fmt.Printf("需要配置证书路径") + return + } else { + fmt.Println("https://" + http_port) + r.RunTLS(gin_port, models.ConfigsWed.CertPublicPath, models.ConfigsWed.CertPrivatePath) + } + } else { + fmt.Println("http://" + http_port) + r.Run(gin_port) + } +} diff --git a/backend/models/configs.go b/backend/models/configs.go new file mode 100644 index 0000000..6a865c6 --- /dev/null +++ b/backend/models/configs.go @@ -0,0 +1,62 @@ +package models + +import "github.com/mitchellh/mapstructure" + +var Configs map[string]interface{} + +//mime信息转换位拓展名 + +type ConfigsWeb_ struct { + Host string `mapstructure:"host"` + Port string `mapstructure:"port"` + Tls bool `mapstructure:"tls"` + CertPrivatePath string `mapstructure:"certPrivatePath"` + CertPublicPath string `mapstructure:"certPublicPath"` +} + +type ConfigsUser_ struct { + CookieTimeout int `mapstructure:"cookieTimeout"` + PassHashType string `mapstructure:"passHashType"` + AvatarSavePath string `mapstructure:"avatarSavePath"` + AvatarGinrouterPath string `mapstructure:"avatarGinrouterPath"` + AvatarPath string `mapstructure:"avatarPath"` +} + +type ConfigsFile_ struct { + MaxSize uint64 `mapstructure:"maxSize"` + Pahts map[string]string `mapstructure:"pahts"` + AllowImageMime map[string]string `mapstructure:"allowImageMime"` + AllowVideoMime map[string]string `mapstructure:"allowVideoMime"` + AllowMusicMime map[string]string `mapstructure:"allowMusicMime"` + AllowPdfMime map[string]string `mapstructure:"allowPdfMime"` +} + +var ConfigsWed ConfigsWeb_ +var ConfigsUser ConfigsUser_ +var ConfigsFile ConfigsFile_ + +func ConfigAllInit() error { + + //初始化数据库 + DatabaseInit() + + //读取web配置 + err := mapstructure.Decode(Configs["web"].(map[string]interface{}), &ConfigsWed) + if err != nil { + panic(err) + } + + //初始化user config + err = mapstructure.Decode(Configs["user"].(map[string]interface{}), &ConfigsUser) + if err != nil { + panic(err) + } + + //初始化file config + err = mapstructure.Decode(Configs["file"].(map[string]interface{}), &ConfigsFile) + if err != nil { + panic(err) + } + + return nil +} diff --git a/backend/models/file.go b/backend/models/file.go new file mode 100644 index 0000000..d30c0f8 --- /dev/null +++ b/backend/models/file.go @@ -0,0 +1,12 @@ +package models + +import "os" + +// 判断文件是否存在 +func FileExists(path string) bool { + _, err := os.Stat(path) + if err != nil { + return !os.IsNotExist(err) + } + return true +} diff --git a/backend/models/sql.go b/backend/models/sql.go new file mode 100644 index 0000000..779cdd5 --- /dev/null +++ b/backend/models/sql.go @@ -0,0 +1,99 @@ +package models + +import ( + "fmt" + "time" + + "github.com/glebarez/sqlite" + "gorm.io/driver/mysql" + "gorm.io/gorm" +) + +var DB *gorm.DB + +type TabFileInfo_ struct { + ID uint `gorm:"primaryKey;autoIncrement"` + Name string `gorm:"not null;size:256;index"` // 前端报告的文件名 + Path string `gorm:"not null;size:300"` // + Sha256 string `gorm:"not null;size:256;index"` // + Mime string `gorm:"size:64;index"` + Type string `gorm:"size:64;index"` + Const uint `gorm:"default:1;index"` + Per uint `gorm:"default:1"` + UserID uint `gorm:"not null;index"` + Date time.Time `gorm:"type:datetime;default:CURRENT_TIMESTAMP"` // 默认当前时间 +} + +type TabUser_ struct { + ID uint `gorm:"primaryKey;autoIncrement"` // 自增主键 + Name string `gorm:"size:100;uniqueIndex"` // 唯一约束索引 + Email string `gorm:"size:255;index"` // 字符串长度限制100 索引 + Pass string `gorm:"size:128"` // 建议存储哈希后的密码 + Date time.Time `gorm:"type:datetime;default:CURRENT_TIMESTAMP"` // 默认当前时间 +} + +type TabUserInfo_ struct { + ID uint `gorm:"primaryKey;autoIncrement"` + UserID uint `gorm:"not null;uniqueIndex"` + FirstName string `gorm:"size:50;null"` + Username string `gorm:"size:30;null"` + Birthdate time.Time `gorm:"type:datetime;null"` + Gender string `gorm:"type:char(1);check:gender IN ('M', 'F', 'U');default:'U'"` + AvatarPath string `gorm:"size:255"` + Region string `gorm:"size:50"` + Language string `gorm:"size:10;default:'zh-CN'"` + CreatedAt time.Time `gorm:"type:datetime;default:CURRENT_TIMESTAMP;column:created_at"` +} + +// var def_user_info = User_info{ +// ID:0, +// UserID:0, +// } + +type TabCookie_ struct { + ID uint `gorm:"primaryKey;autoIncrement"` + UserID uint `gorm:"size:16;not null"` + Name string `gorm:"size:255;not null;index"` + Value string `gorm:"size:255;not null;index"` + Domain string `gorm:"size:255;not null"` + Path string `gorm:"size:255;not null;default:/"` + ExpiresAt time.Time `gorm:"type:datetime;index"` + CreatedAt time.Time `gorm:"type:datetime;not null;default:CURRENT_TIMESTAMP"` + UpdatedAt time.Time `gorm:"type:datetime;index;not null;default:CURRENT_TIMESTAMP"` + SecureFlag bool `gorm:"not null;default:false"` + HttpOnly bool `gorm:"not null;default:false"` + SameSite string `gorm:"size:10;not null;default:'Lax'"` + PartitionKey string `gorm:"size:50"` +} + +func DatabaseInit() error { + var err error + fmt.Println("database_init") + DatabaseConfigs := Configs["database"].(map[string]interface{}) + + if DatabaseConfigs["type"].(string) == "sqlite" { + //sqlite init + fmt.Println("sqlite") + DB, err = gorm.Open(sqlite.Open(DatabaseConfigs["path"].(string)), &gorm.Config{}) + } else if DatabaseConfigs["type"].(string) == "mysql" { + //mysql init + fmt.Println("mysql") + dsn := fmt.Sprintf("%s:%s@tcp(%s:%s)/%s?charset=utf8mb4&parseTime=True&loc=Local", DatabaseConfigs["user"].(string), DatabaseConfigs["pass"].(string), DatabaseConfigs["host"].(string), DatabaseConfigs["port"].(string), DatabaseConfigs["name"].(string)) + DB, err = gorm.Open(mysql.Open(dsn), &gorm.Config{}) + } + if err != nil { + fmt.Println(err) + panic("数据库连接失败") + } + + // 自动创建表结构 + DB.AutoMigrate(&TabUser_{}) + + DB.AutoMigrate(&TabUserInfo_{}) + + DB.AutoMigrate(&TabCookie_{}) + + DB.AutoMigrate(&TabFileInfo_{}) + + return nil +} diff --git a/backend/routers/api.go b/backend/routers/api.go new file mode 100644 index 0000000..000561d --- /dev/null +++ b/backend/routers/api.go @@ -0,0 +1,37 @@ +package routers + +import ( + "encoding/json" + "fmt" + "os" + + "github.com/gin-gonic/gin" +) + +var ErrorCode map[string]interface{} + +func init() { + //读取默认配置 + fmt.Println("尝试读取错误码文件") + data, err := os.ReadFile("./defConfig/errorCodes.json") + if err != nil { + + fmt.Println("读取错误码文件失败", err) + } + + if err := json.Unmarshal(data, &ErrorCode); err != nil { + fmt.Println("解析错误码文件失败", err) + } + +} + +func ApiRoot(r *gin.RouterGroup) { + + // r.GET("/", func(ctx *gin.Context) { + // //ReturnJson(ctx, "apiOK", nil) + // }) + r.GET("/", func(ctx *gin.Context) { + + }) + +} diff --git a/backend/routers/return.go b/backend/routers/return.go new file mode 100644 index 0000000..ebe856d --- /dev/null +++ b/backend/routers/return.go @@ -0,0 +1,22 @@ +package routers + +import "github.com/gin-gonic/gin" + +func ReturnJson(ctx *gin.Context, errMsg string, data map[string]interface{}) { + var errCode = ErrorCode[errMsg] + returnData := map[string]interface{}{} + + cookie, have_cookie := ctx.Get("cookie") + if have_cookie { + returnData["cookie"] = cookie + } + + returnData["err_code"] = errCode + returnData["err_msg"] = errMsg + if data != nil { + returnData["return"] = data + } + + ctx.JSON(200, &returnData) + +} diff --git a/backend/routers/routers.go b/backend/routers/routers.go new file mode 100644 index 0000000..b636e57 --- /dev/null +++ b/backend/routers/routers.go @@ -0,0 +1,7 @@ +package routers + +import "github.com/gin-gonic/gin" + +func Root(r *gin.RouterGroup) { + +} diff --git a/frontent/ops_vue/vite.config.ts b/frontent/ops_vue/vite.config.ts index d49d708..c6947c8 100644 --- a/frontent/ops_vue/vite.config.ts +++ b/frontent/ops_vue/vite.config.ts @@ -7,14 +7,14 @@ import vueDevTools from 'vite-plugin-vue-devtools' // https://vite.dev/config/ export default defineConfig({ - plugins: [ - vue(), - vueJsx(), - vueDevTools(), - ], + plugins: [vue(), vueJsx(), vueDevTools()], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, + build: { + outDir: '../../backend/dist', // 默认是 'dist',可以修改为你想要的目录名 + assetsDir: 'assets', // 静态资源目录(相对于 outDir) + }, })