Преглед на файлове

pkg: fix deadcode issues

Mario Trangoni преди 7 години
родител
ревизия
97fd66db2e
променени са 3 файла, в които са добавени 32 реда и са изтрити 49 реда
  1. 0 16
      pkg/api/annotations.go
  2. 0 2
      pkg/middleware/render_auth.go
  3. 32 31
      pkg/services/sqlstore/migrations/stats_mig.go

+ 0 - 16
pkg/api/annotations.go

@@ -294,19 +294,3 @@ func canSave(c *m.ReqContext, repo annotations.Repository, annotationID int64) R
 
 
 	return nil
 	return nil
 }
 }
-
-func canSaveByRegionID(c *m.ReqContext, repo annotations.Repository, regionID int64) Response {
-	items, err := repo.Find(&annotations.ItemQuery{RegionId: regionID, OrgId: c.OrgId})
-
-	if err != nil || len(items) == 0 {
-		return Error(500, "Could not find annotation to update", err)
-	}
-
-	dashboardID := items[0].DashboardId
-
-	if canSave, err := canSaveByDashboardID(c, dashboardID); err != nil || !canSave {
-		return dashboardGuardianResponse(err)
-	}
-
-	return nil
-}

+ 0 - 2
pkg/middleware/render_auth.go

@@ -31,8 +31,6 @@ func initContextWithRenderAuth(ctx *m.ReqContext) bool {
 	return true
 	return true
 }
 }
 
 
-type renderContextFunc func(key string) (string, error)
-
 func AddRenderAuthKey(orgId int64, userId int64, orgRole m.RoleType) string {
 func AddRenderAuthKey(orgId int64, userId int64, orgRole m.RoleType) string {
 	renderKeysLock.Lock()
 	renderKeysLock.Lock()
 
 

+ 32 - 31
pkg/services/sqlstore/migrations/stats_mig.go

@@ -2,37 +2,38 @@ package migrations
 
 
 import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
 import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
 
 
-func addStatsMigrations(mg *Migrator) {
-	statTable := Table{
-		Name: "stat",
-		Columns: []*Column{
-			{Name: "id", Type: DB_Int, IsPrimaryKey: true, IsAutoIncrement: true},
-			{Name: "metric", Type: DB_Varchar, Length: 20, Nullable: false},
-			{Name: "type", Type: DB_Int, Nullable: false},
-		},
-		Indices: []*Index{
-			{Cols: []string{"metric"}, Type: UniqueIndex},
-		},
-	}
-
-	// create table
-	mg.AddMigration("create stat table", NewAddTableMigration(statTable))
-
-	// create indices
-	mg.AddMigration("add index stat.metric", NewAddIndexMigration(statTable, statTable.Indices[0]))
-
-	statValue := Table{
-		Name: "stat_value",
-		Columns: []*Column{
-			{Name: "id", Type: DB_Int, IsPrimaryKey: true, IsAutoIncrement: true},
-			{Name: "value", Type: DB_Double, Nullable: false},
-			{Name: "time", Type: DB_DateTime, Nullable: false},
-		},
-	}
-
-	// create table
-	mg.AddMigration("create stat_value table", NewAddTableMigration(statValue))
-}
+// commented out because of the deadcode CI check
+//func addStatsMigrations(mg *Migrator) {
+//	statTable := Table{
+//		Name: "stat",
+//		Columns: []*Column{
+//			{Name: "id", Type: DB_Int, IsPrimaryKey: true, IsAutoIncrement: true},
+//			{Name: "metric", Type: DB_Varchar, Length: 20, Nullable: false},
+//			{Name: "type", Type: DB_Int, Nullable: false},
+//		},
+//		Indices: []*Index{
+//			{Cols: []string{"metric"}, Type: UniqueIndex},
+//		},
+//	}
+//
+//	// create table
+//	mg.AddMigration("create stat table", NewAddTableMigration(statTable))
+//
+//	// create indices
+//	mg.AddMigration("add index stat.metric", NewAddIndexMigration(statTable, statTable.Indices[0]))
+//
+//	statValue := Table{
+//		Name: "stat_value",
+//		Columns: []*Column{
+//			{Name: "id", Type: DB_Int, IsPrimaryKey: true, IsAutoIncrement: true},
+//			{Name: "value", Type: DB_Double, Nullable: false},
+//			{Name: "time", Type: DB_DateTime, Nullable: false},
+//		},
+//	}
+//
+//	// create table
+//	mg.AddMigration("create stat_value table", NewAddTableMigration(statValue))
+//}
 
 
 func addTestDataMigrations(mg *Migrator) {
 func addTestDataMigrations(mg *Migrator) {
 	testData := Table{
 	testData := Table{