Created
September 5, 2014 01:52
-
-
Save eligor13/e8a72cac0e606b04a224 to your computer and use it in GitHub Desktop.
Twitpic whole images downloader for mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Modified by Stan Schwertly to download locally rather than to send to Posterous. | |
# Github: http://github.com/Stantheman/Twitpic-Backup | |
# Copyright 2010 Tim "burndive" of http://burndive.blogspot.com/ | |
# This software is licensed under the Creative Commons GNU GPL version 2.0 or later. | |
# License informattion: http://creativecommons.org/licenses/GPL/2.0/ | |
# This script is a derivative of the original, obtained from here: | |
# http://tuxbox.blogspot.com/2010/03/twitpic-to-posterous-export-script.html | |
RUN_DATE=`date +%F--%H-%m-%S` | |
TP_NAME=$1 | |
WORKING_DIR=$2 | |
IMG_DOWNLOAD=1 | |
PREFIX=twitpic-$TP_NAME | |
HTML_OUT=$PREFIX-all-$RUN_DATE.html | |
# Checks the user-supplied arguments | |
if [ -z "$TP_NAME" ]; then | |
echo "You must supply a TP_NAME." | |
exit | |
fi | |
if [ ! -d "$WORKING_DIR" ]; then | |
echo "You must supply a WORKING_DIR." | |
exit | |
fi | |
cd $WORKING_DIR | |
# Checks for the directories it needs | |
if [ ! -d "images" ]; then | |
mkdir images; | |
fi | |
if [ ! -d "html" ]; then | |
mkdir html; | |
fi | |
if [ ! -d "logs" ]; then | |
mkdir logs; | |
fi | |
MORE=1 | |
PAGE=1 | |
while [ $MORE -ne 0 ]; do | |
echo PAGE: $PAGE | |
FILENAME="html/$PREFIX-page-$PAGE.html" | |
echo "FILENAME=" $FILENAME | |
echo "0 curl http://twitpic.com/photos/${TP_NAME}?page=$PAGE -O $FILENAME" | |
if [ ! -f "$FILENAME" ]; then | |
echo "0" | |
# wget http://twitpic.com/photos/${TP_NAME}?page=$PAGE -O $FILENAME | |
echo "1 ${TP_NAME}?page=$PAGE -O $FILENAME" | |
curl http://twitpic.com/photos/${TP_NAME}?page=$PAGE -o $FILENAME | |
fi | |
if [ -z "`grep ">Next<" $FILENAME`" ]; then | |
MORE=0 | |
else | |
PAGE=`expr $PAGE + 1` | |
fi | |
done | |
ALL_IDS=`cat html/$PREFIX-page-* | grep -Eo "<a href=\"/[a-zA-Z0-9]+\">" | grep -Eo "/[a-zA-Z0-9]+" | grep -Eo "[a-zA-Z0-9]+" | sort -r | xargs` | |
COUNT=0 | |
LOG_FILE=logs/$PREFIX-log-$RUN_DATE.txt | |
echo $ALL_IDS | tee -a $LOG_FILE | |
for ID in $ALL_IDS; do | |
COUNT=`expr $COUNT + 1` | |
echo $ID: $COUNT | tee -a $LOG_FILE | |
echo "Processing $ID..." | |
FULL_HTML="html/$PREFIX-$ID-full.html" | |
if [ ! -f "$FULL_HTML" ]; then | |
# wget http://twitpic.com/$ID/full -O $FULL_HTML | |
curl http://twitpic.com/$ID/full -o $FULL_HTML | |
echo "2 " curl http://twitpic.com/$ID/full -O $FULL_HTML | |
fi | |
FULL_URL=`grep "<img src" $FULL_HTML | grep -Eo "src=\"[^\"]*\"" | grep -Eo "https://[^\"]*"` | |
if [ "$IMG_DOWNLOAD" -eq 1 ]; then | |
EXT=`echo "$FULL_URL" | grep -Eo "[a-zA-Z0-9]+\.[a-zA-Z0-9]+\?" | head -n1 | grep -Eo "\.[a-zA-Z0-9]+"` | |
if [ -z "$EXT" ]; then | |
EXT=`echo "$FULL_URL" | grep -Eo "\.[a-zA-Z0-9]+$"` | |
fi | |
FULL_FILE=$PREFIX-$ID-full$EXT | |
if [ ! -f "images/$FULL_FILE" ]; then | |
# wget "$FULL_URL" -O "images/$FULL_FILE" | |
curl "$FULL_URL" -o "images/$FULL_FILE" | |
echo "3 " curl "$FULL_URL" -O "images/$FULL_FILE" | |
fi | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment