Server IP : 85.214.239.14 / Your IP : 3.139.87.39 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/ansible_collections/community/windows/plugins/modules/ |
Upload File : |
#!powershell # Copyright: (c) 2016, Jon Hawkesworth (@jhawkesworth) <jhawkesworth@protonmail.com> # 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 -LiteralPath $msg_file)) { $msg = -join @( "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." ) $module.FailJson($msg) } $words = Get-Content -LiteralPath $msg_file | Out-String } if ($msg) { $words = $msg } if ($start_sound_path) { if (-not (Test-Path -LiteralPath $start_sound_path)) { $msg = -join @( "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." ) $module.FailJson($msg) } 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 -LiteralPath $end_sound_path)) { $msg = -join @( "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." ) $module.FailJson($msg) } if (-not $module.CheckMode) { (new-object Media.SoundPlayer $end_sound_path).playSync() } } $module.Result.message_text = $words.ToString() $module.ExitJson()