mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package azuremonitor
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana-azure-sdk-go/azcredentials"
|
|
"github.com/grafana/grafana-azure-sdk-go/azhttpclient"
|
|
sdkhttpclient "github.com/grafana/grafana-plugin-sdk-go/backend/httpclient"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/httpclient"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/tsdb/azuremonitor/types"
|
|
)
|
|
|
|
func newHTTPClient(route types.AzRoute, model types.DatasourceInfo, cfg *setting.Cfg, clientProvider httpclient.Provider) (*http.Client, error) {
|
|
opts := sdkhttpclient.Options{
|
|
Headers: route.Headers,
|
|
}
|
|
|
|
// Use Azure credentials if the route has OAuth scopes configured
|
|
if len(route.Scopes) > 0 {
|
|
if cred, ok := model.Credentials.(*azcredentials.AzureClientSecretCredentials); ok && cred.ClientSecret == "" {
|
|
return nil, fmt.Errorf("unable to initialize HTTP Client: clientSecret not found")
|
|
}
|
|
azhttpclient.AddAzureAuthentication(&opts, cfg.Azure, model.Credentials, route.Scopes)
|
|
}
|
|
|
|
return clientProvider.New(opts)
|
|
}
|