fix powershell json

This commit is contained in:
garnier-quentin 2020-07-02 17:47:53 +02:00
parent c651172550
commit de8faa0fa4
17 changed files with 27 additions and 19 deletions

View File

@ -226,7 +226,9 @@ sub manage_selection {
};
my $id2 = 1;
foreach my $service (@{$node->{services}}) {
my $services = (ref($node->{services}) eq 'ARRAY') ? $node->{services} : [ $node->{services} ];
foreach my $service (@$services) {
$self->{vm}->{$id}->{service}->{$id2} = {
vm => $node->{name},
service => $service->{service},

View File

@ -139,8 +139,8 @@ sub manage_selection {
my $id = 1;
foreach my $node (@$decoded) {
if (defined($self->{option_results}->{filter_vm}) && $self->{option_results}->{filter_vm} ne '' &&
$name !~ /$self->{option_results}->{filter_vm}/i) {
$self->{output}->output_add(long_msg => "skipping '" . $name . "': no matching filter.", debug => 1);
$node->{name} !~ /$self->{option_results}->{filter_vm}/i) {
$self->{output}->output_add(long_msg => "skipping '" . $node->{name} . "': no matching filter.", debug => 1);
next;
}

View File

@ -149,7 +149,8 @@ sub manage_selection {
my ($name, $status, $note, $content) = ($1, $2, $3, $4);
my $checkpoint = { backing => -1, snapshot => -1 };
foreach my $chkpt (@{$node->{checkpoints}}) {
my $checkpoints = (ref($node->{checkpoints}) eq 'ARRAY') ? $node->{checkpoints} : [ $node->{checkpoints} ];
foreach my $chkpt (@$checkpoints) {
$chkpt->{creation_time} =~ s/,/\./g;
$checkpoint->{ $chkpt->{type} } = $chkpt->{creation_time} if ($chkpt->{creation_time} > 0 && ($checkpoint->{ $chkpt->{type} } == -1 || $checkpoint->{ $chkpt->{type} } > $chkpt->{creation_time}));
}

View File

@ -162,7 +162,8 @@ sub manage_selection {
$node->{status} = $scvmm_vm_status->{ $node->{status} };
my $chkpt = -1;
foreach (@{$node->{checkpoints}}) {
my $checkpoints = (ref($node->{checkpoints}) eq 'ARRAY') ? $node->{checkpoints} : [ $node->{checkpoints} ];
foreach (@$checkpoints) {
$chkpt = $_->{added_time} if ($chkpt == -1 || $chkpt > $_->{added_time});
}
next if ($chkpt == -1);

View File

@ -41,7 +41,7 @@ sub convert_to_json {
my (%options) = @_;
my $ps = q{
function ConvertTo-JSON-20($maxDepth = 4) {
function ConvertTo-JSON-20($maxDepth = 4,$forceArray = $false) {
begin {
$data = @()
}
@ -50,7 +50,11 @@ function ConvertTo-JSON-20($maxDepth = 4) {
}
end{
$value = $data
if ($data.length -eq 1 -and $forceArray -eq $false) {
$value = $data[0]
} else {
$value = $data
}
if ($value -eq $null) {
return "null"

View File

@ -57,7 +57,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -71,7 +71,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -52,7 +52,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -82,7 +82,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -69,7 +69,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -70,7 +70,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -73,7 +73,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -63,7 +63,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -77,7 +77,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -67,7 +67,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -70,7 +70,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception

View File

@ -63,7 +63,7 @@ Try {
$items.Add($item)
}
$jsonString = $items | ConvertTo-JSON-20
$jsonString = $items | ConvertTo-JSON-20 -forceArray $true
Write-Host $jsonString
} Catch {
Write-Host $Error[0].Exception