- Add session.Attach to reuse per-request sessions across middleware and ghome handlers - Make Session finalize/abort paths idempotent to avoid duplicate commit or rollback work - Move request_data parsing helper to internal/utils - Expand ParseRequestData usage across api, download, unit, live, multiunit, and subscenario handlers - Extract download package metadata into internal/handler/download/types.go - Return explicit errors from selected session lookup helpers and update callers - Make api action handlers return errors directly instead of calling ss.CheckErr in nested layers Signed-off-by: Sean Du <do4suki@gmail.com>
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package background
|
|
|
|
import (
|
|
backgroundapischema "honoka-chan/internal/schema/api/background"
|
|
"honoka-chan/internal/session"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func backgroundInfo(ctx *gin.Context) (res any, err error) {
|
|
ss := session.Get(ctx)
|
|
|
|
var backgroundList []int
|
|
err = ss.MainEng.Table("background_m").Cols("background_id").Find(&backgroundList)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var backgroundID int
|
|
_, err = ss.UserEng.Table("user_pref").Where("user_id = ?", ss.UserID).Cols("background_id").Get(&backgroundID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
backgroundsList := []backgroundapischema.Info{}
|
|
for _, id := range backgroundList {
|
|
isSet := false
|
|
if id == backgroundID {
|
|
isSet = true
|
|
}
|
|
backgroundsList = append(backgroundsList, backgroundapischema.Info{
|
|
BackgroundID: id,
|
|
IsSet: isSet,
|
|
InsertDate: "2023-03-20 03:58:55",
|
|
})
|
|
}
|
|
|
|
res = backgroundapischema.InfoResp{
|
|
Result: backgroundapischema.InfoData{
|
|
BackgroundInfo: backgroundsList,
|
|
},
|
|
Status: 200,
|
|
CommandNum: false,
|
|
TimeStamp: time.Now().Unix(),
|
|
}
|
|
|
|
return res, err
|
|
}
|