summaryrefslogtreecommitdiff
path: root/scripts/remove_entity.sh
blob: ecf75bf4be73c2245615203d84620ce8d8d8a549 (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
#!/bin/bash
if [ -z "$1" ]; then 
	echo "$0 <Filename / id from metadata to remove>"
	exit
fi

metadataurl=$1

if [ -s "${metadataurl}" ]; then
	entityidfn=$metadataurl
else
	case $metadataurl in
		[0-9][0-9]*)
			url="https://metadata.swamid.se/?rawXML=${metadataurl}"
			;;
	esac
	metadata=`curl -L -m 5 -s -k -f "${url}"`

	[ -n "$metadata" ] || error "Failed to fetch metadata from $metadataurl"

	entityid=`echo "$metadata" | sed -n 's/.*entityID=['\''"]\([^"]*\)['\''"].*/\1/p'`
	[ -n "$entityid" ] || error "Failed to find entityID in metadata"
	[ `echo "$entityid" | wc -l` = 1 ] || error "Multiple entityid:s found: `echo $entityid`"

	entityidfn=`echo "$entityid" | sed 's;.*://;;' | sed 's/[^a-zwA-ZW0-9_.-]/-/g' | sed 's/$/.xml/'`
	[ -n "$entityidfn" ] || error "Failed to generate filename from entityid $entityid"
fi
file="swamid-2.0/$entityidfn"

if [ -r "$file" ]; then
	echo "---------------------"
	grep $entityidfn *.mxml sp-with-simplesign
	echo "---------------------"
	echo -n "OK to remove ? [Y/n]"
	read x
	case $x in 
		"Y"|"y"|"") ;;
	 	*) exit 1 ;;
	esac

	echo
	if [ `uname -s` == "Darwin" ]; then
		MacOSX=true
	else
		MacOSX=false
	fi
	if (grep -q $entityidfn sp-with-simplesign); then
		if ( $MacOSX ) ; then
			sed -i "" "/$entityidfn/d" sp-with-simplesign
		else
			sed -i "/$entityidfn/d" sp-with-simplesign
		fi
	fi
	git rm $file

	grep $file *.mxml | sed 's/\(.*\.mxml\):  <xi:include href=".*"\/>/\1/' | while read mxmlfile ; do
		if ( $MacOSX ) ; then
			sed -i "" "/$entityidfn/d" $mxmlfile
		else
			sed -i "/$entityidfn/d" $mxmlfile
		fi
	done
	git diff
fi