12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package actions
- import (
- dto2 "Medical_OAuth/common/dto"
- "Medical_OAuth/common/model"
- "errors"
- "gorm.io/gorm"
- "net/http"
- "github.com/gin-gonic/gin"
- log "gogs.baozhida.cn/zoie/OAuth-core/logger"
- "gogs.baozhida.cn/zoie/OAuth-core/pkg"
- "gogs.baozhida.cn/zoie/OAuth-core/pkg/response"
- )
- // IndexAction 通用查询动作
- func IndexAction(m model.ActiveRecord, d dto2.Index, f func() interface{}) gin.HandlerFunc {
- return func(c *gin.Context) {
- db, err := pkg.GetOrm(c)
- if err != nil {
- log.Error(err)
- return
- }
- msgID := pkg.GenerateMsgIDFromContext(c)
- list := f()
- object := m.Generate()
- req := d.Generate()
- var count int64
- //查询列表
- err = req.Bind(c)
- if err != nil {
- response.Error(c, http.StatusUnprocessableEntity, err, "参数验证失败")
- return
- }
- //数据权限检查
- p := GetPermissionFromContext(c)
- err = db.WithContext(c).Model(object).
- Scopes(
- dto2.MakeCondition(req.GetNeedSearch()),
- dto2.Paginate(req.GetPageSize(), req.GetPageIndex()),
- Permission(object.TableName(), p),
- ).
- Find(list).Limit(-1).Offset(-1).
- Count(&count).Error
- if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) {
- log.Errorf("MsgID[%s] Index error: %s", msgID, err)
- response.Error(c, 500, err, "查询失败")
- return
- }
- response.PageOK(c, list, int(count), req.GetPageIndex(), req.GetPageSize(), "查询成功")
- c.Next()
- }
- }
|