mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			199 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			199 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			Go
		
	
	
	
| package pluginsintegration
 | |
| 
 | |
| import (
 | |
| 	"github.com/google/wire"
 | |
| 	"github.com/prometheus/client_golang/prometheus"
 | |
| 
 | |
| 	"github.com/grafana/grafana/pkg/infra/tracing"
 | |
| 	"github.com/grafana/grafana/pkg/plugins"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/auth"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/backendplugin/coreplugin"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/backendplugin/provider"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/envvars"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/log"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/client"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/filestore"
 | |
| 	pluginLoader "github.com/grafana/grafana/pkg/plugins/manager/loader"
 | |
| 	pAngularInspector "github.com/grafana/grafana/pkg/plugins/manager/loader/angular/angularinspector"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/loader/assetpath"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/loader/finder"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/pipeline/bootstrap"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/pipeline/discovery"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/pipeline/initialization"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/pipeline/termination"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/pipeline/validation"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/process"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/registry"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/signature"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/manager/sources"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/pluginscdn"
 | |
| 	"github.com/grafana/grafana/pkg/plugins/repo"
 | |
| 	"github.com/grafana/grafana/pkg/services/caching"
 | |
| 	"github.com/grafana/grafana/pkg/services/featuremgmt"
 | |
| 	"github.com/grafana/grafana/pkg/services/oauthtoken"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/angulardetectorsprovider"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/angularinspector"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/angularpatternsstore"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/clientmiddleware"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/keyretriever"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/keyretriever/dynamic"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/keystore"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/licensing"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/loader"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/pipeline"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/pluginconfig"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/pluginerrs"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/pluginexternal"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/pluginsettings"
 | |
| 	pluginSettings "github.com/grafana/grafana/pkg/services/pluginsintegration/pluginsettings/service"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/pluginstore"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/renderer"
 | |
| 	"github.com/grafana/grafana/pkg/services/pluginsintegration/serviceregistration"
 | |
| 	"github.com/grafana/grafana/pkg/services/rendering"
 | |
| 	"github.com/grafana/grafana/pkg/setting"
 | |
| )
 | |
| 
 | |
| // WireSet provides a wire.ProviderSet of plugin providers.
 | |
| var WireSet = wire.NewSet(
 | |
| 	pluginconfig.ProvidePluginManagementConfig,
 | |
| 	pluginconfig.ProvidePluginInstanceConfig,
 | |
| 	pluginconfig.NewEnvVarsProvider,
 | |
| 	wire.Bind(new(envvars.Provider), new(*pluginconfig.EnvVarsProvider)),
 | |
| 	pluginconfig.NewRequestConfigProvider,
 | |
| 	wire.Bind(new(pluginconfig.PluginRequestConfigProvider), new(*pluginconfig.RequestConfigProvider)),
 | |
| 	pluginstore.ProvideService,
 | |
| 	wire.Bind(new(pluginstore.Store), new(*pluginstore.Service)),
 | |
| 	wire.Bind(new(plugins.SecretsPluginManager), new(*pluginstore.Service)),
 | |
| 	wire.Bind(new(plugins.StaticRouteResolver), new(*pluginstore.Service)),
 | |
| 	process.ProvideService,
 | |
| 	wire.Bind(new(process.Manager), new(*process.Service)),
 | |
| 	coreplugin.ProvideCoreRegistry,
 | |
| 	pluginscdn.ProvideService,
 | |
| 	assetpath.ProvideService,
 | |
| 
 | |
| 	pipeline.ProvideDiscoveryStage,
 | |
| 	wire.Bind(new(discovery.Discoverer), new(*discovery.Discovery)),
 | |
| 	pipeline.ProvideBootstrapStage,
 | |
| 	wire.Bind(new(bootstrap.Bootstrapper), new(*bootstrap.Bootstrap)),
 | |
| 	pipeline.ProvideInitializationStage,
 | |
| 	wire.Bind(new(initialization.Initializer), new(*initialization.Initialize)),
 | |
| 	pipeline.ProvideTerminationStage,
 | |
| 	wire.Bind(new(termination.Terminator), new(*termination.Terminate)),
 | |
| 	pipeline.ProvideValidationStage,
 | |
| 	wire.Bind(new(validation.Validator), new(*validation.Validate)),
 | |
| 
 | |
| 	angularpatternsstore.ProvideService,
 | |
| 	angulardetectorsprovider.ProvideDynamic,
 | |
| 	angularinspector.ProvideService,
 | |
| 	wire.Bind(new(pAngularInspector.Inspector), new(*angularinspector.Service)),
 | |
| 
 | |
| 	signature.ProvideValidatorService,
 | |
| 	wire.Bind(new(signature.Validator), new(*signature.Validation)),
 | |
| 	loader.ProvideService,
 | |
| 	wire.Bind(new(pluginLoader.Service), new(*loader.Loader)),
 | |
| 	pluginerrs.ProvideSignatureErrorTracker,
 | |
| 	wire.Bind(new(pluginerrs.SignatureErrorTracker), new(*pluginerrs.SignatureErrorRegistry)),
 | |
| 	pluginerrs.ProvideStore,
 | |
| 	wire.Bind(new(plugins.ErrorResolver), new(*pluginerrs.Store)),
 | |
| 	registry.ProvideService,
 | |
| 	wire.Bind(new(registry.Service), new(*registry.InMemory)),
 | |
| 	repo.ProvideService,
 | |
| 	wire.Bind(new(repo.Service), new(*repo.Manager)),
 | |
| 	licensing.ProvideLicensing,
 | |
| 	wire.Bind(new(plugins.Licensing), new(*licensing.Service)),
 | |
| 	wire.Bind(new(sources.Registry), new(*sources.Service)),
 | |
| 	sources.ProvideService,
 | |
| 	pluginSettings.ProvideService,
 | |
| 	wire.Bind(new(pluginsettings.Service), new(*pluginSettings.Service)),
 | |
| 	filestore.ProvideService,
 | |
| 	wire.Bind(new(plugins.FileStore), new(*filestore.Service)),
 | |
| 	wire.Bind(new(plugins.SignatureCalculator), new(*signature.Signature)),
 | |
| 	signature.ProvideService,
 | |
| 	wire.Bind(new(plugins.KeyStore), new(*keystore.Service)),
 | |
| 	keystore.ProvideService,
 | |
| 	wire.Bind(new(plugins.KeyRetriever), new(*keyretriever.Service)),
 | |
| 	keyretriever.ProvideService,
 | |
| 	dynamic.ProvideService,
 | |
| 	serviceregistration.ProvideService,
 | |
| 	wire.Bind(new(auth.ExternalServiceRegistry), new(*serviceregistration.Service)),
 | |
| 	renderer.ProvideService,
 | |
| 	wire.Bind(new(rendering.PluginManager), new(*renderer.Manager)),
 | |
| 	pluginexternal.ProvideService,
 | |
| )
 | |
| 
 | |
| // WireExtensionSet provides a wire.ProviderSet of plugin providers that can be
 | |
| // extended.
 | |
| var WireExtensionSet = wire.NewSet(
 | |
| 	provider.ProvideService,
 | |
| 	wire.Bind(new(plugins.BackendFactoryProvider), new(*provider.Service)),
 | |
| 	signature.ProvideOSSAuthorizer,
 | |
| 	wire.Bind(new(plugins.PluginLoaderAuthorizer), new(*signature.UnsignedPluginAuthorizer)),
 | |
| 	wire.Bind(new(finder.Finder), new(*finder.Local)),
 | |
| 	finder.ProvideLocalFinder,
 | |
| 	ProvideClientDecorator,
 | |
| 	wire.Bind(new(plugins.Client), new(*client.Decorator)),
 | |
| )
 | |
| 
 | |
| func ProvideClientDecorator(
 | |
| 	cfg *setting.Cfg,
 | |
| 	pluginRegistry registry.Service,
 | |
| 	oAuthTokenService oauthtoken.OAuthTokenService,
 | |
| 	tracer tracing.Tracer,
 | |
| 	cachingService caching.CachingService,
 | |
| 	features *featuremgmt.FeatureManager,
 | |
| 	promRegisterer prometheus.Registerer,
 | |
| ) (*client.Decorator, error) {
 | |
| 	return NewClientDecorator(cfg, pluginRegistry, oAuthTokenService, tracer, cachingService, features, promRegisterer, pluginRegistry)
 | |
| }
 | |
| 
 | |
| func NewClientDecorator(
 | |
| 	cfg *setting.Cfg,
 | |
| 	pluginRegistry registry.Service, oAuthTokenService oauthtoken.OAuthTokenService,
 | |
| 	tracer tracing.Tracer, cachingService caching.CachingService, features *featuremgmt.FeatureManager,
 | |
| 	promRegisterer prometheus.Registerer, registry registry.Service,
 | |
| ) (*client.Decorator, error) {
 | |
| 	c := client.ProvideService(pluginRegistry)
 | |
| 	middlewares := CreateMiddlewares(cfg, oAuthTokenService, tracer, cachingService, features, promRegisterer, registry)
 | |
| 	return client.NewDecorator(c, middlewares...)
 | |
| }
 | |
| 
 | |
| func CreateMiddlewares(cfg *setting.Cfg, oAuthTokenService oauthtoken.OAuthTokenService, tracer tracing.Tracer, cachingService caching.CachingService, features *featuremgmt.FeatureManager, promRegisterer prometheus.Registerer, registry registry.Service) []plugins.ClientMiddleware {
 | |
| 	middlewares := []plugins.ClientMiddleware{
 | |
| 		clientmiddleware.NewPluginRequestMetaMiddleware(),
 | |
| 	}
 | |
| 
 | |
| 	skipCookiesNames := []string{cfg.LoginCookieName}
 | |
| 	middlewares = append(middlewares,
 | |
| 		clientmiddleware.NewTracingMiddleware(tracer),
 | |
| 		clientmiddleware.NewMetricsMiddleware(promRegisterer, registry, features),
 | |
| 		clientmiddleware.NewContextualLoggerMiddleware(),
 | |
| 		clientmiddleware.NewLoggerMiddleware(cfg, log.New("plugin.instrumentation"), features),
 | |
| 		clientmiddleware.NewTracingHeaderMiddleware(),
 | |
| 		clientmiddleware.NewClearAuthHeadersMiddleware(),
 | |
| 		clientmiddleware.NewOAuthTokenMiddleware(oAuthTokenService),
 | |
| 		clientmiddleware.NewCookiesMiddleware(skipCookiesNames),
 | |
| 		clientmiddleware.NewResourceResponseMiddleware(),
 | |
| 		clientmiddleware.NewCachingMiddlewareWithFeatureManager(cachingService, features),
 | |
| 	)
 | |
| 
 | |
| 	if features.IsEnabledGlobally(featuremgmt.FlagIdForwarding) {
 | |
| 		middlewares = append(middlewares, clientmiddleware.NewForwardIDMiddleware())
 | |
| 	}
 | |
| 
 | |
| 	if cfg.SendUserHeader {
 | |
| 		middlewares = append(middlewares, clientmiddleware.NewUserHeaderMiddleware())
 | |
| 	}
 | |
| 
 | |
| 	if cfg.IPRangeACEnabled {
 | |
| 		middlewares = append(middlewares, clientmiddleware.NewHostedGrafanaACHeaderMiddleware(cfg))
 | |
| 	}
 | |
| 
 | |
| 	middlewares = append(middlewares, clientmiddleware.NewHTTPClientMiddleware())
 | |
| 
 | |
| 	// StatusSourceMiddleware should be at the very bottom, or any middlewares below it won't see the
 | |
| 	// correct status source in their context.Context
 | |
| 	middlewares = append(middlewares, clientmiddleware.NewStatusSourceMiddleware())
 | |
| 
 | |
| 	return middlewares
 | |
| }
 |