You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/api/role/auth.go

61 lines
1.3 KiB
Go

package role
import (
"github.com/veypi/OneAuth/cfg"
"github.com/veypi/OneAuth/libs/auth"
"github.com/veypi/OneAuth/libs/base"
"github.com/veypi/OneAuth/libs/oerr"
"github.com/veypi/OneAuth/models"
"github.com/veypi/OneAuth/oalib"
"github.com/veypi/OneBD"
"github.com/veypi/OneBD/core"
"strconv"
)
var authP = OneBD.NewHandlerPool(func() core.Handler {
return &authHandler{}
})
type authHandler struct {
base.ApiHandler
}
func (h *authHandler) Get() (interface{}, error) {
if !h.GetAuth(auth.Auth).CanRead() {
return nil, oerr.NoAuth
}
aid := h.Meta().ParamsInt("id")
query := &models.Auth{}
var err error
if aid > 0 {
err = cfg.DB().Where("id = ?", aid).First(query).Error
return query, err
}
id, _ := strconv.Atoi(h.Meta().Query("id"))
uuid := h.Meta().Query("uuid")
if id == 0 || uuid == "" {
return nil, oerr.ApiArgsMissing
}
target := &models.App{}
err = cfg.DB().Where("uuid = ?", uuid).First(target).Error
if err != nil {
return nil, err
}
u := &models.User{}
err = cfg.DB().Preload("Roles.Auths").Preload("Auths").Where("id = ?", id).First(u).Error
if err != nil {
return nil, err
}
l := make([]*oalib.SimpleAuth, 0, 10)
for _, as := range u.GetAuths() {
if as.AppUUID == uuid {
l = append(l, &oalib.SimpleAuth{
RID: as.RID,
RUID: as.RUID,
Level: as.Level,
})
}
}
return l, nil
}