-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcontrol.sh
More file actions
executable file
·223 lines (176 loc) · 7.55 KB
/
control.sh
File metadata and controls
executable file
·223 lines (176 loc) · 7.55 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
#!/bin/bash
EASY_PHP_DEV_ROOT="/Users/$USER/.easy_php_dev"
EASY_PHP_DEV_CFG="/Users/$USER/.easy_php_dev_rc"
RESOLVER_TLD="loc"
USER_AP_FORCE_CFG="/etc/apache2/other/${USER}_zforce.conf"
USER_AP_CFG="/etc/apache2/other/${USER}_hosts.conf"
USER_LAGENT_ROOT="/Users/$USER/Library/LaunchAgents"
LOAD_PHP_CFG="/etc/apache2/other/load_php.conf"
LOAD_REWRITE_CFG="/etc/apache2/other/load_rewrite.conf"
LOAD_VHOST_ALIAS_CFG="/etc/apache2/other/load_vhost_alias.conf"
DNS_BIN_PATH="$EASY_PHP_DEV_ROOT/bin/easy_php_dev_dns"
DNS_PLIST_SRC="$EASY_PHP_DEV_ROOT/lib/ctcherry.easy_php_dev_dns.plist"
DNS_PLIST_DEST="$USER_LAGENT_ROOT/ctcherry.easy_php_dev_dns.plist"
SITE_ROOT="/Users/$USER/EasyPhpDev/sites"
PHP_LIB="/Users/$USER/EasyPhpDev/phplib"
TEST_DOMAIN="test.$RESOLVER_TLD"
RESOLVER_ORDER=$[ ( $RANDOM % 100 ) + 100 ]
RESOLVER_ROOT="/etc/resolver"
TMP_RESOLVER="/tmp/resolver_$RESOLVER_TLD"
RESOLVER_DEST="$RESOLVER_ROOT/$RESOLVER_TLD"
HOME_URL="https://github.com/ctcherry/easy_php_dev"
enable () {
if [ -e $EASY_PHP_DEV_CFG ]; then
PORT=`cat $EASY_PHP_DEV_CFG`
echo "- Loaded existing port number ($PORT) from $EASY_PHP_DEV_CFG"
else
PORT=$[ ( $RANDOM % 10000 ) + 10000 ]
echo $PORT > $EASY_PHP_DEV_CFG
echo "- Saved port number ($PORT) to $EASY_PHP_DEV_CFG"
fi
echo "- Setting up easy_php_dev_dns to start at boot"
mkdir -p $USER_LAGENT_ROOT
cp -f $DNS_PLIST_SRC $USER_LAGENT_ROOT/ > /dev/null 2>&1
sed -i '' "s,_BIN_PATH_,$DNS_BIN_PATH,g" $DNS_PLIST_DEST > /dev/null 2>&1
sed -i '' "s,_PORT_,$PORT,g" $DNS_PLIST_DEST > /dev/null 2>&1
launchctl unload -w $DNS_PLIST_DEST > /dev/null 2>&1
launchctl load -w $DNS_PLIST_DEST > /dev/null 2>&1
########################
# Apache
# Enable PHP by uncommenting it
echo "- Enabing PHP"
echo "(If prompted, please enter your sudo password so we can install)"
echo "<IfModule !php5_module>" | sudo tee $LOAD_PHP_CFG > /dev/null 2>&1
echo "LoadModule php5_module libexec/apache2/libphp5.so" | sudo tee -a $LOAD_PHP_CFG > /dev/null 2>&1
echo "php_value include_path \".:$PHP_LIB\"" | sudo tee -a $LOAD_PHP_CFG > /dev/null 2>&1
echo "php_flag short_open_tag on" | sudo tee -a $LOAD_PHP_CFG > /dev/null 2>&1
echo "</IfModule>" | sudo tee -a $LOAD_PHP_CFG > /dev/null 2>&1
echo "- Enabing mod_rewrite"
echo "<IfModule !rewrite_module>" | sudo tee $LOAD_REWRITE_CFG > /dev/null 2>&1
echo "LoadModule rewrite_module libexec/apache2/mod_rewrite.so" | sudo tee -a $LOAD_REWRITE_CFG > /dev/null 2>&1
echo "</IfModule>" | sudo tee -a $LOAD_REWRITE_CFG > /dev/null 2>&1
echo "- Enabing mod_vhost_alias"
echo "<IfModule !vhost_alias_module>" | sudo tee $LOAD_VHOST_ALIAS_CFG > /dev/null 2>&1
echo "LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so" | sudo tee -a $LOAD_VHOST_ALIAS_CFG > /dev/null 2>&1
echo "</IfModule>" | sudo tee -a $LOAD_VHOST_ALIAS_CFG > /dev/null 2>&1
# Setup vhost_alias for dynamic Virtual Hosts
echo "- Setting up dynamic VirtualHosts in $SITE_ROOT/ (config: $USER_AP_CFG)"
mkdir -p $SITE_ROOT > /dev/null 2>&1
mkdir -p $PHP_LIB > /dev/null 2>&1
echo "UseCanonicalName Off" | sudo tee $USER_AP_CFG > /dev/null 2>&1
echo "VirtualDocumentRoot $SITE_ROOT/%0" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo "<Directory \"$SITE_ROOT/\">" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " Options ExecCGI Indexes FollowSymLinks MultiViews" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " AllowOverride All" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " Order allow,deny" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " Allow from all" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " <IfVersion >= 2.4>" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " Require all granted" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo " </IfVersion>" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
echo "</Directory>" | sudo tee -a $USER_AP_CFG > /dev/null 2>&1
# Start Apache
echo "- Restarting Apache"
sudo apachectl restart
########################
# resolver system
echo "- Setting up .loc resolver in $RESOLVER_DEST"
sudo mkdir -p $RESOLVER_ROOT > /dev/null 2>&1
rm $TMP_RESOLVER > /dev/null 2>&1
echo "nameserver 127.0.0.1" | tee $TMP_RESOLVER > /dev/null 2>&1
echo "port $PORT" | tee -a $TMP_RESOLVER > /dev/null 2>&1
echo "order $RESOLVER_ORDER" | tee -a $TMP_RESOLVER > /dev/null 2>&1
echo "timeout 1" | tee -a $TMP_RESOLVER > /dev/null 2>&1
sudo mv $TMP_RESOLVER $RESOLVER_DEST > /dev/null 2>&1
echo "- Creating test site $TEST_DOMAIN"
mkdir $SITE_ROOT/$TEST_DOMAIN > /dev/null 2>&1
echo "<?php phpinfo(); ?>" > $SITE_ROOT/$TEST_DOMAIN/index.php
}
disable() {
echo "- Removing .$RESOLVER_TLD resolver $RESOLVER_DEST"
echo "(If prompted, please enter your sudo password so we can uninstall)"
sudo rm $RESOLVER_DEST > /dev/null 2>&1
echo "- Stopping easy_php_dns, and preventing from starting at boot"
launchctl unload -w $DNS_PLIST_DEST > /dev/null 2>&1
echo "- Removing dynamic virtual host config $USER_AP_CFG"
sudo rm $USER_AP_CFG > /dev/null 2>&1
echo "- Removing force virtual host config $USER_AP_FORCE_CFG"
sudo rm $USER_AP_FORCE_CFG > /dev/null 2>&1
echo "- Disabing PHP"
sudo rm $LOAD_PHP_CFG > /dev/null 2>&1
echo "- Disabing mod_rewrite"
sudo rm $LOAD_REWRITE_CFG > /dev/null 2>&1
echo "- Disabing mod_vhost_alias"
sudo rm $LOAD_VHOST_ALIAS_CFG > /dev/null 2>&1
echo "- Restarting Apache"
sudo apachectl restart
}
uninstall() {
echo "- Removing $DNS_PLIST_DEST"
rm $DNS_PLIST_DEST > /dev/null 2>&1
echo "- Removing $EASY_PHP_DEV_ROOT"
rm -Rf $EASY_PHP_DEV_ROOT > /dev/null 2>&1
echo "- Removing $EASY_PHP_DEV_CFG"
rm $EASY_PHP_DEV_CFG > /dev/null 2>&1
}
set_ip_vhost() {
local domain=$1
domain=${domain/https\:\/\//}
domain=${domain/http\:\/\//}
domain=${domain//\//}
if [ -e $SITE_ROOT/$domain ]; then
echo "(If prompted, please enter your sudo password so we can configure)"
echo "VirtualDocumentRootIP $SITE_ROOT/$domain" | sudo tee $USER_AP_FORCE_CFG > /dev/null 2>&1
sudo apachectl restart
echo "Force site mode enabled. All web requests (using any domain or IP) to this computer will resolve to $domain"
else
echo "$domain does not exist, Force mode not set"
fi
}
unset_ip_vhost() {
echo "(If prompted, please enter your sudo password so we can configure)"
sudo rm $USER_AP_FORCE_CFG > /dev/null 2>&1
sudo apachectl restart
echo "Force site mode disabled"
}
if [ "$1" == "enable" ]; then
enable
echo "Done, easy_php_dev enabled. Go to http://$TEST_DOMAIN to verify installation"
exit 0
fi
if [ "$1" == "force" ]; then
if [ "$2" == "" ]; then
echo "Usage: control.sh force [domain.loc|off]"
exit 0
fi
if [ "$2" == "off" ]; then
unset_ip_vhost
exit 0
fi
set_ip_vhost $2
exit 0
fi
if [ "$1" == "disable" ]; then
disable
echo "Done, easy_php_dev disabled. Your development sites remain in $SITE_ROOT/"
exit 0
fi
if [ "$1" == "uninstall" ]; then
disable
uninstall
echo "Done, easy_php_dev is uninstalled. Your development sites remain in $SITE_ROOT/"
echo "If you would like to use it again please reinstall from $HOME_URL"
exit 0
fi
# This is really only meant to be used while developing this package
if [ "$1" == "dev_reset" ]; then
if [ -e $EASY_PHP_DEV_ROOT ]; then
disable
uninstall
fi
CURRENT_DIR="$( cd -P "$( dirname "$0" )" && pwd )"
cp -R $CURRENT_DIR $EASY_PHP_DEV_ROOT > /dev/null 2>&1
chmod +x $EASY_PHP_DEV_ROOT/control.sh
exec ~/.easy_php_dev/control.sh enable
fi
echo "Usage: control.sh [enable|disable|force|uninstall]"
exit 0