mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2026-03-07 05:58:55 +00:00
- Implement BeforeHandle hook to enforce authentication based on model rules. - Integrate with existing security mechanisms to allow or deny access. - Update documentation to reflect new hook and its usage.
109 lines
3.1 KiB
Go
109 lines
3.1 KiB
Go
package websocketspec
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/bitechdev/ResolveSpec/pkg/logger"
|
|
"github.com/bitechdev/ResolveSpec/pkg/security"
|
|
)
|
|
|
|
// RegisterSecurityHooks registers all security-related hooks with the handler
|
|
func RegisterSecurityHooks(handler *Handler, securityList *security.SecurityList) {
|
|
// Hook 0: BeforeHandle - enforce auth after model resolution
|
|
handler.Hooks().Register(BeforeHandle, func(hookCtx *HookContext) error {
|
|
if err := security.CheckModelAuthAllowed(newSecurityContext(hookCtx), hookCtx.Operation); err != nil {
|
|
hookCtx.Abort = true
|
|
hookCtx.AbortMessage = err.Error()
|
|
hookCtx.AbortCode = http.StatusUnauthorized
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
|
|
// Hook 1: BeforeRead - Load security rules
|
|
handler.Hooks().Register(BeforeRead, func(hookCtx *HookContext) error {
|
|
secCtx := newSecurityContext(hookCtx)
|
|
return security.LoadSecurityRules(secCtx, securityList)
|
|
})
|
|
|
|
// Hook 2: AfterRead - Apply column-level security (masking)
|
|
handler.Hooks().Register(AfterRead, func(hookCtx *HookContext) error {
|
|
secCtx := newSecurityContext(hookCtx)
|
|
return security.ApplyColumnSecurity(secCtx, securityList)
|
|
})
|
|
|
|
// Hook 3 (Optional): Audit logging
|
|
handler.Hooks().Register(AfterRead, func(hookCtx *HookContext) error {
|
|
secCtx := newSecurityContext(hookCtx)
|
|
return security.LogDataAccess(secCtx)
|
|
})
|
|
|
|
// Hook 4: BeforeUpdate - enforce CanUpdate rule from context/registry
|
|
handler.Hooks().Register(BeforeUpdate, func(hookCtx *HookContext) error {
|
|
secCtx := newSecurityContext(hookCtx)
|
|
return security.CheckModelUpdateAllowed(secCtx)
|
|
})
|
|
|
|
// Hook 5: BeforeDelete - enforce CanDelete rule from context/registry
|
|
handler.Hooks().Register(BeforeDelete, func(hookCtx *HookContext) error {
|
|
secCtx := newSecurityContext(hookCtx)
|
|
return security.CheckModelDeleteAllowed(secCtx)
|
|
})
|
|
|
|
logger.Info("Security hooks registered for websocketspec handler")
|
|
}
|
|
|
|
// securityContext adapts websocketspec.HookContext to security.SecurityContext interface
|
|
type securityContext struct {
|
|
ctx *HookContext
|
|
}
|
|
|
|
func newSecurityContext(ctx *HookContext) security.SecurityContext {
|
|
return &securityContext{ctx: ctx}
|
|
}
|
|
|
|
func (s *securityContext) GetContext() context.Context {
|
|
return s.ctx.Context
|
|
}
|
|
|
|
func (s *securityContext) GetUserID() (int, bool) {
|
|
return security.GetUserID(s.ctx.Context)
|
|
}
|
|
|
|
func (s *securityContext) GetSchema() string {
|
|
return s.ctx.Schema
|
|
}
|
|
|
|
func (s *securityContext) GetEntity() string {
|
|
return s.ctx.Entity
|
|
}
|
|
|
|
func (s *securityContext) GetModel() interface{} {
|
|
return s.ctx.Model
|
|
}
|
|
|
|
// GetQuery retrieves a stored query from hook metadata (websocketspec has no Query field)
|
|
func (s *securityContext) GetQuery() interface{} {
|
|
if s.ctx.Metadata == nil {
|
|
return nil
|
|
}
|
|
return s.ctx.Metadata["query"]
|
|
}
|
|
|
|
// SetQuery stores the query in hook metadata
|
|
func (s *securityContext) SetQuery(query interface{}) {
|
|
if s.ctx.Metadata == nil {
|
|
s.ctx.Metadata = make(map[string]interface{})
|
|
}
|
|
s.ctx.Metadata["query"] = query
|
|
}
|
|
|
|
func (s *securityContext) GetResult() interface{} {
|
|
return s.ctx.Result
|
|
}
|
|
|
|
func (s *securityContext) SetResult(result interface{}) {
|
|
s.ctx.Result = result
|
|
}
|