blob: 1e4670101181ed76b478aa14f2af5f3347cc0794 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/bash
function die() {
echo $*
exit 1
}
URL=$1
DIR=$2
CERT=$3
if echo "$DIR" | grep -q "mds.swamid.se" ; then
publish_name=mds.swamid.se
else
publish_name=md.swamid.se
fi
TMPF=`mktemp`
curl -s -m 120 -k -L $URL > $TMPF || die "Unable to download $URL: $?"
if [ "x$CERT" != "x" ]; then
samlsign -c $CERT -f $TMPF || die "Unable to verify $URL with $CERT: $?"
fi
TMPD=`mktemp -d`
xsltproc --stringparam output $TMPD xslt/import-metadata.xsl $TMPF || die "Unable to import metadata from $URL: $?"
rsync -avz $TMPD/ $DIR
(
echo '<?xml version="1.0"?>'
echo "<EntitiesDescriptor xmlns=\"urn:oasis:names:tc:SAML:2.0:metadata\" xmlns:xi=\"http://www.w3.org/2001/XInclude\" Name=\"http://$publish_name/md/$DIR.xml\">"
T=`mktemp`
for md in $DIR/*.xml; do
xsltproc xslt/clean-entitydescriptor.xsl $md > $T && mv $T $md
test=`echo $md | cut -d/ -f2-`
if [ ! -f "swamid-2.0/$test" -a ! -f "swamid-2.0-obsolete/$test" ]; then
echo "<xi:include href=\"$md\"/>"
fi
done
rm -f $T
echo "</EntitiesDescriptor>"
) > $DIR.mxml
#git add $DIR.mxml $DIR
#git commit -m "$URL into $DIR" $DIR.mxml $DIR
rm -rf $TMPF $TMPD
|