forked from hbons/Dazzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dazzle.sh
executable file
·317 lines (259 loc) · 8.74 KB
/
dazzle.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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#!/bin/sh
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
set -e
# Set this to a non-empty value to enable trace output (for debugging)
TRACE="yep"
trace () {
if test -n "$TRACE"
then
echo "[TRACE] $*"
fi
}
# This script expects to be run as root. If we're not root, bail out.
UID=$(id -u)
if test x$UID != x0
then
echo This script must be run as root.
exit 1
fi
# OS detection
OS=$(uname)
if test x$OS = xLinux
then
if test -f "/etc/redhat-release"
then
DIST="redhat"
elif test -f "/etc/debian_version"
then
DIST="debian"
else
DIST="unknown"
fi
fi
OSMESSAGE="Seems to be $OS"
if test -n "$DIST"
then
OSMESSAGE="$OSMESSAGE ($DIST)"
fi
trace $OSMESSAGE
GIT=`which git` > /dev/null
# Define text styles
BOLD=""
NORMAL=""
if tput bold > /dev/null
then
BOLD=$(tput bold)
fi
if tput sgr0 > /dev/null
then
NORMAL=$(tput sgr0)
fi
if test -z "$BOLD" -o -z "$NORMAL"
then
trace "No support for bold text."
BOLD=""
fi
if test -z "$BOLD"
then
NORMAL=""
fi
# Nice defaults
DAZZLE_USER="${DAZZLE_USER:-storage}"
DAZZLE_GROUP="${DAZZLE_GROUP:-$DAZZLE_USER}"
DAZZLE_HOME="${DAZZLE_HOME:-/home/$DAZZLE_USER}"
show_help () {
echo "${BOLD}Dazzle, SparkleShare host setup script${NORMAL}"
echo "This script needs to be run as root"
echo
echo "Usage: dazzle [COMMAND]"
echo
echo " setup configures this machine to serve as a SparkleShare host"
echo " create PROJECT_NAME creates a SparkleShare project called PROJECT_NAME"
echo " create-encrypted PROJECT_NAME creates an encrypted SparkleShare project"
echo " link links a SparkleShare client to this host by entering a link code"
echo
}
create_account () {
STORAGE=`grep "^$DAZZLE_USER:" /etc/passwd | cut -d : -f 1`
# Create user
if [ "$STORAGE" = "$DAZZLE_USER" ]; then
echo " -> Account already exists."
else
STORAGE=`grep "^$DAZZLE_GROUP:" /etc/group | cut -d : -f 1`
GIT_SHELL=`which git-shell`
if [ "$STORAGE" = "$DAZZLE_GROUP" ]; then
echo " -> useradd $DAZZLE_USER --create-home --home $DAZZLE_HOME --system --shell $GIT_SHELL --password \"*\" --gid $DAZZLE_GROUP"
useradd $DAZZLE_USER --create-home --home $DAZZLE_HOME --system --shell $GIT_SHELL --password "*" --gid $DAZZLE_GROUP
else
echo " -> useradd $DAZZLE_USER --create-home --home $DAZZLE_HOME --system --shell $GIT_SHELL --password \"*\" --user-group"
useradd $DAZZLE_USER --create-home --home $DAZZLE_HOME --system --shell $GIT_SHELL --password "*" --user-group
fi
fi
# Create base directory
if [ ! -d "$DAZZLE_HOME" ]; then
echo " -> mkdir --parents $DAZZLE_HOME"
mkdir -p "$DAZZLE_HOME"
fi
sleep 0.5
}
configure_ssh () {
echo " -> mkdir --parents $DAZZLE_HOME/.ssh"
mkdir -p $DAZZLE_HOME/.ssh
echo " -> touch $DAZZLE_HOME/.ssh/authorized_keys"
touch $DAZZLE_HOME/.ssh/authorized_keys
echo " -> chmod 700 $DAZZLE_HOME/.ssh"
chmod 700 $DAZZLE_HOME/.ssh
echo " -> chmod 600 $DAZZLE_HOME/.ssh/authorized_keys"
chmod 600 $DAZZLE_HOME/.ssh/authorized_keys
# Disable the password for the "storage" user to force authentication using a key
CONFIG_CHECK=`grep "^# SparkleShare$" /etc/ssh/sshd_config`
if ! [ "$CONFIG_CHECK" = "# SparkleShare" ]; then
echo "" >> /etc/ssh/sshd_config
echo "# SparkleShare" >> /etc/ssh/sshd_config
echo "# Please do not edit the above comment as it's used as a check by Dazzle" >> /etc/ssh/sshd_config
echo "Match User $DAZZLE_USER" >> /etc/ssh/sshd_config
echo " PasswordAuthentication no" >> /etc/ssh/sshd_config
echo " PubkeyAuthentication yes" >> /etc/ssh/sshd_config
echo "# End of SparkleShare configuration" >> /etc/ssh/sshd_config
fi
sleep 0.5
}
reload_ssh_config () {
if [ -f "/etc/init.d/sshd" ]; then
echo " -> /etc/init.d/sshd reload"
/etc/init.d/sshd reload >/dev/null
elif [ -f "/etc/rc.d/sshd" ]; then
echo " -> /etc/rc.d/sshd reload"
/etc/rc.d/sshd reload >/dev/null
else
echo " -> /etc/init.d/ssh reload"
/etc/init.d/ssh reload >/dev/null
fi
}
install_git () {
if [ -n "$GIT" ]; then
GIT_VERSION=`$GIT --version | cut -b 13-`
echo " -> The Git package has already been installed (version $GIT_VERSION)."
else
if [ -f "/usr/bin/yum" ]; then
echo " -> yum --assumeyes install git"
yum -y --quiet install git
elif [ -f "/usr/bin/apt-get" ]; then
echo " -> apt-get --yes install git"
apt-get --yes --quiet install git
if [ $? -ne 0 ]; then
echo " -> apt-get --yes install git-core"
apt-get --yes --quiet install git-core
fi
elif [ -f "/usr/bin/zypper" ]; then
echo " -> zypper --yes install git-core"
zypper --yes --quiet install git-core
elif [ -f "/usr/bin/emerge" ]; then
echo " -> emerge dev-vcs/git"
emerge --quiet dev-vcs/git
elif [ -f "/usr/bin/pacman" ]; then
echo " -> pacman -S git"
pacman -S git
else
echo "${BOLD}Could not install Git... Please install it manually before continuing.{$NORMAL}"
echo
exit 1
fi
fi
}
create_project () {
if [ -f "$DAZZLE_HOME/$1/HEAD" ]; then
echo " -> Project \"$1\" already exists."
echo
else
# Create the Git repository
echo " -> $GIT init --bare $DAZZLE_HOME/$1"
$GIT init --quiet --bare "$DAZZLE_HOME/$1"
# Don't allow force-pushing and data to get lost
echo " -> $GIT config --file $DAZZLE_HOME/$1/config receive.denyNonFastForwards true"
$GIT config --file "$DAZZLE_HOME/$1/config" receive.denyNonFastForwards true
# Add list of files that Git should not compress
EXTENSIONS="jpg jpeg png tiff gif flac mp3 ogg oga avi mov mpg mpeg mkv ogv ogx webm zip gz bz bz2 rpm deb tgz rar ace 7z pak iso dmg"
for EXTENSION in $EXTENSIONS; do
sleep 0.05
echo -ne " -> echo \"*.$EXTENSION -delta\" >> $DAZZLE_HOME/$1/info/attributes \r"
echo "*.$EXTENSION -delta" >> "$DAZZLE_HOME/$1/info/attributes"
sleep 0.05
EXTENSION_UPPERCASE=`echo $EXTENSION | tr '[:lower:]' '[:upper:]'`
echo -ne " -> echo \"*.$EXTENSION_UPPERCASE -delta\" >> $DAZZLE_HOME/$1/info/attributes \r"
echo "*.$EXTENSION_UPPERCASE -delta" >> "$DAZZLE_HOME/$1/info/attributes"
done
echo ""
# Set the right permissions
echo " -> chown --recursive $DAZZLE_USER:$DAZZLE_GROUP $DAZZLE_HOME"
chown -R $DAZZLE_USER:$DAZZLE_GROUP "$DAZZLE_HOME"
echo " -> chmod --recursive o-rwx $DAZZLE_HOME/$1"
chmod -R o-rwx "$DAZZLE_HOME"/"$1"
sleep 0.5
echo
echo "${BOLD}Project \"$1\" was successfully created.${NORMAL}"
fi
# Fetch the external IP address
IP=`curl --silent http://ifconfig.me/ip`
PORT=`grep --max-count=1 "^Port " /etc/ssh/sshd_config | cut -b 6-`
# Display info to link with the created project to the user
echo "To link up a SparkleShare client, enter the following"
echo "details into the ${BOLD}\"Add Hosted Project...\"${NORMAL} dialog: "
echo
echo " Address: ${BOLD}ssh://$DAZZLE_USER@$IP:$PORT${NORMAL}"
echo " Remote Path: ${BOLD}$DAZZLE_HOME/$1${NORMAL}"
echo
echo "To link up (more) computers, use the \"dazzle link\" command."
echo
}
link_client () {
# Ask the user for the link code with a prompt
echo "Paste your Client ID (found in the status icon menu) below and press ${BOLD}<ENTER>${NORMAL}."
echo
echo -n " ${BOLD}Client ID: ${NORMAL}"
read LINK_CODE
echo $LINK_CODE >> $DAZZLE_HOME/.ssh/authorized_keys
echo
echo "${BOLD}The client with this ID can now access projects.${NORMAL}"
echo "Repeat this step to give access to more clients."
echo
}
# Parse the command line arguments
case $1 in
setup)
echo "${BOLD} 1/4 | Installing the Git package...${NORMAL}"
install_git
echo "${BOLD} 2/4 | Creating account \"$DAZZLE_USER\"...${NORMAL}"
create_account
echo "${BOLD} 3/4 | Configuring account \"$DAZZLE_USER\"...${NORMAL}"
configure_ssh
echo "${BOLD} 4/4 | Reloading the SSH config...${NORMAL}"
reload_ssh_config
echo
echo "${BOLD}Setup complete!${NORMAL}"
echo "To create a new project, run \"dazzle create PROJECT_NAME\"."
echo
;;
create)
if [ -n "$2" ]; then
echo "${BOLD}Creating project \"$2\"...${NORMAL}"
create_project "$2"
else
echo "Please provide a project name."
fi
;;
create-encrypted)
echo "${BOLD}Creating encrypted project \"$2\"...${NORMAL}"
create_project "$2-crypto"
;;
link)
link_client $2
;;
*|help)
show_help
;;
esac