forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
117 lines (88 loc) · 3.75 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Package mongodb provides Mongo DB dataplane clients for Microsoft Azure CosmosDb Services.
package mongodb
// Copyright 2017 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import (
"context"
"crypto/tls"
"fmt"
"net"
"strings"
"github.com/Azure/azure-sdk-for-go/services/cosmos-db/mgmt/2015-04-08/documentdb"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/adal"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/globalsign/mgo"
)
const (
cosmosDbConnectionPort = 10255
)
// NewMongoDBClientWithConnectionString returns a MongoDb session to communicate with CosmosDB using a connection string.
func NewMongoDBClientWithConnectionString(connectionString string) (*mgo.Session, error) {
// strip out the "ssl=true" option as MongoDb driver does not support by default SSL.
connectionString = strings.Replace(connectionString, "ssl=true", "", -1)
dialInfo, err := mgo.ParseURL(connectionString)
if err != nil {
return nil, err
}
return NewMongoDBClient(dialInfo)
}
// NewMongoDBClientWithCredentials returns a MongoDb session to communicate with CosmosDB using a username and a password.
func NewMongoDBClientWithCredentials(username, password, host string) (*mgo.Session, error) {
dialInfo := &mgo.DialInfo{
Addrs: []string{fmt.Sprintf("%s:%d", host, cosmosDbConnectionPort)},
Username: username,
Password: password,
}
return NewMongoDBClient(dialInfo)
}
// NewMongoDBClientWithSPToken returns a session to communicate with CosmosDB using an auth token.
func NewMongoDBClientWithSPToken(spToken *adal.ServicePrincipalToken, subscriptionID, resourceGroup, account string, environment azure.Environment) (*mgo.Session, error) {
authorizer := autorest.NewBearerAuthorizer(spToken)
cosmosDbClient := documentdb.NewDatabaseAccountsClientWithBaseURI(environment.ResourceManagerEndpoint, subscriptionID)
cosmosDbClient.Authorizer = authorizer
cosmosDbClient.AddToUserAgent("dataplane mongodb")
result, err := cosmosDbClient.ListConnectionStrings(context.Background(), resourceGroup, account)
if err != nil {
return nil, err
}
connectionStrings := *result.ConnectionStrings
for _, connectionString := range connectionStrings {
session, err := NewMongoDBClientWithConnectionString(*connectionString.ConnectionString)
if session != nil && err == nil {
return session, nil
}
}
return nil, err
}
// NewMongoDBClientWithMSI returns a MongoDB session to communicate with CosmosDB using MSI.
func NewMongoDBClientWithMSI(subscriptionID, resourceGroup, account string, environment azure.Environment) (*mgo.Session, error) {
msiEndpoint, err := adal.GetMSIVMEndpoint()
spToken, err := adal.NewServicePrincipalTokenFromMSI(msiEndpoint, environment.ResourceManagerEndpoint)
if err != nil {
return nil, err
}
return NewMongoDBClientWithSPToken(spToken, subscriptionID, resourceGroup, account, environment)
}
// NewMongoDBClient returns a MongoDB session to communicate with CosmosDB.
func NewMongoDBClient(dialInfo *mgo.DialInfo) (*mgo.Session, error) {
dialInfo.DialServer = func(addr *mgo.ServerAddr) (net.Conn, error) {
return tls.Dial("tcp", addr.String(), &tls.Config{})
}
session, err := mgo.DialWithInfo(dialInfo)
if err != nil {
return nil, err
}
return session, nil
}