# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1262489800 0
# Node ID 534e171036efede8a04f4265b92bf18a4a056d34
# Parent  08e0659ba1f2f52698fd39ea05c2d1f6dd5c814f
prosodyctl: Gracefully handle a missing stty command, and fall back to ANSI escape sequences

diff -r 08e0659ba1f2 -r 534e171036ef prosodyctl
--- a/prosodyctl	Fri Jan 01 21:32:23 2010 +0000
+++ b/prosodyctl	Sun Jan 03 03:36:40 2010 +0000
@@ -137,18 +137,33 @@
 end
 
 local function getchar(n)
-	os.execute("stty raw -echo");
-	local ok, char = pcall(io.read, n or 1);
-	os.execute("stty sane");
+	local stty_ret = os.execute("stty raw -echo 2>/dev/null");
+	local ok, char;
+	if stty_ret == 0 then
+		ok, char = pcall(io.read, n or 1);
+		os.execute("stty sane");
+	else
+		ok, char = pcall(io.read, "*l");
+		if ok then
+			char = char:sub(1, n or 1);
+		end
+	end
 	if ok then
 		return char;
 	end
 end
 	
 local function getpass()
-	os.execute("stty -echo");
+	local stty_ret = os.execute("stty -echo 2>/dev/null");
+	if stty_ret ~= 0 then
+		io.write("\027[08m"); -- ANSI 'hidden' text attribute
+	end
 	local ok, pass = pcall(io.read, "*l");
-	os.execute("stty sane");
+	if stty_ret == 0 then
+		os.execute("stty sane");
+	else
+		io.write("\027[00m");
+	end
 	io.write("\n");
 	if ok then
 		return pass;