-
Notifications
You must be signed in to change notification settings - Fork 94
/
setup
executable file
·473 lines (415 loc) · 8.64 KB
/
setup
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
#!/bin/bash
##########################################################
# Configuration
##########################################################
#
# Here you can set the default installation directory
#
DEFAULT_TARGET="/usr/share/gitweb"
##########################################################
# Functions
##########################################################
#
# (no need to modify, unless you want to)
#
install()
{
set_target
set_cmd_args
if [[ $(check_for_symlinks) == $TRUE && $(check_for_backups) == $TRUE ]]
then
log ""
log "[ERROR] - Symlinks and backups found in target, nothing to do."
log "[ERROR] - (Is the theme already installed?)"
exit 1
else
#Backing up
if [[ $INTERACTIVE == $TRUE ]]
then
log ""
if [[ $(confirm "Backing up original files, continue?") == $FALSE ]]
then
echo ""
exit 1
else
echo ""
fi
fi
if [[ $(check_for_backups) == $TRUE ]]
then
log "[NOTICE] - Backups present, skipping..."
else
log ""
log "Backing up..."
log ""
for FILE in "${THEME_FILES[@]}"
do
if [[ -e "$TARGET/$FILE.bak" ]]
then
log "Skipping $FILE.bak, file exists..."
else
mv -f $MV_ARGS "$TARGET/$FILE" "$TARGET/$FILE.bak"
fi
done
log ""
log "...done"
fi
#Symlinking
if [[ $INTERACTIVE == $TRUE ]]
then
log ""
if [[ $(confirm "Linking theme files, continue?") == $FALSE ]]
then
echo ""
exit 1
else
echo ""
fi
fi
if [[ $(check_for_symlinks) == $TRUE ]]
then
log "[NOTICE] - Symlinks present, skipping..."
else
log ""
log "Linking..."
log ""
for FILE in "${THEME_FILES[@]}"
do
if [[ -h "$TARGET/$FILE" ]]
then
log "Skipping $FILE, symlink exists..."
else
ln $LN_ARGS "$THEME/$FILE" "$TARGET/$FILE"
fi
done
log ""
log "...done"
fi
fi
log ""
log "[NOTICE] - Installation complete!"
}
remove()
{
set_target
set_cmd_args
if [[ $(check_for_symlinks "missing") == $TRUE && $(check_for_backups "missing") == $TRUE ]]
then
log ""
log "[ERROR] - No symlinks or backups found in target, Nothing to do."
log "[ERROR] - (Is the theme already removed?)"
exit 1
else
#Deleting
if [[ $INTERACTIVE == $TRUE ]]
then
log ""
if [[ $(confirm "Deleting symlinks, continue?") == $FALSE ]]
then
echo ""
exit 1
else
echo ""
fi
fi
if [[ $(check_for_symlinks) == $TRUE ]]
then
log ""
log "Deleting symlinks..."
log ""
for FILE in "${THEME_FILES[@]}"
do
if [[ -h "$TARGET/$FILE" ]]
then
rm $RM_ARGS "$TARGET/$FILE"
else
log "Skipping $FILE, not found..."
fi
done
log ""
log "...done"
else
log "[NOTICE] - Symlinks not found, skipping..."
fi
#Restoring
if [[ $INTERACTIVE == $TRUE ]]
then
log ""
if [[ $(confirm "Restoring original files, continue?") == $FALSE ]]
then
echo ""
exit 1
else
echo ""
fi
fi
if [[ $(check_for_backups) == $TRUE ]]
then
log ""
log "Restoring..."
log ""
for FILE in "${THEME_FILES[@]}"
do
if [[ -e "$TARGET/$FILE.bak" ]]
then
mv $MV_ARGS "$TARGET/$FILE.bak" "$TARGET/$FILE"
else
log "Skipping $FILE.bak, not found..."
fi
done
log ""
log "...done"
else
log "[NOTICE] - Backups not found, skipping..."
fi
fi
log ""
log "[NOTICE] - Removal complete!"
}
set_target()
{
if [[ $TARGET && $(check_for_static $TARGET) == $TRUE ]]
then
log "[NOTICE] - Using specified target path: '$TARGET'"
if [[ $INTERACTIVE == $TRUE ]]; then
if [[ $(confirm "Is this correct?") == $FALSE ]]; then
echo ""
exit 1
else
echo ""
fi
fi
TARGET="$TARGET/static"
else
if [[ $(check_for_static $DEFAULT_TARGET) == $TRUE ]]
then
log "[NOTICE] - Target not set, using default path: '$DEFAULT_TARGET'"
if [[ $INTERACTIVE == $TRUE ]]
then
log ""
if [[ $(confirm "Is this ok?") == $FALSE ]]
then
echo ""
exit 1
else
echo ""
fi
fi
TARGET="$DEFAULT_TARGET/static"
else
log ""
log "[ERROR] - Couldn't find folder 'static/' in the target path: '$TARGET'"
log "[ERROR] - (Are you sure this folder contains gitweb?)"
exit 1
fi
fi
}
set_cmd_args()
{
MV_ARGS=""
LN_ARGS="-s"
RM_ARGS=""
if [[ $VERBOSE == $TRUE ]];
then
MV_ARGS="-v"
LN_ARGS="-v -s"
RM_ARGS="-v"
fi
if [[ $INTERACTIVE == $TRUE ]];
then
MV_ARGS="-i"
LN_ARGS="-i -s"
RM_ARGS="-i"
fi
if [[ $INTERACTIVE == $TRUE && $VERBOSE == $TRUE ]];
then
MV_ARGS="-i -v"
LN_ARGS="-i -v -s"
RM_ARGS="-i -v"
fi
}
check_for_static()
{
local RETURN=$FALSE
if [[ -d "$1/static" ]]
then
RETURN=$TRUE
fi
echo $RETURN
}
#If all present, true
#If passed "missing", and all missing, true
check_for_symlinks()
{
local RETURN=$TRUE
if [[ $1 == "missing" ]]
then
local COUNT=0
for FILE in "${THEME_FILES[@]}"
do
if [[ ! -h "$TARGET/$FILE" ]]
then
COUNT=$(expr $COUNT + 1)
fi
done
if [[ $COUNT == "${THEME_FILES[@]}" ]]
then
RETURN=$TRUE
else
RETURN=$FALSE
fi
else
for FILE in "${THEME_FILES[@]}"
do
if [[ ! -h "$TARGET/$FILE" ]]
then
RETURN=$FALSE
fi
done
fi
echo $RETURN
}
#If all present, true
#If passed "missing", and all missing, true
check_for_backups()
{
local RETURN=$TRUE
if [[ $1 == "missing" ]]
then
local COUNT=0
for FILE in "${THEME_FILES[@]}"
do
if [[ ! -e "$TARGET/$FILE.bak" ]]
then
COUNT=$(expr $COUNT + 1)
fi
done
if [[ $COUNT == "${THEME_FILES[@]}" ]]
then
RETURN=$TRUE
else
RETURN=$FALSE
fi
else
for FILE in "${THEME_FILES[@]}"
do
if [[ ! -e "$TARGET/$FILE.bak" ]]
then
RETURN=$FALSE
fi
done
fi
echo $RETURN
}
confirm()
{
read -n 1 -p "$0: $1 [y] | [n] : " REPLY
case $REPLY in
y|Y)
echo $TRUE
;;
n|N)
echo $FALSE
;;
*)
echo "$0: [ERROR] - You must answer [y] | [n]"
confirm "$1"
;;
esac
}
log()
{
if [[ $VERBOSE == $TRUE ]]
then
echo "$0: $1"
fi
}
usage()
{
cat << EOF
Usage: $0 [-v|-i] [-t <TARGET>|--target <TARGET>] [--install|--remove|--repair]
Or: $0 [-V|-h|--version|--help]
This script will create symlinks to your gitweb install for themeing.
The default location is '/usr/share/gitweb' unless set via -t or --target.
OPTIONS:
-v, --verbose Verbose output
-i, --interactive Pauses for confirmation at each step
-t, --target Where to create the symlinks, gitweb installation path
-h, --help Shows this usage message
-V, --version Displays version information
--install Adds '.bak' to original files and creates symlinks to theme files
--remove Deletes themed symlinks and restores the original files.
--repair Removes all theme files, then reinstalls
EOF
}
##########################################################
# Let's Go!
##########################################################
#
PROG_NAME=$0
PROG_VERSION="0.9.0"
AUTHOR="Kevin Hill <http://github.com/kevinkhill>"
readonly TRUE=0
readonly FALSE=1
TARGET=
THEME=$(pwd)
INTERACTIVE=$FALSE
VERBOSE=$FALSE
THEME_FILES=( "gitweb.css" "git-favicon.png" "git-logo.png" )
SHORT_OPTS="Vhvit:"
LONG_OPTS="version,help,verbose,interactive,target:,install,remove,repair"
OPTS=$(getopt -o "$SHORT_OPTS" -l "$LONG_OPTS" --name "$0" -- "$@")
if [ $? != 0 ]; then
exit 1
fi
eval set -- "$OPTS"
unset OPTS
if [ $# -eq 0 ]; then
echo "$0: [ERROR] - no options specified" >&2
usage
fi
while [ $# -gt 0 ]; do
case $1 in
-h|--help|-\?)
usage
exit 0
;;
-v|--verbose)
VERBOSE=$TRUE
;;
-i|--interactive)
INTERACTIVE=$TRUE
;;
-t|--target)
TARGET=$2
shift
;;
-V|--version)
echo "Gitweb Theme Installer Script - v$PROG_VERSION"
echo " Author: $AUTHOR"
;;
--install)
install
;;
--remove)
remove
;;
--repair)
remove
install
;;
--)
shift
break
;;
-*)
echo "$0: [ERROR] - unrecognized option $1" >&2
shift
;;
*)
break
;;
esac
shift
done
exit 0