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

update()
{
#	echo "git pull"
#	git pull -q || return $?

	# 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

	# remove some flag-files to get DB refreshed
	if [ $(find .time/ -ctime +15 -type f | wc -l) -ne 0 ]; then
		rm `find .time/ -ctime +15 -type f | tail -10`
	fi

	# 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