-
Notifications
You must be signed in to change notification settings - Fork 56
/
ResourceIdentifier.cs
153 lines (132 loc) · 5.42 KB
/
ResourceIdentifier.cs
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
// ----------------------------------------------------------------------------------
//
// Copyright 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.
// ----------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.Azure.Management.Internal.Resources.Utilities.Models
{
public class ResourceIdentifier
{
public string ResourceType { get; set; }
public string ResourceGroupName { get; set; }
public string ResourceName { get; set; }
public string ParentResource { get; set; }
public string Subscription { get; set; }
public ResourceIdentifier() { }
public ResourceIdentifier(string idFromServer)
{
if (!string.IsNullOrEmpty(idFromServer))
{
string[] tokens = idFromServer.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
if (tokens.Length < 8)
{
throw new ArgumentException("Invalid format of the resource identifier.", "idFromServer");
}
Subscription = tokens[1];
ResourceGroupName = tokens[3];
ResourceName = tokens[tokens.Length - 1];
List<string> resourceTypeBuilder = new List<string>();
resourceTypeBuilder.Add(tokens[5]);
List<string> parentResourceBuilder = new List<string>();
for (int i = 6; i <= tokens.Length - 3; i++)
{
parentResourceBuilder.Add(tokens[i]);
// Add every other token to type
if (i % 2 == 0)
{
resourceTypeBuilder.Add(tokens[i]);
}
}
resourceTypeBuilder.Add(tokens[tokens.Length - 2]);
if (parentResourceBuilder.Count > 0)
{
ParentResource = string.Join("/", parentResourceBuilder);
}
if (resourceTypeBuilder.Count > 0)
{
ResourceType = string.Join("/", resourceTypeBuilder);
}
}
}
public static ResourceIdentifier FromResourceGroupIdentifier(string resourceGroupId)
{
if (!string.IsNullOrEmpty(resourceGroupId))
{
string[] tokens = resourceGroupId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
if (tokens.Length < 4)
{
throw new ArgumentException("Invalid format of the resource group identifier. Expected 'subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}'.", "resourceGroupId");
}
return new ResourceIdentifier
{
Subscription = tokens[1],
ResourceGroupName = tokens[3],
};
}
return new ResourceIdentifier();
}
public static string GetProviderFromResourceType(string resourceType)
{
if (resourceType == null)
{
return null;
}
int indexOfSlash = resourceType.IndexOf('/');
if (indexOfSlash < 0)
{
return string.Empty;
}
else
{
return resourceType.Substring(0, indexOfSlash);
}
}
public static string GetTypeFromResourceType(string resourceType)
{
if (resourceType == null)
{
return null;
}
int lastIndexOfSlash = resourceType.LastIndexOf('/');
if (lastIndexOfSlash < 0)
{
return string.Empty;
}
else
{
return resourceType.Substring(lastIndexOfSlash + 1);
}
}
public override string ToString()
{
string provider = GetProviderFromResourceType(ResourceType);
string type = GetTypeFromResourceType(ResourceType);
string parentAndType = string.IsNullOrEmpty(ParentResource) ? type : ParentResource + "/" + type;
StringBuilder resourceId = new StringBuilder();
AppendIfNotNull(resourceId, "/subscriptions/{0}", Subscription);
AppendIfNotNull(resourceId, "/resourceGroups/{0}", ResourceGroupName);
AppendIfNotNull(resourceId, "/providers/{0}", provider);
AppendIfNotNull(resourceId, "/{0}", parentAndType);
AppendIfNotNull(resourceId, "/{0}", ResourceName);
return resourceId.ToString();
}
private void AppendIfNotNull(StringBuilder resourceId, string format, string value)
{
if (!string.IsNullOrEmpty(value))
{
resourceId.AppendFormat(format, value);
}
}
}
}