-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRepair-Command.ps1
157 lines (135 loc) · 4.63 KB
/
Repair-Command.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
function Repair-Command
{
<#
.Synopsis
Repair-Command attempts to fix your scripts.
.Description
Repair-Command will use a set of repair scripts to attempt to automatically
resolve an issue uncovered with ScriptCop.
Repair-Command will take all issues thru the pipeline, and will output
an object with the Rule, Problem, ItemWithProblem, and WasFixed.
.Link
Test-Command
.Example
Get-Module MyModule | Test-Command | Repair-Command
#>
[OutputType([Nullable])]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseDeclaredVarsMoreThanAssignments", "holdup", Justification="PSScriptAnalyzer false positive.")]
param(
# The Rule that flagged the problem
[Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true)]
[ValidateScript({
if ($_ -is [Management.Automation.CommandInfo]) {
return $true
}
if ($_ -is [Management.Automation.PSModuleInfo]) {
return $true
}
throw 'Must be a CommandInfo or a PSModuleInfo'
})]
[PSObject]$Rule,
# The Problem
[Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true)]
[Management.Automation.ErrorRecord]
$Problem,
# The Item with the Problem
[Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true)]
[ValidateScript({
if ($_ -is [Management.Automation.CommandInfo]) {
return $true
}
if ($_ -is [Management.Automation.PSModuleInfo]) {
return $true
}
throw 'Must be a CommandInfo or a PSModuleInfo'
})]
[PSObject]$ItemWithProblem,
# If set, only fixers which have indicated they will not require user interaction will be run.
[Switch]$NotInteractive
)
#region Initialize The List of Problems
begin {
# Make a quick pair of functions to help people output the right thing
function CouldNotFixProblem
{
param([string]$ErrorId)
$info = @{
WasIdentified=$false
CouldFix=$false
WasFixed=$false
ErrorId = $errorID
Problem=$Problem
ItemWithProblem=$ItemWithProblem
Rule=$Rule
FixRequiresRescan=$false
}
New-Object PSObject -Property $Info
}
function TriedToFixProblem
{
param([string]$ErrorId,
[Switch]$FixRequiresRescan)
$stillHasThisProblem = $ItemWithProblem |
Test-Command -Rule "$Rule" |
Where-Object {
$_.Problem.FullyQualifiedErrorId -like "$ErrorId*"
}
New-Object PSObject -Property @{
WasIdentified = $true
CouldFix = $true
WasFixed = -not ($stillHasThisProblem -as [bool])
ErrorId = $errorId
Problem=$Problem
ItemWithProblem=$ItemWithProblem
Rule=$Rule
FixRequiresRescan=$FixRequiresRescan
}
}
# Declare a list to hold the problems (for speed)
$problems = New-Object Collections.ArrayList
}
#endregion
#region Add Each Problem to the List
process {
$null = $problems.Add((New-Object PSObject -Property $psBoundParameters))
Write-Verbose "Processing
$($_ | Out-String)
"
}
#endregion
end {
try {
#region Fix the Problems That You Can
$script:ScriptCopFixers |
ForEach-Object -Begin {
$holdUp = $false
} {
$fixer = $_
$problems |
& $fixer |
ForEach-Object {
$fix = $_
if ($fix.FixRequiresRescan) {
$holdUp = $true
}
throw $holdup
}
trap
{
if (-not (Get-Variable -Scope 1 -Name holdUp -ErrorAction SilentlyContinue)) {
throw $_
} else { break }
}
}
} catch {
if ($_.InvocationInfo.Line -like '*throw $holdup*') {
Write-Warning "Fixed $($fix.Problem) on $($Fix.ItemWithProblem), but that fix changed files, so you must rescan"
return
} else {
Write-Error -ErrorRecord $_
return
}
}
#endregion
}
}