96 lines
3.0 KiB
PowerShell
96 lines
3.0 KiB
PowerShell
#!powershell
|
|
|
|
# Copyright: (c) 2016, Jon Hawkesworth (@jhawkesworth) <figs@unity.demon.co.uk>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
#AnsibleRequires -CSharpUtil Ansible.Basic
|
|
|
|
$spec = @{
|
|
options = @{
|
|
msg = @{ type = "str" }
|
|
msg_file = @{ type = "path" }
|
|
start_sound_path = @{ type = "path" }
|
|
end_sound_path = @{ type = "path" }
|
|
voice = @{ type = "str" }
|
|
speech_speed = @{ type = "int"; default = 0 }
|
|
}
|
|
mutually_exclusive = @(
|
|
,@('msg', 'msg_file')
|
|
)
|
|
required_one_of = @(
|
|
,@('msg', 'msg_file', 'start_sound_path', 'end_sound_path')
|
|
)
|
|
supports_check_mode = $true
|
|
}
|
|
|
|
$module = [Ansible.Basic.AnsibleModule]::Create($args, $spec)
|
|
|
|
|
|
$msg = $module.Params.msg
|
|
$msg_file = $module.Params.msg_file
|
|
$start_sound_path = $module.Params.start_sound_path
|
|
$end_sound_path = $module.Params.end_sound_path
|
|
$voice = $module.Params.voice
|
|
$speech_speed = $module.Params.speech_speed
|
|
|
|
if ($speech_speed -lt -10 -or $speech_speed -gt 10) {
|
|
$module.FailJson("speech_speed needs to be an integer in the range -10 to 10. The value $speech_speed is outside this range.")
|
|
}
|
|
|
|
$words = $null
|
|
|
|
if ($msg_file) {
|
|
if (-not (Test-Path -Path $msg_file)) {
|
|
$module.FailJson("Message file $msg_file 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.")
|
|
}
|
|
$words = Get-Content $msg_file | Out-String
|
|
}
|
|
|
|
if ($msg) {
|
|
$words = $msg
|
|
}
|
|
|
|
if ($start_sound_path) {
|
|
if (-not (Test-Path -Path $start_sound_path)) {
|
|
$module.FailJson("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.")
|
|
}
|
|
if (-not $module.CheckMode) {
|
|
(new-object Media.SoundPlayer $start_sound_path).playSync()
|
|
}
|
|
}
|
|
|
|
if ($words) {
|
|
Add-Type -AssemblyName System.speech
|
|
$tts = New-Object System.Speech.Synthesis.SpeechSynthesizer
|
|
if ($voice) {
|
|
try {
|
|
$tts.SelectVoice($voice)
|
|
} catch [System.Management.Automation.MethodInvocationException] {
|
|
$module.Result.voice_info = "Could not load voice '$voice', using system default voice."
|
|
$module.Warn("Could not load voice '$voice', using system default voice.")
|
|
}
|
|
}
|
|
|
|
$module.Result.voice = $tts.Voice.Name
|
|
if ($speech_speed -ne 0) {
|
|
$tts.Rate = $speech_speed
|
|
}
|
|
if (-not $module.CheckMode) {
|
|
$tts.Speak($words)
|
|
}
|
|
$tts.Dispose()
|
|
}
|
|
|
|
if ($end_sound_path) {
|
|
if (-not (Test-Path -Path $end_sound_path)) {
|
|
$module.FailJson("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.")
|
|
}
|
|
if (-not $module.CheckMode) {
|
|
(new-object Media.SoundPlayer $end_sound_path).playSync()
|
|
}
|
|
}
|
|
|
|
$module.Result.message_text = $words.ToString()
|
|
|
|
$module.ExitJson()
|