summaryrefslogtreecommitdiff
path: root/scripts/create_mxml.sh
blob: bb7855d55ca3e37cd113411664e6d8fdadf8620f (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
# Creates MXML files to be used in signing of Metadata
if ! test -d swamid-2.0 ; then
	echo "Script should be run from base directory of swamid-metadata"
	exit
fi

ls swamid-2.0/ swamid-testing/ swamid-edugain | egrep -v "/:|^$" | sort | uniq -c | awk '$1 > 1 {print $2, "exists in more than one feed"}'

#
# eduGAIN
#
cat << EOF > swamid-edugain-idp-1.0.mxml
<?xml version="1.0" encoding="UTF-8"?>
<md:EntitiesDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" 
                       xmlns:xi="http://www.w3.org/2001/XInclude" 
                       Name="http://md.swamid.se/md/swamid-idp-2.0.xml">
EOF
grep -l IDPSSO swamid-edugain/*.xml | LC_ALL=C  sort | while read file; do
	echo "  <xi:include href=\"$file\"/>" >> swamid-edugain-idp-1.0.mxml
done
echo "</md:EntitiesDescriptor>" >> swamid-edugain-idp-1.0.mxml

cat << EOF > swamid-edugain-sp-1.0.mxml
<?xml version="1.0" encoding="UTF-8"?>
<md:EntitiesDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
EOF
grep -l SPSSO swamid-edugain/*.xml  | grep -v "`grep -l IDPSSO swamid-edugain/*.xml`" | LC_ALL=C  sort | while read file; do
	echo "  <xi:include href=\"$file\"/>" >> swamid-edugain-sp-1.0.mxml
done
echo "</md:EntitiesDescriptor>" >> swamid-edugain-sp-1.0.mxml

#
# Swamid-2.0
#
cat << EOF > swamid-idp-2.0.mxml
<?xml version="1.0" encoding="UTF-8"?>
<md:EntitiesDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" 
                       xmlns:xi="http://www.w3.org/2001/XInclude" 
                       Name="http://md.swamid.se/md/swamid-idp-2.0.xml">
  <xi:include href="swamid-edugain-idp-1.0.mxml" xpointer="xpointer(//*[@entityID])"/>

  <!-- Opt-out from eduGAIN IDP:s -->
EOF
grep -l IDPSSO swamid-2.0/*.xml | LC_ALL=C  sort | while read file; do
	echo "  <xi:include href=\"$file\"/>" >> swamid-idp-2.0.mxml
done
echo "</md:EntitiesDescriptor>" >> swamid-idp-2.0.mxml

cat << EOF > swamid-sp-2.0.mxml
<?xml version="1.0" encoding="UTF-8"?>
<md:EntitiesDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
  <xi:include href="swamid-edugain-sp-1.0.mxml" xpointer="xpointer(//*[@entityID])"/>

  <!-- Opt-out from eduGAIN SP:s -->
EOF
grep -l SPSSO swamid-2.0/*.xml  | grep -v "`grep -l IDPSSO swamid-2.0/*.xml`" | LC_ALL=C  sort | while read file; do
	echo "  <xi:include href=\"$file\"/>" >> swamid-sp-2.0.mxml
done
echo "</md:EntitiesDescriptor>" >> swamid-sp-2.0.mxml

#
# Swamid-testing
#
cat << EOF > swamid-testing-idp-1.0.mxml
<?xml version="1.0"?>
<EntitiesDescriptor xmlns="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:xi="http://www.w3.org/2001/XInclude" Name="http://md.swamid.se/md/swamid-testing-idp-1.0.xml">
EOF
egrep -l "AttributeAuthorityDescriptor|IDPSSODescriptor" swamid-testing/*.xml | LC_ALL=C  sort | while read file; do
	echo "  <xi:include href=\"$file\"/>" >> swamid-testing-idp-1.0.mxml
done
echo "</EntitiesDescriptor>" >> swamid-testing-idp-1.0.mxml

cat << EOF > swamid-testing-sp-1.0.mxml
<?xml version="1.0"?>
<EntitiesDescriptor xmlns="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:xi="http://www.w3.org/2001/XInclude" Name="http://md.swamid.se/md/swamid-testing-sp-1.0.xml">
EOF
grep -l SPSSO swamid-testing/*.xml  | grep -v "`egrep -l "AttributeAuthorityDescriptor|IDPSSODescriptor" swamid-testing/*.xml`" | LC_ALL=C  sort | while read file; do
	echo "  <xi:include href=\"$file\"/>" >> swamid-testing-sp-1.0.mxml
done
echo "</EntitiesDescriptor>" >> swamid-testing-sp-1.0.mxml