2017-06-19 17:48:15 -05:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
|
|
|
|
|
|
func addDashboardAclMigrations(mg *Migrator) {
|
|
|
|
dashboardAclV1 := Table{
|
|
|
|
Name: "dashboard_acl",
|
|
|
|
Columns: []*Column{
|
|
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
|
|
{Name: "org_id", Type: DB_BigInt},
|
|
|
|
{Name: "dashboard_id", Type: DB_BigInt},
|
|
|
|
{Name: "user_id", Type: DB_BigInt, Nullable: true},
|
2017-12-08 09:25:45 -06:00
|
|
|
{Name: "team_id", Type: DB_BigInt, Nullable: true},
|
2017-06-21 13:11:16 -05:00
|
|
|
{Name: "permission", Type: DB_SmallInt, Default: "4"},
|
|
|
|
{Name: "role", Type: DB_Varchar, Length: 20, Nullable: true},
|
2017-06-19 17:48:15 -05:00
|
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
|
|
|
},
|
|
|
|
Indices: []*Index{
|
2017-06-21 13:11:16 -05:00
|
|
|
{Cols: []string{"dashboard_id"}},
|
2017-06-19 17:48:15 -05:00
|
|
|
{Cols: []string{"dashboard_id", "user_id"}, Type: UniqueIndex},
|
2017-12-08 09:25:45 -06:00
|
|
|
{Cols: []string{"dashboard_id", "team_id"}, Type: UniqueIndex},
|
2021-09-29 05:51:49 -05:00
|
|
|
{Cols: []string{"user_id"}},
|
|
|
|
{Cols: []string{"team_id"}},
|
|
|
|
{Cols: []string{"org_id", "role"}},
|
|
|
|
{Cols: []string{"permission"}},
|
2017-06-19 17:48:15 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-06-21 13:11:16 -05:00
|
|
|
mg.AddMigration("create dashboard acl table", NewAddTableMigration(dashboardAclV1))
|
2017-06-19 17:48:15 -05:00
|
|
|
|
|
|
|
//------- indexes ------------------
|
2017-12-15 03:54:54 -06:00
|
|
|
mg.AddMigration("add index dashboard_acl_dashboard_id", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[0]))
|
2017-06-19 17:48:15 -05:00
|
|
|
mg.AddMigration("add unique index dashboard_acl_dashboard_id_user_id", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[1]))
|
2017-12-12 10:18:25 -06:00
|
|
|
mg.AddMigration("add unique index dashboard_acl_dashboard_id_team_id", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[2]))
|
2021-09-29 05:51:49 -05:00
|
|
|
mg.AddMigration("add index dashboard_acl_user_id", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[3]))
|
|
|
|
mg.AddMigration("add index dashboard_acl_team_id", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[4]))
|
|
|
|
mg.AddMigration("add index dashboard_acl_org_id_role", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[5]))
|
|
|
|
mg.AddMigration("add index dashboard_permission", NewAddIndexMigration(dashboardAclV1, dashboardAclV1.Indices[6]))
|
2017-06-21 13:11:16 -05:00
|
|
|
|
|
|
|
const rawSQL = `
|
|
|
|
INSERT INTO dashboard_acl
|
|
|
|
(
|
|
|
|
org_id,
|
|
|
|
dashboard_id,
|
2017-06-21 13:19:08 -05:00
|
|
|
permission,
|
2017-06-21 13:11:16 -05:00
|
|
|
role,
|
|
|
|
created,
|
|
|
|
updated
|
|
|
|
)
|
|
|
|
VALUES
|
2017-06-21 13:19:08 -05:00
|
|
|
(-1,-1, 1,'Viewer','2017-06-20','2017-06-20'),
|
|
|
|
(-1,-1, 2,'Editor','2017-06-20','2017-06-20')
|
2017-06-21 13:11:16 -05:00
|
|
|
`
|
|
|
|
|
2020-11-10 23:21:08 -06:00
|
|
|
mg.AddMigration("save default acl rules in dashboard_acl table", NewRawSQLMigration(rawSQL))
|
2020-11-06 02:02:31 -06:00
|
|
|
|
2020-11-10 23:21:08 -06:00
|
|
|
mg.AddMigration("delete acl rules for deleted dashboards and folders", NewRawSQLMigration(
|
2020-11-06 02:02:31 -06:00
|
|
|
"DELETE FROM dashboard_acl WHERE dashboard_id NOT IN (SELECT id FROM dashboard) AND dashboard_id != -1"))
|
2017-06-19 17:48:15 -05:00
|
|
|
}
|