-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpfiles.sh
executable file
·124 lines (117 loc) · 2.89 KB
/
cpfiles.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
#!/bin/sh
#
# cpfiles.sh - copy support files to the videos directory
#
# This file is part of TiCijev.
#
# TiCijev is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# TiCijev is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with TiCijev. If not, see <http://www.gnu.org/licenses/>.
#
VDIR='videos'
if [ ! -d "$VDIR" ]; then
echo "ERROR: Directory '$VDIR' does not exist" >&2
exit 1
fi
#
# Default option values
#
force='no'
verbose='no'
#
# Handle options
#
while echo "$1" | grep '^-' >/dev/null; do
#
# Force overwriting of existing files?
#
if [ "$1" = '-f' -o "$1" = '--force' ]; then
force='yes'
fi
#
# Verbose output (warnings etc.)?
#
if [ "$1" = '-v' -o "$1" = '--verbose' ]; then
verbose='yes'
fi
shift
done
#
# Copy top-level files
#
for file in index.php ticijev.png opensans.ttf; do
if [ -f "$VDIR/$file" -a "$force" = 'no' ]; then
if [ "$verbose" = 'yes' ]; then
echo "WARNING: Not overwriting '$VDIR/$file'" >&2
fi
continue
fi
#
# Even if forcing the copy, we first check if
# the SHA1 hashes of the files are the same
# to skip copying if it is not necessary.
#
nhashes=$(
sha1sum "$file" "$VDIR/$file" 2>/dev/null \
| awk '{ print $1 }' \
| uniq \
| wc -l
)
#
# New file or two different hashes, so do copy
#
if [ ! -f "$VDIR/$file" -o $nhashes -eq 2 ]; then
if [ "$verbose" = 'yes' ]; then
cp -v -f "$file" "$VDIR/$file"
else
cp -f "$file" "$VDIR/$file"
fi
fi
done
#
# Copy per-video files
#
find "$VDIR" \( -name '*.mp4' -o -name '*.webm' \) \
| while read video; do
index="$(dirname "$video")/index.php"
if [ -f "$index" -a "$force" = 'no' ]; then
if [ "$verbose" = 'yes' ]; then
echo "WARNING: Not overwriting '$index'" >&2
fi
continue
fi
if [ "$verbose" = 'yes' ]; then
cp -v -f video.php "$index"
else
cp -f video.php "$index"
fi
done
#
# Copy per-collection files
#
find "$VDIR" -type d -exec dirname {} \; \
| grep '/' \
| sort -u \
| while read dir; do
index="$dir/index.php"
if [ -f "$index" -a "$force" = 'no' ]; then
if [ "$verbose" = 'yes' ]; then
echo "WARNING: Not overwriting '$index'" >&2
fi
continue
fi
if [ "$verbose" = 'yes' ]; then
cp -v -f index.php "$index"
else
cp -f index.php "$index"
fi
done