win_say: Clean up and check-mode support
Changes include: - Clean up parameter handling - Replace $result PSObject with a hash - Added check-mode support
This commit is contained in:
parent
576ff0728d
commit
aae1a00d7e
1 changed files with 39 additions and 32 deletions
|
@ -19,14 +19,20 @@
|
|||
# WANT_JSON
|
||||
# POWERSHELL_COMMON
|
||||
|
||||
$params = Parse-Args $args;
|
||||
$result = New-Object PSObject;
|
||||
$msg = Get-AnsibleParam -obj $params -name "msg"
|
||||
$params = Parse-Args $args -supports_check_mode $true
|
||||
$check_mode = Get-AnsibleParam -obj $params -name "_ansible_check_mode" -type "bool" -default $false
|
||||
|
||||
$msg = Get-AnsibleParam -obj $params -name "msg" -type "str"
|
||||
$msg_file = Get-AnsibleParam -obj $params -name "msg_file" -type "path"
|
||||
$start_sound_path = Get-AnsibleParam -obj $params -name "start_sound_path" -type "path"
|
||||
$end_sound_path = Get-AnsibleParam -obj $params -name "end_sound_path" -type "path"
|
||||
$voice = Get-AnsibleParam -obj $params -name "voice"
|
||||
$speech_speed = Get-AnsibleParam -obj $params -name "speech_speed"
|
||||
$voice = Get-AnsibleParam -obj $params -name "voice" -type "str"
|
||||
$speech_speed = Get-AnsibleParam -obj $params -name "speech_speed" -type "str"
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
}
|
||||
|
||||
$speed = 0
|
||||
$words = $null
|
||||
|
||||
|
@ -35,24 +41,20 @@ if ($speech_speed -ne $null) {
|
|||
$speed = [convert]::ToInt32($speech_speed, 10)
|
||||
} catch {
|
||||
Fail-Json $result "speech_speed needs to a integer in the range -10 to 10. The value $speech_speed could not be converted to an integer."
|
||||
|
||||
}
|
||||
if ($speed -lt -10 -or $speed -gt 10) {
|
||||
Fail-Json $result "speech_speed needs to a integer in the range -10 to 10. The value $speech_speed is outside this range."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ($msg_file -ne $null -and $msg -ne $null) {
|
||||
Fail-Json $result "Please specify either msg_file or msg parameters, not both"
|
||||
}
|
||||
|
||||
if ($msg_file -eq $null -and $msg -eq $null -and $start_sound_path -eq $null -and $end_sound_path -eq $null) {
|
||||
Fail-Json $result "No msg_file, msg, start_sound_path, or end_sound_path parameters have been specified. Please specify at least one so the module has something to do"
|
||||
|
||||
}
|
||||
|
||||
|
||||
if ($msg_file -ne $null) {
|
||||
if (Test-Path $msg_file) {
|
||||
$words = Get-Content $msg_file | Out-String
|
||||
|
@ -63,7 +65,9 @@ if ($msg_file -ne $null) {
|
|||
|
||||
if ($start_sound_path -ne $null) {
|
||||
if (Test-Path $start_sound_path) {
|
||||
(new-object Media.SoundPlayer $start_sound_path).playSync();
|
||||
if (-not $check_mode) {
|
||||
(new-object Media.SoundPlayer $start_sound_path).playSync()
|
||||
}
|
||||
} else {
|
||||
Fail-Json $result "Start sound file $start_sound_path could not be found or opened. Ensure you have specified the full path to the file, and the ansible windows user has permission to read the file."
|
||||
}
|
||||
|
@ -80,27 +84,30 @@ if ($words -ne $null) {
|
|||
try {
|
||||
$tts.SelectVoice($voice)
|
||||
} catch [System.Management.Automation.MethodInvocationException] {
|
||||
Set-Attr $result "voice_info" "Could not load voice $voice, using system default voice."
|
||||
$result.voice_info = "Could not load voice $voice, using system default voice."
|
||||
}
|
||||
}
|
||||
|
||||
Set-Attr $result "voice" $tts.Voice.Name
|
||||
$result.voice = $tts.Voice.Name
|
||||
if ($speed -ne 0) {
|
||||
$tts.Rate = $speed
|
||||
}
|
||||
if (-not $check_mode) {
|
||||
$tts.Speak($words)
|
||||
}
|
||||
$tts.Dispose()
|
||||
}
|
||||
|
||||
if ($end_sound_path -ne $null) {
|
||||
if (Test-Path $end_sound_path) {
|
||||
(new-object Media.SoundPlayer $end_sound_path).playSync();
|
||||
if (-not $check_mode) {
|
||||
(new-object Media.SoundPlayer $end_sound_path).playSync()
|
||||
}
|
||||
} else {
|
||||
Fail-Json $result "End sound file $start_sound_path could not be found or opened. Ensure you have specified the full path to the file, and the ansible windows user has permission to read the file."
|
||||
}
|
||||
}
|
||||
|
||||
Set-Attr $result "changed" $false;
|
||||
Set-Attr $result "message_text" $words;
|
||||
$result.message_text = $words
|
||||
|
||||
Exit-Json $result;
|
||||
Exit-Json $result
|
||||
|
|
Loading…
Reference in a new issue