29 lines
897 B
Go
29 lines
897 B
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
"kra/internal/biz/system"
|
|
)
|
|
|
|
type AccessControlService struct{ uc *system.AccessControlUsecase }
|
|
|
|
func NewAccessControlService(uc *system.AccessControlUsecase) *AccessControlService {
|
|
return &AccessControlService{uc: uc}
|
|
}
|
|
|
|
func (s *AccessControlService) Authorize(ctx context.Context, authorityID uint, path, method string) (bool, error) {
|
|
return s.uc.Authorize(ctx, authorityID, path, method)
|
|
}
|
|
|
|
func (s *AccessControlService) ResolveDataScope(ctx context.Context, authorityID, userID uint) (system.DataScope, error) {
|
|
return s.uc.ResolveDataScope(ctx, authorityID, userID)
|
|
}
|
|
|
|
func (s *AccessControlService) ContextWithDataScope(ctx context.Context, authorityID, userID uint) (context.Context, error) {
|
|
scope, err := s.ResolveDataScope(ctx, authorityID, userID)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
return system.NewDataScopeContext(ctx, scope), nil
|
|
}
|