This repository was archived by the owner on Oct 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathVaporShell.Core.cs
129 lines (117 loc) · 4.04 KB
/
VaporShell.Core.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Management.Automation;
namespace VaporShell.Core
{
public class TransformTagAttribute : ArgumentTransformationAttribute
{
private EngineIntrinsics engineIntrinsics;
private PSObject ConvertToTag(object key, object value)
{
PSObject tag = new PSObject();
tag.Members.Add(new PSNoteProperty("Key", key.ToString()));
tag.Members.Add(new PSNoteProperty("Value", value));
tag.TypeNames.Insert(0, "Vaporshell.Resource.Tag");
return tag;
}
private bool TryGetKey(IDictionary dictionary, string keyName, ref object KeyValue)
{
foreach (object key in dictionary.Keys)
{
if (key.ToString().ToLower() == keyName.ToLower())
{
KeyValue = dictionary[key];
return true;
}
}
return false;
}
private IEnumerable<PSObject> TransformHashtable(IDictionary inputData)
{
object keyName = null;
object value = null;
if (this.TryGetKey(inputData, "key", ref keyName) && this.TryGetKey(inputData, "value", ref value))
{
yield return this.ConvertToTag(keyName, value);
}
else
{
foreach (string key in inputData.Keys)
{
yield return this.ConvertToTag(key, inputData[key]);
}
}
}
private IEnumerable<PSObject> TransformPSObject(PSObject inputData)
{
var props = new List<string>();
foreach (var property in inputData.Properties)
{
props.Add(property.Name.ToLower());
}
if (props.Contains("key") && props.Contains("value"))
{
yield return this.ConvertToTag(inputData.Properties["Key"].Value, inputData.Properties["Value"].Value);
}
else
{
foreach (var property in inputData.Properties)
{
yield return this.ConvertToTag(property.Name, property.Value);
}
}
}
private IEnumerable<PSObject> TransformSingle(object inputData)
{
if (inputData is IDictionary)
{
foreach (PSObject tag in this.TransformHashtable(inputData as IDictionary))
{
yield return tag;
}
}
else if (inputData is PSObject)
{
PSObject psObject = inputData as PSObject;
if (psObject.TypeNames.Contains("Vaporshell.Resource.Tag"))
{
yield return psObject;
}
else if (psObject.TypeNames.Contains("System.Management.Automation.PSCustomObject"))
{
foreach (PSObject tag in this.TransformPSObject(psObject))
{
yield return tag;
}
}
}
}
private IEnumerable<PSObject> TransformData(object inputData)
{
if (inputData is Array)
{
foreach (object item in inputData as Array)
{
// This is returning an unenumerated array
foreach (PSObject tag in this.TransformSingle(item))
{
yield return tag;
}
}
}
else
{
foreach (PSObject tag in this.TransformSingle(inputData))
{
yield return tag;
}
}
}
public override object Transform(EngineIntrinsics engineIntrinsics, object inputData)
{
this.engineIntrinsics = engineIntrinsics;
return this.TransformData(inputData);
}
}
}