#!/bin/bash
#############
user=raven
password=b89e8bd7e3e456ad7c137f70818052f7 
from=1
action=send
typ=2
timestamp=0
return=text
httphead=1
##############
n=1;
for entry in $(cat ~/src/sms/contacts);do
echo $n $entry;
n=$(($n+1))
done;

while true
do
  # (1) prompt user for recipent, and read command line argument
   read -p "To: " toinput
  # (2) handle the input we were given
       case $toinput in
            [\+0][0-9]* ) nr=$toinput; break;;
            [1-9]* )    n=0;
                        for entry in $(cat ~/src/sms/contacts);do
                            n=$(($n+1))
                            if (($n==$toinput)); then
                                nr=$(echo $entry|cut -d ',' -f2)
                            fi
                        done
                    break;;
                * ) echo 'Please enter the nr. of an entry or a full phonenumber';;
        esac
done

  # (3) prompt user for message content, and read command line argument
read -p "Message:" messageinput
while true
do
      # (1) prompt user, and read command line argument
    read -p "Send message to $nr?[n] " answer
      # (2) handle the input we were given
     case $answer in
        [nN]* ) action=info;break;;
            * )  break;;
      esac
done
echo -----------
    curl http://www.sms-revolution.ch/API/httpsms.php -d user=$user \
    -d password=$password --data-urlencode "text=$messageinput" \
    -d to=$nr -d from=$from -d action=$action -d typ=$typ \
    -d timestamp=$timestamp -d return=$return -d httphead=$httphead