aboutsummaryrefslogtreecommitdiff
path: root/httracker
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-08-25 19:45:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-08-25 19:45:02 -0300
commit54608600f97dd28b2aa099ecb21e075b24357d86 (patch)
tree2f4a71a7a3ad85e06a0afed39bcba8ea685077e1 /httracker
parentb1cd9d087e2d5ff9aa0882c59c9e912d739bce9a (diff)
downloadhttruta-54608600f97dd28b2aa099ecb21e075b24357d86.tar.gz
httruta-54608600f97dd28b2aa099ecb21e075b24357d86.tar.bz2
Modularizing
Diffstat (limited to 'httracker')
-rwxr-xr-xhttracker36
1 files changed, 2 insertions, 34 deletions
diff --git a/httracker b/httracker
index ea1eaab..e720f76 100755
--- a/httracker
+++ b/httracker
@@ -14,40 +14,8 @@ FILESIZE=""
USER="arquivo"
GROUP="arquivo"
-function httracker_get {
- local url="$1"
- local hash="`echo $1 | sha1sum | cut -d ' ' -f 1`"
- local target="$MIRRORS/$hash"
-
- mkdir -p $target
- #chown -R $USER.$GROUP $target/
-
- # We already got this one
- if [ -f "$target/ok" ]; then
- return
- fi
-
- # Get each URL
- httrack \
- --depth=1 \
- --purge-old=0 \
- --index \
- --cookies=1 \
- --path ${target} \
- -r${LEVEL} ${url}
- #--user $USER \
- #-e%${EXT_LEVEL} \
- #-m$FILESIZE \
- #--verbose
-
- if [ "$?" == "0" ]; then
- # Mark as downloaded
- touch $target/ok
- else
- echo "Error fetching $url."
- rm -rf $target
- fi
-}
+# Load functions
+source lib/httracker/functions || exit 1
# Create folders
mkdir -p $MIRRORS $TMP