mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 13:52:25 +08:00

* chore: Bump Go to 1.23.0 Signed-off-by: Dave Henderson <dave.henderson@grafana.com> * update swagger files Signed-off-by: Dave Henderson <dave.henderson@grafana.com> * chore: update .bingo/README.md formatting to satisfy prettier Signed-off-by: Dave Henderson <dave.henderson@grafana.com> * chore(lint): Fix new lint errors found by golangci-lint 1.60.1 and Go 1.23 Signed-off-by: Dave Henderson <dave.henderson@grafana.com> * keep golden file * update openapi * add name to expected output * chore(lint): rearrange imports to a sensible order Signed-off-by: Dave Henderson <dave.henderson@grafana.com> --------- Signed-off-by: Dave Henderson <dave.henderson@grafana.com> Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package datasource
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apiserver/pkg/registry/rest"
|
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
)
|
|
|
|
type subProxyREST struct {
|
|
pluginJSON plugins.JSONData
|
|
}
|
|
|
|
var _ = rest.Connecter(&subProxyREST{})
|
|
|
|
func (r *subProxyREST) New() runtime.Object {
|
|
return &metav1.Status{}
|
|
}
|
|
|
|
func (r *subProxyREST) Destroy() {}
|
|
|
|
func (r *subProxyREST) ConnectMethods() []string {
|
|
unique := map[string]bool{}
|
|
methods := []string{}
|
|
for _, r := range r.pluginJSON.Routes {
|
|
if unique[r.Method] {
|
|
continue
|
|
}
|
|
unique[r.Method] = true
|
|
methods = append(methods, r.Method)
|
|
}
|
|
return methods
|
|
}
|
|
|
|
func (r *subProxyREST) NewConnectOptions() (runtime.Object, bool, string) {
|
|
return nil, true, ""
|
|
}
|
|
|
|
func (r *subProxyREST) Connect(ctx context.Context, name string, opts runtime.Object, responder rest.Responder) (http.Handler, error) {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
|
responder.Error(fmt.Errorf("TODO, proxy: %s", r.pluginJSON.ID))
|
|
}), nil
|
|
}
|