-
-
Notifications
You must be signed in to change notification settings - Fork 638
/
config.sh
96 lines (86 loc) · 2.27 KB
/
config.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/bash
# ./config.sh
# ./config.sh maxPlayers 88
# ./config.sh maxPlayers 88 serverName Teste maxItem 5 --file other_name.lua --env .env
# Replace values in .lua file
substitute_lua_variable() {
variable_name="$1"
new_value="$2"
if [[ "$new_value" == "true" || "$new_value" == "false" ]]; then
sed "s|$variable_name =.*|$variable_name = $new_value|" "$lua_file" > "$lua_file.tmp"
elif [[ $( echo "$new_value" | grep -E "^[0-9]+$") ]]; then
sed "s|$variable_name =.*|$variable_name = $new_value|" "$lua_file" > "$lua_file.tmp"
else
sed "s|$variable_name =.*|$variable_name = \"$new_value\"|" "$lua_file" > "$lua_file.tmp"
fi
mv "$lua_file.tmp" "$lua_file" 2>&1
}
# Get a named argument
get_named_arg() {
arg_name="$1"
shift
while [[ $# -gt 0 ]]; do
if [[ $1 == "$arg_name" && $# -gt 1 ]]; then
echo "$2"
return
fi
shift
done
}
lua_file=$( get_named_arg "--file" "$@")
env_file=$( get_named_arg "--env" "$@")
if [ -z "$lua_file" ]; then
lua_file="config.lua"
fi
if [ -z "$env_file" ]; then
env_file=".env"
fi
verify_file() {
if [ ! -f "$1" ]; then
echo "$2 not found"
echo "path: $1"
exit 1
fi
}
verify_file "$env_file" "env"
verify_file "$lua_file" "lua"
# Reads the env file
while IFS='=' read -r key value; do
if [[ "$key" != "#"* && "$key" != "" ]]; then
case $key in
MYSQL_HOST)
substitute_lua_variable "mysqlHost" "$value"
;;
MYSQL_DBNAME)
substitute_lua_variable "mysqlDatabase" "$value"
;;
MYSQL_USER)
substitute_lua_variable "mysqlUser" "$value"
;;
MYSQL_PASS)
substitute_lua_variable "mysqlPass" "$value"
;;
SERVER_NAME)
substitute_lua_variable "serverName" "$value"
;;
SERVER_IP)
substitute_lua_variable "ip" "$value"
;;
SERVER_PORT)
substitute_lua_variable "gameProtocolPort" "$value"
;;
*)
substitute_lua_variable "$key" "$value"
;;
esac
fi
done < "$env_file"
# # Substitutes other variables provided as command line arguments
args=("$@")
for ((i=0; i<${#args[@]}; i+=2)); do
if [[ "${args[i]}" != "--file" ]]; then
variable_name="${args[i]}"
new_value="${args[i+1]}"
substitute_lua_variable "$variable_name" "$new_value"
fi
done