87338c64bbd7a1f413d96d549a8fca0868ee06a9
[hcoop/scripts.git] / s3.common
1 # Common functions for dealing with Amazon S3.
2
3 # units for BWLIMIT are KB/s
4 BWLIMIT=325
5 # units for CHUNKSIZE are MB
6 CHUNKSIZE=5000
7
8 BUCKET=hcoop.net-backups
9 BACKUPDIR=full
10 S3CMD=$(dirname $0)/s3
11
12 IFS=$'\n'
13
14 export S3_ACCESS_KEY_ID=$(cat ~mwolson_admin/.amazon/access.key)
15 export S3_SECRET_ACCESS_KEY=~mwolson_admin/.amazon/secret.key
16
17 function s3_cmd () {
18 # $1: command (get|put|ls|rm)
19 # $2: remote file
20 # $3: local file
21 local cmd=$1
22 shift
23 local bwarg
24 if test "$cmd" = "put"; then
25 bwarg="${BWLIMIT}K";
26 else
27 bwarg=
28 fi
29 $S3CMD $cmd $BUCKET "$1" "$2" $bwarg
30 }
31
32 function move_over () {
33 # Move file to its offsite destination.
34 # Expects the file to come from STDIN.
35 # $1: date subdirectory
36 # $2: filename
37 if test -z "$2" || test -n "$3"; then
38 echo "Bad programming"
39 exit 1
40 fi
41 local subdir=$1
42 local file=$2
43 local dest=$BACKUPDIR/$subdir
44 split -d -b ${CHUNKSIZE}m - ${file}.
45 for i in ${file}.*; do
46 s3_cmd put $dest/$i $i
47 rm -f $i
48 done
49 }
50
51
52 function prune_old_backups () {
53 # Implement me
54 local subdir=$1
55 local oldpwd=$PWD
56 cd $BACKUPDIR
57 find . -mindepth 1 -maxdepth 1 -type d -ctime +7 \
58 -execdir rm -fr '{}' \; || true
59 rm -rf $SUBDIR
60 mkdir -p $SUBDIR
61 cd $oldpwd
62 }