| 
									
										
										
										
											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-04-21 01:12:32 +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/go-macaron/binding" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"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-04-09 17:55:41 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type AlertmanagerApiService interface { | 
					
						
							|  |  |  | 	RouteCreateSilence(*models.ReqContext, apimodels.PostableSilence) response.Response | 
					
						
							|  |  |  | 	RouteDeleteAlertingConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteDeleteSilence(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetAMAlertGroups(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetAMAlerts(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetAlertingConfig(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetSilence(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RouteGetSilences(*models.ReqContext) response.Response | 
					
						
							|  |  |  | 	RoutePostAMAlerts(*models.ReqContext, apimodels.PostableAlerts) response.Response | 
					
						
							|  |  |  | 	RoutePostAlertingConfig(*models.ReqContext, apimodels.PostableUserConfig) response.Response | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | func (api *API) RegisterAlertmanagerApiEndpoints(srv AlertmanagerApiService, m *metrics.Metrics) { | 
					
						
							| 
									
										
										
										
											2021-04-09 17:55:41 +08:00
										 |  |  | 	api.RouteRegister.Group("", func(group routing.RouteRegister) { | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 		group.Post( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/silences"), | 
					
						
							|  |  |  | 			binding.Bind(apimodels.PostableSilence{}), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodPost, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/silences", | 
					
						
							|  |  |  | 				srv.RouteCreateSilence, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Delete( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/config/api/v1/alerts"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodDelete, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/config/api/v1/alerts", | 
					
						
							|  |  |  | 				srv.RouteDeleteAlertingConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Delete( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/silence/{SilenceId}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodDelete, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/silence/{SilenceId}", | 
					
						
							|  |  |  | 				srv.RouteDeleteSilence, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/alerts/groups"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/alerts/groups", | 
					
						
							|  |  |  | 				srv.RouteGetAMAlertGroups, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/alerts"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/alerts", | 
					
						
							|  |  |  | 				srv.RouteGetAMAlerts, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/config/api/v1/alerts"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/config/api/v1/alerts", | 
					
						
							|  |  |  | 				srv.RouteGetAlertingConfig, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/silence/{SilenceId}"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/silence/{SilenceId}", | 
					
						
							|  |  |  | 				srv.RouteGetSilence, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Get( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/silences"), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodGet, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/silences", | 
					
						
							|  |  |  | 				srv.RouteGetSilences, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Post( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/api/v2/alerts"), | 
					
						
							|  |  |  | 			binding.Bind(apimodels.PostableAlerts{}), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodPost, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/api/v2/alerts", | 
					
						
							|  |  |  | 				srv.RoutePostAMAlerts, | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 				m, | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 			), | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		group.Post( | 
					
						
							|  |  |  | 			toMacaronPath("/api/alertmanager/{Recipient}/config/api/v1/alerts"), | 
					
						
							|  |  |  | 			binding.Bind(apimodels.PostableUserConfig{}), | 
					
						
							| 
									
										
										
										
											2021-05-01 00:28:06 +08:00
										 |  |  | 			metrics.Instrument( | 
					
						
							| 
									
										
										
										
											2021-04-29 04:59:15 +08:00
										 |  |  | 				http.MethodPost, | 
					
						
							|  |  |  | 				"/api/alertmanager/{Recipient}/config/api/v1/alerts", | 
					
						
							|  |  |  | 				srv.RoutePostAlertingConfig, | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  | } |