2013-11-07 04:25:34 +00:00
|
|
|
#!/bin/bash
|
2013-06-17 15:26:02 +00:00
|
|
|
|
|
|
|
# Copyright 2012 Hewlett-Packard Development Company, L.P.
|
|
|
|
# Copyright 2013 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Download a URL to a local cache
|
|
|
|
# e.g. cache-url http://.../foo ~/.cache/image-create/foo
|
|
|
|
|
|
|
|
url=$1
|
|
|
|
dest=$2
|
2014-04-03 22:49:18 +00:00
|
|
|
time_cond=
|
2013-06-17 15:26:02 +00:00
|
|
|
|
|
|
|
mkdir -p $(dirname $dest)
|
|
|
|
tmp=$(mktemp $(dirname $dest)/.download.XXXXXXXX)
|
|
|
|
|
2013-09-16 20:27:03 +00:00
|
|
|
if [ -f $dest -a -s $dest ] ; then
|
2013-06-17 15:26:02 +00:00
|
|
|
time_cond="-z $dest"
|
|
|
|
success="Server copy has changed. Using server version of $url"
|
|
|
|
else
|
|
|
|
success="Downloaded and cached $url for the first time"
|
|
|
|
fi
|
|
|
|
|
2013-07-09 10:13:04 +00:00
|
|
|
rcode=$(curl -L -o $tmp -w '%{http_code}' $url $time_cond)
|
2014-02-12 15:11:03 +00:00
|
|
|
if [ "$rcode" == "200" -o "${url:0:7}" == "file://" ] ; then
|
2013-10-03 21:18:08 +00:00
|
|
|
# In cases where servers ignore the Modified time,
|
|
|
|
# curl cancels the download, outputs a 200 and leaves
|
|
|
|
# the output file untouched, we don't want this empty file.
|
|
|
|
if [ -n "$time_cond" -a ! -s $tmp ] ; then
|
|
|
|
echo "Ignoring empty file returned by curl. Using locally cached $url"
|
|
|
|
rm -f $tmp
|
|
|
|
else
|
|
|
|
echo $success
|
|
|
|
mv $tmp $dest
|
|
|
|
fi
|
2013-10-11 09:15:27 +00:00
|
|
|
# 213 is the response to a ftp MDTM command, curl outputs a 213 as the status
|
|
|
|
# if the url redirected to a ftp server and Not-Modified
|
|
|
|
elif [ "$rcode" = "304" -o "$rcode" = "213" ] ; then
|
2013-06-17 15:26:02 +00:00
|
|
|
echo "Server copy has not changed. Using locally cached $url"
|
|
|
|
rm -f $tmp
|
|
|
|
else
|
|
|
|
echo "Server returned an unexpected response code. [$rcode]"
|
|
|
|
rm -f $tmp
|
2013-10-22 23:44:37 +00:00
|
|
|
# expose some error codes so the calling process might know what happened
|
|
|
|
if [ "$rcode" = "404" ] ; then
|
|
|
|
exit 44
|
|
|
|
fi
|
2013-06-17 15:26:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|