mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
d4616cfe26
* #45498: add rbac support in searchv2
* to revert: fix dependency cycle
* Revert "to revert: fix dependency cycle"
This reverts commit 1ffbee73ec
.
* added a TODO for caching user permissions
* add orgId to `getDashboardReadFilter`
* use orgId from signedInUser
* goimport
78 lines
2.0 KiB
Go
78 lines
2.0 KiB
Go
package searchV2
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/accesscontrol"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore/permissions"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore/searchstore"
|
|
)
|
|
|
|
// ResourceFilter checks if a given a uid (resource identifier) check if we have the requested permission
|
|
type ResourceFilter func(uid string) bool
|
|
|
|
// FutureAuthService eventually implemented by the security service
|
|
type FutureAuthService interface {
|
|
GetDashboardReadFilter(user *models.SignedInUser) (ResourceFilter, error)
|
|
}
|
|
|
|
var _ FutureAuthService = (*simpleSQLAuthService)(nil)
|
|
|
|
type simpleSQLAuthService struct {
|
|
sql *sqlstore.SQLStore
|
|
ac accesscontrol.AccessControl
|
|
}
|
|
|
|
type dashIdQueryResult struct {
|
|
UID string `xorm:"uid"`
|
|
}
|
|
|
|
func (a *simpleSQLAuthService) getDashboardTableAuthFilter(user *models.SignedInUser) searchstore.FilterWhere {
|
|
if a.ac.IsDisabled() {
|
|
return permissions.DashboardPermissionFilter{
|
|
OrgRole: user.OrgRole,
|
|
OrgId: user.OrgId,
|
|
Dialect: a.sql.Dialect,
|
|
UserId: user.UserId,
|
|
PermissionLevel: models.PERMISSION_VIEW,
|
|
}
|
|
}
|
|
|
|
return permissions.NewAccessControlDashboardPermissionFilter(user, models.PERMISSION_VIEW, searchstore.TypeDashboard)
|
|
}
|
|
|
|
func (a *simpleSQLAuthService) GetDashboardReadFilter(user *models.SignedInUser) (ResourceFilter, error) {
|
|
filter := a.getDashboardTableAuthFilter(user)
|
|
rows := make([]*dashIdQueryResult, 0)
|
|
|
|
err := a.sql.WithDbSession(context.Background(), func(sess *sqlstore.DBSession) error {
|
|
sql, params := filter.Where()
|
|
sess.Table("dashboard").
|
|
Where(sql, params...).
|
|
Where("org_id = ?", user.OrgId).
|
|
Cols("uid")
|
|
|
|
err := sess.Find(&rows)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
uids := make(map[string]bool, len(rows)+1)
|
|
for i := 0; i < len(rows); i++ {
|
|
uids[rows[i].UID] = true
|
|
}
|
|
|
|
return func(uid string) bool {
|
|
return uids[uid]
|
|
}, err
|
|
}
|