it corrupt the single quotes for other languages movies e.g for french text ( Okay Google recherche le film L'home et le Pistolet d'or) .
That two quotes can cause issue on IFTTT and cause problems in Webhook request so <<<>>> 3x is used, you still need of { 2x to get TextField Validated (Surrounded by grey space THIS IS VERY IMPORTANT)
so now IFTTT can passthrough apostrophe on queries, but not the ssh, so today is sunday i have able to figure out a way to get it working because ssh already use single quotes to pass the command on the node and after some time i get it working just replacing the path on download.sh and on shellcommand.yaml to the container path /config --> https://www.home-assistant.io/docs/configuration/
so when docker is running the files like e.g hass_radarr_search_by_voice.py or /scripts/downloads.sh is on /config and not in /usr/share/hassio/homeassistant/ so i have able to run it since the path have been re-writed to the container path and not node path so as i understand now it should work because it works like this
Vocal request ---> IFTTT -- webhook --> HomeAssisntant Automation --> Script-- > /bin/bash /config/scripts/download.sh "L'home aux Pistolet d'or" 0 ---> python3 /config/hass_radarr_search_by_voice.py "L'home aux Pistolet d'or" 0 --> google home device
can cause problems/issues when passing single quotes /apostrophe on ssh request so the best way still passing directly to the container the script it works because the docker image of Home Assistant have (python3) so there is no problem with this but very IMPORTANT NOTE when you trigger the script this cause a log error because braces on {{movies}} where the shellcommand execute cause issue on the execution and return error code: 1
long story but short: trigger the script will cause error but when replaced by titles it don't give any issue so just forget trigger the script just test by vocal search to get the results.
After some tests i have get some issues with ssh because this kind of access
it corrupt the single quotes for other languages movies e.g for french text ( Okay Google recherche le film L'home et le Pistolet d'or) .
That two quotes can cause issue on IFTTT and cause problems in Webhook request so <<<>>> 3x is used, you still need of { 2x to get TextField Validated (Surrounded by grey space THIS IS VERY IMPORTANT)
so now IFTTT can passthrough apostrophe on queries, but not the ssh, so today is sunday i have able to figure out a way to get it working because ssh already use single quotes to pass the command on the node and after some time i get it working just replacing the path on
download.sh
and onshellcommand.yaml
to the container path/config
--> https://www.home-assistant.io/docs/configuration/so when docker is running the files like e.g
hass_radarr_search_by_voice.py
or/scripts/downloads.sh
is on /config and not in /usr/share/hassio/homeassistant/ so i have able to run it since the path have been re-writed to the container path and not node path so as i understand now it should work because it works like thisVocal request ---> IFTTT -- webhook --> HomeAssisntant Automation --> Script-- > /bin/bash /config/scripts/download.sh "L'home aux Pistolet d'or" 0 ---> python3 /config/hass_radarr_search_by_voice.py "L'home aux Pistolet d'or" 0 --> google home device
so on my environment it works and i really suggest to use this method because the ssh like https://community.home-assistant.io/t/quotes-ssh-and-docker-shell-commands/234935
can cause problems/issues when passing single quotes /apostrophe on ssh request so the best way still passing directly to the container the script it works because the docker image of Home Assistant have (python3) so there is no problem with this but very IMPORTANT NOTE when you trigger the script this cause a log error because braces on {{movies}} where the shellcommand execute cause issue on the execution and return
error code: 1
long story but short: trigger the script will cause error but when replaced by titles it don't give any issue so just forget trigger the script just test by vocal search to get the results.