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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package azuredevops
import (
"context"
"crypto/tls"
"encoding/base64"
"strings"
"sync"
"time"
"github.com/google/uuid"
)
// Creates a new Azure DevOps connection instance using a personal access token.
func NewPatConnection(organizationUrl string, personalAccessToken string) *Connection {
authorizationString := CreateBasicAuthHeaderValue("", personalAccessToken)
organizationUrl = normalizeUrl(organizationUrl)
return &Connection{
AuthorizationString: authorizationString,
BaseUrl: organizationUrl,
SuppressFedAuthRedirect: true,
}
}
func NewAnonymousConnection(organizationUrl string) *Connection {
organizationUrl = normalizeUrl(organizationUrl)
return &Connection{
BaseUrl: organizationUrl,
SuppressFedAuthRedirect: true,
}
}
type Connection struct {
AuthorizationString string
BaseUrl string
UserAgent string
SuppressFedAuthRedirect bool
ForceMsaPassThrough bool
Timeout *time.Duration
TlsConfig *tls.Config
clientCache map[string]Client
clientCacheLock sync.RWMutex
resourceAreaCache map[uuid.UUID]ResourceAreaInfo
resourceAreaCacheLock sync.RWMutex
}
func CreateBasicAuthHeaderValue(username, password string) string {
auth := username + ":" + password
return "Basic " + base64.StdEncoding.EncodeToString([]byte(auth))
}
func normalizeUrl(url string) string {
return strings.ToLower(strings.TrimRight(url, "/"))
}
func (connection *Connection) GetClientByResourceAreaId(ctx context.Context, resourceAreaID uuid.UUID) (*Client, error) {
resourceAreaInfo, err := connection.getResourceAreaInfo(ctx, resourceAreaID)
if err != nil {
return nil, err
}
var client *Client
if resourceAreaInfo != nil {
client = connection.GetClientByUrl(*resourceAreaInfo.LocationUrl)
} else {
// resourceAreaInfo will be nil for on prem servers
client = connection.GetClientByUrl(connection.BaseUrl)
}
return client, nil
}
func (connection *Connection) GetClientByUrl(baseUrl string) *Client {
normalizedUrl := normalizeUrl(baseUrl)
azureDevOpsClient, ok := connection.getClientCacheEntry(normalizedUrl)
if !ok {
azureDevOpsClient = NewClient(connection, normalizedUrl)
connection.setClientCacheEntry(normalizedUrl, azureDevOpsClient)
}
return azureDevOpsClient
}
func (connection *Connection) getResourceAreaInfo(ctx context.Context, resourceAreaId uuid.UUID) (*ResourceAreaInfo, error) {
resourceAreaInfo, ok := connection.getResourceAreaCacheEntry(resourceAreaId)
if !ok {
client := connection.GetClientByUrl(connection.BaseUrl)
resourceAreaInfos, err := client.GetResourceAreas(ctx)
if err != nil {
return nil, err
}
if len(*resourceAreaInfos) > 0 {
for _, resourceEntry := range *resourceAreaInfos {
connection.setResourceAreaCacheEntry(*resourceEntry.Id, &resourceEntry)
}
resourceAreaInfo, ok = connection.getResourceAreaCacheEntry(resourceAreaId)
} else {
// on prem servers return an empty list
return nil, nil
}
}
if ok {
return resourceAreaInfo, nil
}
return nil, &ResourceAreaIdNotRegisteredError{resourceAreaId, connection.BaseUrl}
}
// Client Cache by Url
func (connection *Connection) getClientCacheEntry(url string) (*Client, bool) {
if connection.clientCache == nil {
return nil, false
}
connection.clientCacheLock.RLock()
defer connection.clientCacheLock.RUnlock()
client, ok := connection.clientCache[url]
return &client, ok
}
func (connection *Connection) setClientCacheEntry(url string, client *Client) {
connection.clientCacheLock.Lock()
defer connection.clientCacheLock.Unlock()
if connection.clientCache == nil {
connection.clientCache = make(map[string]Client)
}
connection.clientCache[url] = *client
}
func (connection *Connection) getResourceAreaCacheEntry(resourceAreaId uuid.UUID) (*ResourceAreaInfo, bool) {
if connection.resourceAreaCache == nil {
return nil, false
}
connection.resourceAreaCacheLock.RLock()
defer connection.resourceAreaCacheLock.RUnlock()
resourceAreaInfo, ok := connection.resourceAreaCache[resourceAreaId]
return &resourceAreaInfo, ok
}
func (connection *Connection) setResourceAreaCacheEntry(resourceAreaId uuid.UUID, resourceAreaInfo *ResourceAreaInfo) {
connection.resourceAreaCacheLock.Lock()
defer connection.resourceAreaCacheLock.Unlock()
if connection.resourceAreaCache == nil {
connection.resourceAreaCache = make(map[uuid.UUID]ResourceAreaInfo)
}
connection.resourceAreaCache[resourceAreaId] = *resourceAreaInfo
}
type ResourceAreaIdNotRegisteredError struct {
ResourceAreaId uuid.UUID
Url string
}
func (e ResourceAreaIdNotRegisteredError) Error() string {
return "API resource area Id " + e.ResourceAreaId.String() + " is not registered on " + e.Url + "."
}
|