blob: 6099e5e367e052cd1c595b305c2ee0071d08e9da (
plain)
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
|
#!/bin/bash
# photoalbum (c) 2011 - 2014 by Paul C. Buetow
# http://photoalbum.buetow.org
declare -r VERSION='PHOTOALBUMVERSION'
declare -r DEFAULTRC=/etc/default/photoalbum
declare -r ARG1="${1}" ; shift
declare RC="${1}" ; shift
if [ -z "${RC}" ]; then
RC="${DEFAULTRC}"
fi
if [ ! -f "${RC}" ]; then
echo "Error: Can not find config file ${RC}" >&2
exit 1
fi
function usage() {
cat - <<USAGE >&2
Usage:
$0 clean|init|version|generate|all [rcfile]
USAGE
}
function init() {
for dir in "${INCOMING_DIR}" "${DIST_DIR}/photos" "${DIST_DIR}/thumbs" "${DIST_DIR}/html"; do
[ -d "${dir}" ] || mkdir -vp "${dir}"
done
}
function clean() {
echo "Not deleting ${INCOMING_DIR} but ${DIST_DIR}"
[ -d "${DIST_DIR}" ] && rm -Rf "${DIST_DIR}"
}
function tarball() {
# Cleanup tarball from prev run if any
find "${DIST_DIR}" -maxdepth 1 -type f -name \*.tar -delete
if [ "${TARBALL_INCLUDE}" = yes ]; then
local -r BASE=$(basename "${INCOMING_DIR}")
echo "Creating tarball ${DIST_DIR}/${TARBALL_NAME} from ${INCOMING_DIR}"
cd $(dirname "${INCOMING_DIR}")
tar $TAR_OPTS -f "${DIST_DIR}/${TARBALL_NAME}" "${BASE}"
cd - &>/dev/null
fi
}
function generate() {
if [ ! -d "${INCOMING_DIR}" ]; then
echo "ERROR: You may run init first, no such directory: ${INCOMING_DIR}" >&2
exit 1
fi
if [ ! -d "${DIST_DIR}" ]; then
echo "ERROR: You may run init first, no such directory: ${DIST_DIR}" >&2
exit 1
fi
if [ "${TARBALL_INCLUDE}" = yes ]; then
local -r BASE=$(basename "${INCOMING_DIR}")
local -r NOW=$(date +'%Y-%m-%d-%H%M%S')
# New global variable
TARBALL_NAME="${BASE}-${NOW}${TARBALL_SUFFIX}"
fi
makescale
find "${DIST_DIR}/html" -type f -name \*.html -delete
# Figure out wether we want sub-albums or not
dirs=$(find "${DIST_DIR}/photos" -mindepth 1 -maxdepth 1 -type d | head | wc -l)
if [ ${dirs} -eq 0 ]; then
makehtml photos html thumbs ..
else
find "${DIST_DIR}/photos" -mindepth 1 -maxdepth 1 -type d |
while read dir; do
basename=$(basename "${dir}")
makehtml "photos/${basename}" "html/${basename}" "thumbs/${basename}" ../..
done
fi
tarball
}
function template() {
local -r template=${1} ; shift
local -r html=${1} ; shift
local -r dist_html="${DIST_DIR}/${HTML_DIR}"
echo "Creating ${dist_html}/${html}.html from ${template}.tmpl"
[ ! -d "${dist_html}" ] && mkdir -p "${dist_html}"
source "${TEMPLATE_DIR}/${template}.tmpl" >> "${dist_html}/${html}.html"
}
function makescale() {
cd "${INCOMING_DIR}" && find ./ -type f | sort | while read photo; do
photo=$(sed 's#^\./##' <<< "${photo}")
destphoto="${DIST_DIR}/photos/${photo}"
destphoto_nospace=${destphoto// /_}
dirname=$(dirname "${destphoto}")
[ ! -d "${dirname}" ] && mkdir -p "${dirname}"
if [ ! -f "${destphoto_nospace}" ]; then
echo "Scaling ${photo} to ${destphoto_nospace}"
convert -auto-orient \
-geometry ${GEOMETRY} "${photo}" "${destphoto_nospace}"
else
echo "Not scaling ${photo} to ${destphoto_nospace}, already exists"
fi
done
}
function makehtml() {
PHOTOS_DIR="${1}" ; shift
HTML_DIR="${1}" ; shift
THUMBS_DIR="${1}" ; shift
BACKHREF="${1}" ; shift
local -i num=1
local -i i=0
local name=page-${num}
template header ${name}
template header-first-add ${name}
cd "${DIST_DIR}/${PHOTOS_DIR}" && find ./ -type f | sort | sed 's;^\./;;' |
while read photo; do
: $(( i++ ))
if [ ${i} -gt ${MAXPREVIEWS} ]; then
i=1
: $(( num++ ))
next=page-${num}
template next ${name}
template footer ${name}
prev=${name}
name=${next}
template header ${name}
template prev ${name}
fi
# Preview page
template preview ${name}
# View page
template header ${num}-${i}
template view ${num}-${i}
template footer ${num}-${i}
if [ ! -f "${DIST_DIR}/${THUMBS_DIR}/${photo}" ]; then
echo "Creating thumb ${DIST_DIR}/${THUMBS_DIR}/${photo}";
dirname=$(dirname "${DIST_DIR}/${THUMBS_DIR}/${photo}")
[ ! -d "${dirname}" ] && mkdir -p "${dirname}"
convert -geometry x${THUMBGEOMETRY} "${photo}" \
"${DIST_DIR}/${THUMBS_DIR}/${photo}"
else
echo "Not creating thumb ${DIST_DIR}/${THUMBS_DIR}/${photo}, already exists";
fi
done
template footer $(cd "${DIST_DIR}/${HTML_DIR}";ls -t page-*.html |
head -n 1 | sed 's/.html//') "${DIST_DIR}/${HTML_DIR}"
cd "${DIST_DIR}/${HTML_DIR}" && ls *.html | grep -v page- | cut -d'-' -f1 | uniq |
while read prefix; do
declare page=$(ls -t ${prefix}-*.html |
head -n 1 | sed 's#\(.*\)-.*.html#\1#')
declare lastview=$(ls -t ${prefix}-*.html |
head -n 1 | sed 's/.*-\(.*\).html/\1/')
declare prevredirect=${page}-0
declare nextredirect=${page}-$((lastview+1))
redirectpage=$(( page-1 ))-${MAXPREVIEWS}
template redirect ${prevredirect}
if [ ${lastview} -eq ${MAXPREVIEWS} ]; then
redirectpage=$(( page+1 ))-1
else
redirectpage=${page}-${lastview}
template redirect 0-${MAXPREVIEWS}
redirectpage=1-1
fi
template redirect ${nextredirect}
done
template index ../index
}
function makemake() {
[ ! -f ./photoalbumrc ] && cp /etc/default/photoalbum ./photoalbumrc
cat <<MAKEFILE > ./Makefile
all:
photoalbum all photoalbumrc
clean:
photoalbum clean photoalbumrc
MAKEFILE
echo You may now customize ./photoalbumrc and run make
}
if [ -f "${RC}" ]; then
source "${RC}"
else
if [ -f ~/.photoalbumrc ]; then
source ~/.photoalbumrc
fi
fi
case "${ARG1}" in
all)
init
generate
;;
init)
init
;;
clean)
clean
;;
generate)
generate
;;
version)
echo "This is Photoalbum Version ${VERSION}"
;;
makemake)
makemake
;;
*)
usage
;;
esac
exit 0
|