-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExport-OneShellData.ps1
143 lines (142 loc) · 5.02 KB
/
Export-OneShellData.ps1
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
Function Export-OneShellData
{
[cmdletbinding(DefaultParameterSetName = 'delimited')]
param(
$ExportFolderPath = $script:ExportDataPath
,
[string]$DataToExportTitle
,
$DataToExport
,
[parameter(ParameterSetName = 'xml/json')]
[int]$Depth = 2
,
[parameter(ParameterSetName = 'delimited')]
[parameter(ParameterSetName = 'xml/json')]
[ValidateSet('xml', 'csv', 'json', 'clixml')]
[string]$DataType
,
[parameter(ParameterSetName = 'delimited')]
[switch]$Append
,
[parameter(ParameterSetName = 'delimited')]
[string]$Delimiter = ','
,
[switch]$ReturnExportFilePath
,
[parameter()]
[ValidateSet('Unicode', 'BigEndianUnicode', 'Ascii', 'Default', 'UTF8', 'UTF8NOBOM', 'UTF7', 'UTF32')]
[string]$Encoding = 'Ascii'
)
#Determine Export File Path
#validate append
if ($Append -eq $true -and $DataType -ne 'csv')
{
throw("-Append is not supported with data type $DataType. It is only supported with data type 'csv'")
}
Function GetTimeStamp
{
[string]$Stamp = Get-Date -Format yyyyMMdd-HHmmss
#$([DateTime]::Now.ToShortDateString()) $([DateTime]::Now.ToShortTimeString()) #check if this is faster to use than Get-Date
$Stamp
}
$stamp = GetTimeStamp
#Build the ExportFilePath value
switch ($DataType)
{
'xml'
{
$ExportFilePath = Join-Path -Path $exportFolderPath -ChildPath $($Stamp + $DataToExportTitle + '.xml')
}#xml
'clixml'
{
$ExportFilePath = Join-Path -Path $exportFolderPath -ChildPath $($Stamp + $DataToExportTitle + '.xml')
}#xml
'json'
{
$ExportFilePath = Join-Path -Path $exportFolderPath -ChildPath $($Stamp + $DataToExportTitle + '.json')
}#json
'csv'
{
if ($Append)
{
$mostrecent = @(get-childitem -Path $ExportFolderPath -Filter "*$DataToExportTitle.csv" | Sort-Object -Property CreationTime -Descending | Select-Object -First 1)
if ($mostrecent.count -eq 1)
{
$ExportFilePath = $mostrecent[0].fullname
}#if
else {$ExportFilePath = Join-Path -Path $exportFolderPath -ChildPath $($Stamp + $DataToExportTitle + '.csv')}#else
}#if
else {$ExportFilePath = Join-Path -Path $exportFolderPath -ChildPath $($Stamp + $DataToExportTitle + '.csv')}#else
}#csv
}#switch $dataType
#Attempt Export of Data to File
$message = "Export of $DataToExportTitle as Data Type $DataType to File $ExportFilePath"
Write-OneShellLog -Message $message -EntryType Attempting
Try
{
$formattedData = $(
switch ($DataType)
{
'xml'
{
$DataToExport | ConvertTo-Xml -Depth $Depth -ErrorAction Stop -NoTypeInformation -As String
}#xml
'clixml'
{
#$DataToExport | ConvertTo-CliXML -Depth -errorAction Stop -Encoding $Encoding #not supported in Windows PowerShell, also need to handle Encoding if UTF8NOBOM is specified
}#xml
'json'
{
$DataToExport | ConvertTo-Json -Depth $Depth -ErrorAction Stop
}#json
'csv'
{
$DataToExport | ConvertTo-Csv -ErrorAction Stop -NoTypeInformation -Delimiter $Delimiter
}#csv
}
)
$outFileParams = @{
ErrorAction = 'Stop'
LiteralPath = $ExportFilePath
}
switch ($Encoding)
{
'UTF8NOBOM'
{
if ($Append)
{
$outFileParams.Append = $true
$outFileParams.InputObject = $formattedData
}
Out-FileUtf8NoBom @outFileParams
}
Default
{
$outFileParams.Encoding = $Encoding
if ($DataType -eq 'clixml')
{
$outFileParams.Depth = $Depth
$outFileParams.InputObject = $DataToExport
Export-Clixml @outFileParams
}
else
{
$outFileParams.InputObject = $formattedData
if ($append)
{
$outFileParams.Append = $true
}
Out-File @outFileParams
}
}
}
if ($ReturnExportFilePath) {$ExportFilePath}
Write-OneShellLog -Message $message -EntryType Succeeded
}#try
Catch
{
Write-OneShellLog -Message "FAILED: Export of $DataToExportTitle as Data Type $DataType to File $ExportFilePath" -Verbose -ErrorLog
Write-OneShellLog -Message $_.tostring() -ErrorLog
}#catch
}