mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
78596a6756
Fixes #30144 Co-authored-by: dsotirakis <sotirakis.dim@gmail.com> Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> Co-authored-by: Ida Furjesova <ida.furjesova@grafana.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com> Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> Co-authored-by: Leon Sorokin <leeoniya@gmail.com> Co-authored-by: Andrej Ocenas <mr.ocenas@gmail.com> Co-authored-by: spinillos <selenepinillos@gmail.com> Co-authored-by: Karl Persson <kalle.persson@grafana.com> Co-authored-by: Leonard Gram <leo@xlson.com>
32 lines
826 B
Go
32 lines
826 B
Go
package middleware
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gopkg.in/macaron.v1"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/quota"
|
|
)
|
|
|
|
// Quota returns a function that returns a function used to call quotaservice based on target name
|
|
func Quota(quotaService *quota.QuotaService) func(string) macaron.Handler {
|
|
if quotaService == nil {
|
|
panic("quotaService is nil")
|
|
}
|
|
//https://open.spotify.com/track/7bZSoBEAEEUsGEuLOf94Jm?si=T1Tdju5qRSmmR0zph_6RBw fuuuuunky
|
|
return func(target string) macaron.Handler {
|
|
return func(c *models.ReqContext) {
|
|
limitReached, err := quotaService.QuotaReached(c, target)
|
|
if err != nil {
|
|
c.JsonApiErr(500, "Failed to get quota", err)
|
|
return
|
|
}
|
|
if limitReached {
|
|
c.JsonApiErr(403, fmt.Sprintf("%s Quota reached", target), nil)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|