-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsalon.sh
67 lines (54 loc) · 2.02 KB
/
salon.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#! /bin/bash
PSQL="psql --username=freecodecamp --dbname=salon --tuples-only -c"
LIST_OF_SERVICES=$($PSQL "SELECT service_id, name FROM services ORDER BY service_id")
echo -e "\n~~~~~ MY SALON ~~~~~\n"
MAIN_MENU(){
if [[ $1 ]]
then
echo -e "\n$1"
fi
echo -e "\n Here are our services:\n"
echo "$LIST_OF_SERVICES" | while read SERVICE_ID BAR NAME
do
echo "$SERVICE_ID) $NAME"
echo -e "\n"
done
read SERVICE_ID_SELECTED
# if input is not a number
if [[ ! $SERVICE_ID_SELECTED =~ ^[0-9]+$ ]]
then
# send to main menu
MAIN_MENU "That is not a valid number."
else
# get service availability
SERVICE_AVAILABILITY=$($PSQL "SELECT service_id FROM services WHERE service_id = $SERVICE_ID_SELECTED")
# if not available
if [[ -z $SERVICE_AVAILABILITY ]]
then
# send to main menu
MAIN_MENU "That service is not available."
else
# get customer info
echo -e "\nWhat's your phone number?"
read CUSTOMER_PHONE
CUSTOMER_NAME=$($PSQL "SELECT name FROM customers WHERE phone = '$CUSTOMER_PHONE'")
echo $CUSTOMER_NAME
# if customer doesn't exist
if [[ -z $CUSTOMER_NAME ]]
then
# get new customer name
echo -e "\nWhat's your name?"
read CUSTOMER_NAME
# insert new customer
INSERT_CUSTOMER_RESULT=$($PSQL "INSERT INTO customers(name, phone) VALUES('$CUSTOMER_NAME', '$CUSTOMER_PHONE')")
fi
echo -e "\nWhat time do you want your service?"
read SERVICE_TIME
CUSTOMER_ID=$($PSQL "SELECT customer_id FROM customers WHERE phone = '$CUSTOMER_PHONE'")
INSERT_APPOINTMENT_RESULT=$($PSQL "INSERT INTO appointments(customer_id,service_id, time) VALUES('$CUSTOMER_ID', '$SERVICE_ID_SELECTED', '$SERVICE_TIME')")
SERVICE_NAME=$($PSQL "SELECT name FROM services WHERE service_id = '$SERVICE_ID_SELECTED'")
echo "I have put you down for a $SERVICE_NAME at $SERVICE_TIME, $CUSTOMER_NAME."
fi
fi
}
MAIN_MENU