summaryrefslogtreecommitdiff
path: root/metadata/scripts/update-and-validate.sh
blob: f152b49b9ed2eecbed10a793ddb98b3259334b44 (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
#!/bin/sh
# Used on metadata.swamid.se and metadata.lab.swamid.se

update()
{
	mkdir -p .time

	# Remove old entitys from DB
	ls swamid-edugain/*.xml swamid-2.0/*.xml swamid-testing/*.xml | sed 's@swamid-.*/\(.*\).xml@.time/\1.validate@' | sort > /tmp/$$.xml
	ls .time/*.validate > /tmp/$$.time
	comm -13 /tmp/$$.xml /tmp/$$.time | while read file; do
		docker exec swamid-metadata-sp /var/www/scripts/removeEntity.bash /opt/metadata/$file
	done
	rm /tmp/$$.xml /tmp/$$.time

	# Update/Import "new" xml-files
	make -f Makefile.validate -s

	# check URL:s 
	docker exec swamid-metadata-sp php /var/www/scripts/checkURLs.php

	# update TestResults from release-check -> DB
	docker exec swamid-metadata-sp php /var/www/scripts/updateTestResults.php

	# Cleanup Pending-queue
	docker exec swamid-metadata-sp php /var/www/scripts/cleanupPending.php
}

cd /opt/metadata || exit 1
update
# to be able to show non-swamid entities on web-page
wget -qO swamid-2.0.xml https://mds.swamid.se/md/swamid-2.0.xml