| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | /*Package api contains base API implementation of unified alerting | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *Do not manually edit these files, please find ngalert/api/swagger-codegen/ for commands on how to generate them. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-12-13 16:22:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/api/response" | 
					
						
							|  |  |  | 	"github.com/grafana/grafana/pkg/api/routing" | 
					
						
							|  |  |  | 	"github.com/grafana/grafana/pkg/middleware" | 
					
						
							|  |  |  | 	"github.com/grafana/grafana/pkg/models" | 
					
						
							| 
									
										
										
										
											2021-04-20 02:26:04 +08:00
										 |  |  | 	apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions" | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/services/ngalert/metrics" | 
					
						
							| 
									
										
										
										
											2021-12-13 16:22:57 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/web" | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 16:22:57 +08:00
										 |  |  | type RulerApiForkingService interface { | 
					
						
							|  |  |  | 	RouteDeleteNamespaceRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteDeleteRuleGroupConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetNamespaceRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetRulegGroupConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RoutePostNameRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | type RulerApiService interface { | 
					
						
							|  |  |  | 	RouteDeleteNamespaceRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteDeleteRuleGroupConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetNamespaceRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetRulegGroupConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetRulesConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RoutePostNameRulesConfig(*models.ReqContext, apimodels.PostableRuleGroupConfig) response.Response | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 16:22:57 +08:00
										 |  |  | func (f *ForkedRulerApi) RouteDeleteNamespaceRulesConfig(ctx *models.ReqContext) response.Response { | 
					
						
							|  |  |  | 	return f.forkRouteDeleteNamespaceRulesConfig(ctx) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (f *ForkedRulerApi) RouteDeleteRuleGroupConfig(ctx *models.ReqContext) response.Response { | 
					
						
							|  |  |  | 	return f.forkRouteDeleteRuleGroupConfig(ctx) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (f *ForkedRulerApi) RouteGetNamespaceRulesConfig(ctx *models.ReqContext) response.Response { | 
					
						
							|  |  |  | 	return f.forkRouteGetNamespaceRulesConfig(ctx) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (f *ForkedRulerApi) RouteGetRulegGroupConfig(ctx *models.ReqContext) response.Response { | 
					
						
							|  |  |  | 	return f.forkRouteGetRulegGroupConfig(ctx) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (f *ForkedRulerApi) RouteGetRulesConfig(ctx *models.ReqContext) response.Response { | 
					
						
							|  |  |  | 	return f.forkRouteGetRulesConfig(ctx) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (f *ForkedRulerApi) RoutePostNameRulesConfig(ctx *models.ReqContext) response.Response { | 
					
						
							|  |  |  | 	conf := apimodels.PostableRuleGroupConfig{} | 
					
						
							|  |  |  | 	if err := web.Bind(ctx.Req, &conf); err != nil { | 
					
						
							|  |  |  | 		return response.Error(http.StatusBadRequest, "bad request data", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return f.forkRoutePostNameRulesConfig(ctx, conf) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (api *API) RegisterRulerApiEndpoints(srv RulerApiForkingService, m *metrics.API) { | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | 	api.RouteRegister.Group("", func(group routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 		group.Delete( | 
					
						
							|  |  |  | 			toMacaronPath("/api/ruler/{Recipient}/api/v1/rules/{Namespace}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodDelete, | 
					
						
							|  |  |  | 				"/api/ruler/{Recipient}/api/v1/rules/{Namespace}", | 
					
						
							|  |  |  | 				srv.RouteDeleteNamespaceRulesConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Delete( | 
					
						
							|  |  |  | 			toMacaronPath("/api/ruler/{Recipient}/api/v1/rules/{Namespace}/{Groupname}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodDelete, | 
					
						
							|  |  |  | 				"/api/ruler/{Recipient}/api/v1/rules/{Namespace}/{Groupname}", | 
					
						
							|  |  |  | 				srv.RouteDeleteRuleGroupConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/ruler/{Recipient}/api/v1/rules/{Namespace}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/ruler/{Recipient}/api/v1/rules/{Namespace}", | 
					
						
							|  |  |  | 				srv.RouteGetNamespaceRulesConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/ruler/{Recipient}/api/v1/rules/{Namespace}/{Groupname}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/ruler/{Recipient}/api/v1/rules/{Namespace}/{Groupname}", | 
					
						
							|  |  |  | 				srv.RouteGetRulegGroupConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/ruler/{Recipient}/api/v1/rules"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/ruler/{Recipient}/api/v1/rules", | 
					
						
							|  |  |  | 				srv.RouteGetRulesConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Post( | 
					
						
							|  |  |  | 			toMacaronPath("/api/ruler/{Recipient}/api/v1/rules/{Namespace}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodPost, | 
					
						
							|  |  |  | 				"/api/ruler/{Recipient}/api/v1/rules/{Namespace}", | 
					
						
							|  |  |  | 				srv.RoutePostNameRulesConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | 	}, middleware.ReqSignedIn) | 
					
						
							|  |  |  | } |