The Mix.Shell.IO module allows me to prompt the user for some information. I would like to use that functionality in a script I am writing to prompt the user for a password. Unfortunately it displays the user’s entry in cleartext on the screen.
I don’t see any way to entice that function to mask the input at the moment.
Is there another Erlang/Elixir function that might help me accomplish the same effect? For that matter, is there a shell command I could use with Mix.Shell.IO.cmd to collect a masked string and return it?
Don’t know how to turn off echo’ing offhand, but I know the hex.publish takes a password that it immediately deletes as it is typed, maybe take a look at it’s code?
Unless you are developing something to integrate with mix, you should not use it. It is usually not included in production builds and will probably fail then.
Then you either have mix mentioned in your (extra_)applications-list, or you are running you generated application on a machine that has elixir installed.
Then you either have mix mentioned in your (extra_)applications-list,
Nope.
are running you generated application on a machine that has elixir
installed.
“Elixir” or Erlang? It’s present on a system without Elixir but with
Erlang installed, but – I thought the whole point of a release was to
use the bundled version.
Just search the forum, there are plenty of threads because mix is not available in production or release. Its always suggested to not rely on mix when not in build time.
So if you have a proper release and access to mix, its probably a bug, so could you please explain how you built and run the release?
Just search the forum, there are plenty of threads because mix is not
available in production or release. Its always suggested to not rely on mix
when not in build time.
Who is talking about mix?!
The OP mentioned finding an undocumented function :io.get_password()
and you responded with:
“It is usually not included in production builds…”
So maybe in the future be more specific what you mean by “it”?
I hit the reply button of the op, but since this is not a threaded view, you can’t tell the difference in many cases. But yes I should have written “you shouldn’t use its functions”.
FWIW, this is not code the is going into production. I’m running a “.exs” script and I want it to make use of the code embodied a mix project so I’ve got my script in the same folder hierarchy as that mix project and I’m using iex -S mix my_script.exs to run things. It kicks off and starts the mix project and all it’s applications, then calls my script.
I wil be running the script in front of an audience, however, and I didn’t want my password to be displayed in Plain Text. So:
This is a development context, not production code
I know I will be running my code through mix (so Mix.Shell.IO is fine to use)
Calling an undocumented function doesn’t bother me for this use case.
For this purpose :io.get_password() does what I need it to do. I gather that it may not be a good general-purpose solution so caveat emptor.