Mercurial > ec-dotfiles
annotate moefetch.sh @ 179:c132eb3ca841
improved folder checker
author | edhoprima@gmail.com <edhoprima@gmail.com> |
---|---|
date | Fri, 05 Jun 2009 21:12:45 +0000 |
parents | 3f5ee8b2791f |
children | 8e6555aa8631 |
rev | line source |
---|---|
148 | 1 #!/bin/sh |
2 | |
3 # Copyright (c) 2009, edogawaconan <me@myconan.net> | |
4 # | |
5 # Permission to use, copy, modify, and/or distribute this software for any | |
6 # purpose with or without fee is hereby granted, provided that the above | |
7 # copyright notice and this permission notice appear in all copies. | |
8 # | |
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | |
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
159 | 16 # |
17 # Lots of bugs here. Use with care | |
148 | 18 # USE WITH CARE |
159 | 19 # |
20 # what it does: fetch every picture that has the specified TAGS. | |
148 | 21 # requirement: wget, libxslt, md5sum (or md5) |
22 | |
159 | 23 # program additional paths for: cut, sed, wc, MD5(sum), wget, xsltproc, grep |
24 ADDITIONAL_PATH= | |
148 | 25 |
159 | 26 # custom md5 path with arguments, expected output: <32digit md5><space(s)><filename> |
27 # Leave empty for "md5sum" (Linux, Solaris), "md5 -r" (*BSD) | |
28 MD5= | |
148 | 29 |
159 | 30 # default server address. Danbooru only! I do not take responsibility of stupidity. |
31 DEFAULT_SITE="moe.imouto.org" | |
148 | 32 |
33 # base directory. make sure it's writeable. I do not take responsibility if you don't own the folder and files as no check is done for this one. | |
159 | 34 # Structure is ${BASE_DIR}/<TAGS> |
35 # Absolute path only. | |
36 # Leave empty to use whatever folder you're running this at | |
37 BASE_DIR="" | |
148 | 38 |
39 # not user modifiable from here | |
40 | |
159 | 41 # useless welcome message. Also version |
42 Msg_Welcome() { | |
174
0948e76a57a1
added help. Bump to 0.1-beta2
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
173
diff
changeset
|
43 MOEFETCHVERSION="0.1-beta2" |
159 | 44 cat <<EOF |
45 moefetch ${MOEFETCHVERSION} | |
46 Copyright (c) 2009 edogawaconan <me@myconan.net> | |
47 | |
48 EOF | |
49 } | |
50 | |
51 # fatal error handler | |
52 Err_Fatal() { | |
53 echo "Fatal error: ${1}" | |
54 exit 1 | |
55 } | |
56 | |
57 # help message | |
58 Err_Help() { | |
59 cat <<EOF | |
177 | 60 moefetch.sh COMMAND [-s SITE_URL] TAGS |
174
0948e76a57a1
added help. Bump to 0.1-beta2
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
173
diff
changeset
|
61 |
176
3d2ae9417273
even more improvement
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
175
diff
changeset
|
62 COMMAND: |
3d2ae9417273
even more improvement
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
175
diff
changeset
|
63 (quick)fetch: do a complete update. Add prefix quick to skip file checking |
3d2ae9417273
even more improvement
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
175
diff
changeset
|
64 check: get list of new files, clean up local folder and print total new files |
175
5b7a154dbd21
cosmetics fix for help message
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
174
diff
changeset
|
65 |
177 | 66 -s SITE_URL: Specify URL of the Danbooru powered site you want to leech from. Default is ${DEFAULT_SITE} |
175
5b7a154dbd21
cosmetics fix for help message
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
174
diff
changeset
|
67 |
176
3d2ae9417273
even more improvement
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
175
diff
changeset
|
68 TAGS: Tags you want to download. Separated by spaces. Tag name follows standard Danbooru tagging scheme |
174
0948e76a57a1
added help. Bump to 0.1-beta2
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
173
diff
changeset
|
69 |
159 | 70 EOF |
71 exit 0 | |
72 } | |
73 | |
74 # generate link by transforming xml | |
75 Generate_Link() { | |
76 cd "${BASE_DIR}/temp" | |
148 | 77 echo |
78 echo "Fetching xml file" | |
159 | 79 wget "http://${SITE}/post/index.xml?tags=${TAGS}&offset=0&limit=100000" -O "${SITE_DIR}-${TARGET_DIR}-xml" -e continue=off |
148 | 80 echo "Processing XML file..." |
81 # xslt evilry | |
165 | 82 xsltproc - "${SITE_DIR}-${TARGET_DIR}-xml" <<EOF | sed 's/.*\(http.*\)\(\/[a-f0-9]\{32\}\).*\.\([jp][pn]g\)/\1\2.\3/g' | grep ^http > "${SITE_DIR}-${TARGET_DIR}-list" |
148 | 83 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
84 <xsl:output method="xml" indent="yes"/> | |
85 <xsl:template match="post"> | |
86 <xsl:value-of select="@file_url" /> | |
87 </xsl:template> | |
88 </xsl:stylesheet> | |
89 EOF | |
159 | 90 echo "`echo \`wc -l < \"${SITE_DIR}-${TARGET_DIR}-list\" \`` file(s) available on server" |
91 #output file: ${TARGET_DIR}-list | |
148 | 92 } |
93 | |
159 | 94 # check tools availability |
95 Check_Tools() { | |
96 # verify all programs required do indeed exist | |
97 #MD5 | |
98 if [ ! "${MD5}" ]; then | |
99 case `uname` in | |
100 *BSD) MD5="md5 -r";; | |
101 Linux|SunOS) MD5="md5sum";; | |
102 *) Fatal_Err "No known md5 tool for this platform. Please specify manually" | |
103 esac | |
104 fi | |
105 MD5_COMMAND=`echo ${MD5} | cut -d' ' -f1` | |
106 # basic tools | |
107 COMMANDS="cut sed wc wget xsltproc xargs rm mkdir chown comm grep ${MD5_COMMAND}" | |
108 for COMMAND in ${COMMANDS} | |
109 do | |
110 COMMAND_CHECK=`command -v "${COMMAND}"` | |
111 [ "${COMMAND_CHECK}" ] || Err_Fatal "${COMMAND} doesn't exist in ${PATH}" | |
112 done | |
113 | |
114 # grep checking | |
115 # originally created for workaround on solaris | |
116 #if [ `uname` = "SunOS" ]; then | |
117 FAIL="" | |
118 echo "blah" > superrandomtestfile | |
119 echo "blah" > superrandomtestfile.2 | |
120 grep -f superrandomtestfile.2 superrandomtestfile > /dev/null 2>&1 || FAIL=1 | |
121 rm -f superrandomtestfile superrandomtestfile.2 | |
122 [ "${FAIL}" ] && Err_Fatal "Your grep is not compatible. Please install or set path of correct grep" | |
123 } | |
124 | |
125 # verify required folders exist and writeable | |
126 Check_Folders(){ | |
127 [ -O "${BASE_DIR}" ] || Err_Fatal "You don't own ${BASE_DIR}. Please fix ${BASE_DIR}." | |
179
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
128 for FOLDER in temp trash deleted "${SITE_DIR}/${TARGET_DIR}" |
159 | 129 do |
130 if [ ! -d "${BASE_DIR}/${FOLDER}" ]; then | |
131 mkdir "${BASE_DIR}/${FOLDER}" || Err_Fatal "${FOLDER} folder creation failed" | |
132 fi | |
133 if [ ! -O "${BASE_DIR}/${FOLDER}" ]; then | |
167 | 134 echo "You don't own the ${BASE_DIR}/${FOLDER}, applying globally writeable permission on it" |
159 | 135 chmod -R u=rwX,g=rwX,o=rwX "${BASE_DIR}/${FOLDER}" || Err_Fatal "Error changing ownership. This shouldn't happen" |
136 fi | |
137 done | |
167 | 138 [ `echo \`ls "${BASE_DIR}/${SITE_DIR}/${TARGET_DIR}" | wc -l\`` -eq 0 ] && ISNEW=1 |
159 | 139 # let's move to workdir |
140 cd "${BASE_DIR}/temp" | |
141 for i in error ok list newlist; do | |
161
52877e2849bb
misc fix. These past commits wasn't actually tested
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
160
diff
changeset
|
142 touch "${SITE_DIR}-${TARGET_DIR}-${i}" || Fatal_Err "Error creating ${TARGET_DIR}-${i}. This shouldn't happen" |
159 | 143 done |
144 # | |
145 } | |
146 | |
147 # check files correctness | |
148 Check_Files() { | |
166 | 149 if [ ! "${ISNEW}" ]; then |
148 | 150 echo "Checking for errors..." |
151 # THE FILES | |
159 | 152 |
153 # current dir: ${BASE_DIR}/${SITE_DIR}/${TARGET_DIR} | |
154 cd "${BASE_DIR}/${SITE_DIR}/${TARGET_DIR}" | |
173
2b7c8c1ecdfe
better trash handler
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
172
diff
changeset
|
155 TRASH_DIR="${SITE_DIR}-${TARGET_DIR}-`date -u +%Y%m%d-%H.%M`" |
2b7c8c1ecdfe
better trash handler
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
172
diff
changeset
|
156 mkdir -p "${BASE_DIR}/trash/${TRASH_DIR}" |
179
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
157 # FIXME FIXME FIXME FIXME FIXME FIXME |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
158 for TRASH in * |
148 | 159 do |
179
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
160 if [ -d "${TRASH}" ]; then |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
161 mv -f "${TRASH}" "${BASE_DIR}/trash/${TRASH_DIR}" || Err_Fatal "Error deleting files" |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
162 echo "Moved ${TRASH} to ${BASE_DIR}/trash/${TRASH_DIR}" |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
163 else |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
164 TRASH="`echo ${TRASH} | sed -e 's/\([0-9a-f]\{32\}.*\)//g' | grep -v ^$`" |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
165 if [ "${TRASH}" ]; then |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
166 mv -f "${TRASH}" "${BASE_DIR}/trash/${TRASH_DIR}" || Err_Fatal "Error deleting files" |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
167 echo "Moved ${TRASH} to ${BASE_DIR}/trash/${TRASH_DIR}" |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
168 fi |
c132eb3ca841
improved folder checker
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
178
diff
changeset
|
169 fi |
159 | 170 done |
173
2b7c8c1ecdfe
better trash handler
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
172
diff
changeset
|
171 [ "`ls "${BASE_DIR}/trash/${TRASH_DIR}"`" ] || rmdir "${BASE_DIR}/trash/${TRASH_DIR}" |
159 | 172 printf "" > "${BASE_DIR}/temp/${SITE_DIR}-${TARGET_DIR}-error" |
173 for FILE in * | |
174 do | |
170 | 175 if [ "`${MD5} "${FILE}" | cut -d ' ' -f1 -`" != "`echo "${FILE}" | cut -d '.' -f1`" ] |
148 | 176 then |
159 | 177 echo |
178 echo "${FILE}" >> "${BASE_DIR}/temp/${SITE_DIR}-${TARGET_DIR}-error" | |
179 echo "Error: ${FILE}" | |
148 | 180 fi |
181 printf "." | |
182 done | |
183 echo | |
178
3f5ee8b2791f
error when restructuring
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
177
diff
changeset
|
184 TOTAL_ERROR=`echo \`wc -l < "${BASE_DIR}/temp/${SITE_DIR}-${TARGET_DIR}-error"\`` |
3f5ee8b2791f
error when restructuring
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
177
diff
changeset
|
185 echo "${TOTAL_ERROR} file(s) error" |
170 | 186 echo "Removing error files" |
187 if [ "${TOTAL_ERROR}" -eq 0 ]; then | |
188 echo "No error file. 0 file removed" | |
189 else | |
190 cat "${BASE_DIR}/temp/${SITE_DIR}-${TARGET_DIR}-error" | xargs rm | |
191 echo "${TOTAL_ERROR} file(s) removed" | |
192 fi | |
193 echo "`echo \`ls | wc -l\`` file(s) available locally" | |
194 | |
159 | 195 # current dir: ${BASE_DIR}/temp |
196 cd ${BASE_DIR}/temp | |
148 | 197 |
198 echo "Generating list of new files..." | |
199 # THE FILES | |
159 | 200 #ls "../${TARGET_DIR}" | grep -vf "${TARGET_DIR}-error" > "${TARGET_DIR}-ok" |
156
d3b002fd944e
fix: my attempt at speeding up things failed. reverting back to trusty grep -vf
edhoprima
parents:
155
diff
changeset
|
201 # |
159 | 202 ls "${BASE_DIR}/${SITE_DIR}/${TARGET_DIR}" | comm -1 -3 "${SITE_DIR}-${TARGET_DIR}-error" - > "${SITE_DIR}-${TARGET_DIR}-ok" |
203 cat "${SITE_DIR}-${TARGET_DIR}-list" | grep -vf "${SITE_DIR}-${TARGET_DIR}-ok" > "${SITE_DIR}-${TARGET_DIR}-newlist" | |
204 echo "`echo \`wc -l < \"${SITE_DIR}-${TARGET_DIR}-newlist\"\`` file(s) to be downloaded" | |
205 | |
148 | 206 else |
159 | 207 if [ "${ISQUICK}" ]; then |
152 | 208 echo "quick mode selected. Skipping check" |
209 else | |
210 echo "Empty local repository" | |
211 fi | |
159 | 212 cd "${BASE_DIR}/temp" |
166 | 213 cat "${SITE_DIR}-${TARGET_DIR}-list" > "${SITE_DIR}-${TARGET_DIR}-newlist" |
148 | 214 fi |
215 } | |
216 | |
159 | 217 # start downloading the images |
218 Fetch_Images() { | |
160
68227a30d0b3
forgot to fix Fetch_Images to reflect new folder naming scheme
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
159
diff
changeset
|
219 cd "${BASE_DIR}/temp" |
68227a30d0b3
forgot to fix Fetch_Images to reflect new folder naming scheme
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
159
diff
changeset
|
220 if [ `echo \`wc -l < "${SITE_DIR}-${TARGET_DIR}-newlist"\`` -eq 0 ]; then |
148 | 221 echo "No new file" |
222 else | |
223 echo "Starting wget" | |
160
68227a30d0b3
forgot to fix Fetch_Images to reflect new folder naming scheme
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
159
diff
changeset
|
224 cd "${BASE_DIR}/${SITE_DIR}/${TARGET_DIR}" |
68227a30d0b3
forgot to fix Fetch_Images to reflect new folder naming scheme
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
159
diff
changeset
|
225 wget -e continue=on -bi "${BASE_DIR}/temp/${SITE_DIR}-${TARGET_DIR}-newlist" -o "${BASE_DIR}/temp/${SITE_DIR}-${TARGET_DIR}.log" |
148 | 226 fi |
227 } | |
228 | |
159 | 229 # initialize base variables and initial command check |
230 Init(){ | |
231 # Get base folder - current folder or fallback to ${HOME} | |
232 [ "${BASE_DIR}" ] || BASE_DIR="${PWD}" | |
233 [ "${BASE_DIR}" ] || BASE_DIR="{$HOME}" | |
234 [ "`echo ${BASE_DIR} | cut -c1 | grep \/`" ] || BASE_DIR="/${BASE_DIR}" | |
235 # path initialization | |
236 [ "${ADDITIONAL_PATH}" ] && PATH=${ADDITIONAL_PATH}:${PATH} | |
237 export PATH | |
158
cba73f6a96bb
grep check. OpenSolaris' default grep doesn't support -f
edhoprima
parents:
157
diff
changeset
|
238 |
159 | 239 # misc variables |
166 | 240 ISQUICK= |
241 ISNEW= | |
158
cba73f6a96bb
grep check. OpenSolaris' default grep doesn't support -f
edhoprima
parents:
157
diff
changeset
|
242 |
159 | 243 [ $# -lt 2 ] && Err_Help |
244 case "$1" in | |
174
0948e76a57a1
added help. Bump to 0.1-beta2
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
173
diff
changeset
|
245 check|fetch|quickfetch) |
159 | 246 echo "Starting..." |
247 JOB="$1" | |
248 ;; | |
249 *) | |
250 Err_Help | |
251 ;; | |
252 esac | |
253 shift | |
254 SITE= | |
255 case "$1" in | |
256 -s|--site) | |
257 shift | |
258 SITE="$1" | |
163
e2149ba6ab9c
shift placed at wrong place.
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
162
diff
changeset
|
259 shift |
159 | 260 ;; |
261 *) | |
161
52877e2849bb
misc fix. These past commits wasn't actually tested
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
160
diff
changeset
|
262 SITE="${DEFAULT_SITE}" |
159 | 263 ;; |
264 esac | |
166 | 265 TAGS="$@" |
159 | 266 echo "Tags: ${TAGS}" |
267 # slash is not wanted for folder name | |
162
1f937c2e8b3f
tags doesn't get parsed :(
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
161
diff
changeset
|
268 TARGET_DIR="`echo "${TAGS}" | sed -e 's/\//_/g'`" |
1f937c2e8b3f
tags doesn't get parsed :(
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
161
diff
changeset
|
269 SITE_DIR="`echo "${SITE}" | sed -e 's/\/$//g;s/\//_/g'`" |
159 | 270 } |
148 | 271 |
159 | 272 Msg_Welcome |
273 Init "$@" | |
274 Check_Tools | |
275 Check_Folders | |
158
cba73f6a96bb
grep check. OpenSolaris' default grep doesn't support -f
edhoprima
parents:
157
diff
changeset
|
276 |
148 | 277 |
159 | 278 # let's do the job! |
279 case "${JOB}" in | |
174
0948e76a57a1
added help. Bump to 0.1-beta2
edhoprima@gmail.com <edhoprima@gmail.com>
parents:
173
diff
changeset
|
280 check) |
159 | 281 Generate_Link |
282 Check_Files | |
148 | 283 ;; |
159 | 284 fetch) |
285 Generate_Link | |
286 Check_Files | |
287 Fetch_Images | |
288 ;; | |
289 quickfetch) | |
290 ISNEW=1 | |
291 ISQUICK=1 | |
292 Generate_Link | |
293 Check_Files | |
294 Fetch_Images | |
148 | 295 ;; |
296 esac |