mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Access Control: Move part of access control database (#40483)
* Add accesscontrol migrations * Add ResourceStore interface and related structs * Add team/user/builtin-role * Add accesscontrol database with functions to handle managed roles and permissions * Add ResourceManager * Add GetUserPermissions * Update pkg/services/accesscontrol/accesscontrol.go Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com>
This commit is contained in:
161
pkg/services/sqlstore/migrations/accesscontrol/migrations.go
Normal file
161
pkg/services/sqlstore/migrations/accesscontrol/migrations.go
Normal file
@@ -0,0 +1,161 @@
|
||||
package accesscontrol
|
||||
|
||||
import "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
||||
|
||||
func AddMigration(mg *migrator.Migrator) {
|
||||
permissionV1 := migrator.Table{
|
||||
Name: "permission",
|
||||
Columns: []*migrator.Column{
|
||||
{Name: "id", Type: migrator.DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
||||
{Name: "role_id", Type: migrator.DB_BigInt},
|
||||
{Name: "action", Type: migrator.DB_Varchar, Length: 190, Nullable: false},
|
||||
{Name: "scope", Type: migrator.DB_Varchar, Length: 190, Nullable: false},
|
||||
{Name: "created", Type: migrator.DB_DateTime, Nullable: false},
|
||||
{Name: "updated", Type: migrator.DB_DateTime, Nullable: false},
|
||||
},
|
||||
Indices: []*migrator.Index{
|
||||
{Cols: []string{"role_id"}},
|
||||
{Cols: []string{"role_id", "action", "scope"}, Type: migrator.UniqueIndex},
|
||||
},
|
||||
}
|
||||
|
||||
mg.AddMigration("create permission table", migrator.NewAddTableMigration(permissionV1))
|
||||
|
||||
//------- indexes ------------------
|
||||
mg.AddMigration("add unique index permission.role_id", migrator.NewAddIndexMigration(permissionV1, permissionV1.Indices[0]))
|
||||
mg.AddMigration("add unique index role_id_action_scope", migrator.NewAddIndexMigration(permissionV1, permissionV1.Indices[1]))
|
||||
|
||||
roleV1 := migrator.Table{
|
||||
Name: "role",
|
||||
Columns: []*migrator.Column{
|
||||
{Name: "id", Type: migrator.DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
||||
{Name: "name", Type: migrator.DB_NVarchar, Length: 190, Nullable: false},
|
||||
{Name: "description", Type: migrator.DB_Text, Nullable: true},
|
||||
{Name: "version", Type: migrator.DB_BigInt, Nullable: false},
|
||||
{Name: "org_id", Type: migrator.DB_BigInt},
|
||||
{Name: "uid", Type: migrator.DB_NVarchar, Length: 40, Nullable: false},
|
||||
{Name: "created", Type: migrator.DB_DateTime, Nullable: false},
|
||||
{Name: "updated", Type: migrator.DB_DateTime, Nullable: false},
|
||||
},
|
||||
Indices: []*migrator.Index{
|
||||
{Cols: []string{"org_id"}},
|
||||
{Cols: []string{"org_id", "name"}, Type: migrator.UniqueIndex},
|
||||
{Cols: []string{"org_id", "uid"}, Type: migrator.UniqueIndex},
|
||||
},
|
||||
}
|
||||
|
||||
mg.AddMigration("create role table", migrator.NewAddTableMigration(roleV1))
|
||||
|
||||
mg.AddMigration("add column display_name", migrator.NewAddColumnMigration(roleV1, &migrator.Column{
|
||||
Name: "display_name", Type: migrator.DB_NVarchar, Length: 190, Nullable: true,
|
||||
}))
|
||||
//------- indexes ------------------
|
||||
mg.AddMigration("add index role.org_id", migrator.NewAddIndexMigration(roleV1, roleV1.Indices[0]))
|
||||
mg.AddMigration("add unique index role_org_id_name", migrator.NewAddIndexMigration(roleV1, roleV1.Indices[1]))
|
||||
mg.AddMigration("add index role_org_id_uid", migrator.NewAddIndexMigration(roleV1, roleV1.Indices[2]))
|
||||
|
||||
teamRoleV1 := migrator.Table{
|
||||
Name: "team_role",
|
||||
Columns: []*migrator.Column{
|
||||
{Name: "id", Type: migrator.DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
||||
{Name: "org_id", Type: migrator.DB_BigInt},
|
||||
{Name: "team_id", Type: migrator.DB_BigInt},
|
||||
{Name: "role_id", Type: migrator.DB_BigInt},
|
||||
{Name: "created", Type: migrator.DB_DateTime, Nullable: false},
|
||||
},
|
||||
Indices: []*migrator.Index{
|
||||
{Cols: []string{"org_id"}},
|
||||
{Cols: []string{"org_id", "team_id", "role_id"}, Type: migrator.UniqueIndex},
|
||||
{Cols: []string{"team_id"}},
|
||||
},
|
||||
}
|
||||
|
||||
mg.AddMigration("create team role table", migrator.NewAddTableMigration(teamRoleV1))
|
||||
|
||||
//------- indexes ------------------
|
||||
mg.AddMigration("add index team_role.org_id", migrator.NewAddIndexMigration(teamRoleV1, teamRoleV1.Indices[0]))
|
||||
mg.AddMigration("add unique index team_role_org_id_team_id_role_id", migrator.NewAddIndexMigration(teamRoleV1, teamRoleV1.Indices[1]))
|
||||
mg.AddMigration("add index team_role.team_id", migrator.NewAddIndexMigration(teamRoleV1, teamRoleV1.Indices[2]))
|
||||
|
||||
userRoleV1 := migrator.Table{
|
||||
Name: "user_role",
|
||||
Columns: []*migrator.Column{
|
||||
{Name: "id", Type: migrator.DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
||||
{Name: "org_id", Type: migrator.DB_BigInt},
|
||||
{Name: "user_id", Type: migrator.DB_BigInt},
|
||||
{Name: "role_id", Type: migrator.DB_BigInt},
|
||||
{Name: "created", Type: migrator.DB_DateTime, Nullable: false},
|
||||
},
|
||||
Indices: []*migrator.Index{
|
||||
{Cols: []string{"org_id"}},
|
||||
{Cols: []string{"org_id", "user_id", "role_id"}, Type: migrator.UniqueIndex},
|
||||
{Cols: []string{"user_id"}},
|
||||
},
|
||||
}
|
||||
|
||||
mg.AddMigration("create user role table", migrator.NewAddTableMigration(userRoleV1))
|
||||
|
||||
//------- indexes ------------------
|
||||
mg.AddMigration("add index user_role.org_id", migrator.NewAddIndexMigration(userRoleV1, userRoleV1.Indices[0]))
|
||||
mg.AddMigration("add unique index user_role_org_id_user_id_role_id", migrator.NewAddIndexMigration(userRoleV1, userRoleV1.Indices[1]))
|
||||
mg.AddMigration("add index user_role.user_id", migrator.NewAddIndexMigration(userRoleV1, userRoleV1.Indices[2]))
|
||||
|
||||
builtinRoleV1 := migrator.Table{
|
||||
Name: "builtin_role",
|
||||
Columns: []*migrator.Column{
|
||||
{Name: "id", Type: migrator.DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
||||
{Name: "role", Type: migrator.DB_NVarchar, Length: 190, Nullable: false},
|
||||
{Name: "role_id", Type: migrator.DB_BigInt},
|
||||
{Name: "created", Type: migrator.DB_DateTime, Nullable: false},
|
||||
{Name: "updated", Type: migrator.DB_DateTime, Nullable: false},
|
||||
},
|
||||
Indices: []*migrator.Index{
|
||||
{Cols: []string{"role_id"}},
|
||||
{Cols: []string{"role"}},
|
||||
},
|
||||
}
|
||||
|
||||
mg.AddMigration("create builtin role table", migrator.NewAddTableMigration(builtinRoleV1))
|
||||
|
||||
//------- indexes ------------------
|
||||
mg.AddMigration("add index builtin_role.role_id", migrator.NewAddIndexMigration(builtinRoleV1, builtinRoleV1.Indices[0]))
|
||||
mg.AddMigration("add index builtin_role.name", migrator.NewAddIndexMigration(builtinRoleV1, builtinRoleV1.Indices[1]))
|
||||
|
||||
// Add org_id column to the builtin_role table
|
||||
mg.AddMigration("Add column org_id to builtin_role table", migrator.NewAddColumnMigration(builtinRoleV1, &migrator.Column{
|
||||
Name: "org_id", Type: migrator.DB_BigInt, Default: "0",
|
||||
}))
|
||||
|
||||
mg.AddMigration("add index builtin_role.org_id", migrator.NewAddIndexMigration(builtinRoleV1, &migrator.Index{
|
||||
Cols: []string{"org_id"},
|
||||
}))
|
||||
|
||||
mg.AddMigration("add unique index builtin_role_org_id_role_id_role", migrator.NewAddIndexMigration(builtinRoleV1, &migrator.Index{
|
||||
Cols: []string{"org_id", "role_id", "role"}, Type: migrator.UniqueIndex,
|
||||
}))
|
||||
|
||||
// Make role.uid unique across Grafana instance
|
||||
mg.AddMigration("Remove unique index role_org_id_uid", migrator.NewDropIndexMigration(roleV1, &migrator.Index{
|
||||
Cols: []string{"org_id", "uid"}, Type: migrator.UniqueIndex,
|
||||
}))
|
||||
|
||||
mg.AddMigration("add unique index role.uid", migrator.NewAddIndexMigration(roleV1, &migrator.Index{
|
||||
Cols: []string{"uid"}, Type: migrator.UniqueIndex,
|
||||
}))
|
||||
|
||||
seedAssignmentV1 := migrator.Table{
|
||||
Name: "seed_assignment",
|
||||
Columns: []*migrator.Column{
|
||||
{Name: "builtin_role", Type: migrator.DB_NVarchar, Length: 190, Nullable: false},
|
||||
{Name: "role_name", Type: migrator.DB_NVarchar, Length: 190, Nullable: false},
|
||||
},
|
||||
Indices: []*migrator.Index{
|
||||
{Cols: []string{"builtin_role", "role_name"}, Type: migrator.UniqueIndex},
|
||||
},
|
||||
}
|
||||
|
||||
mg.AddMigration("create seed assignment table", migrator.NewAddTableMigration(seedAssignmentV1))
|
||||
|
||||
//------- indexes ------------------
|
||||
mg.AddMigration("add unique index builtin_role_role_name", migrator.NewAddIndexMigration(seedAssignmentV1, seedAssignmentV1.Indices[0]))
|
||||
}
|
||||
Reference in New Issue
Block a user