Add helper to check xep implementations and versions

This commit is contained in:
Christophe Romain 2019-06-17 12:02:23 +02:00
parent 21d9bd8325
commit 4fe995c272
1 changed files with 21 additions and 0 deletions

21
tools/check_xep_versions.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
check_xep()
{
xep=xep-$1
int=$(echo $1 | sed 's/^0*//')
[ -f $BASE/doc/$xep ] || curl -s -o $BASE/doc/$xep https://xmpp.org/extensions/$xep.html
title=$(sed '/<title>/!d;s/.*<title>\(.*\)<\/title>.*/\1/' $BASE/doc/$xep)
vsn=$(grep -A1 Version $BASE/doc/$xep | sed '/<dd>/!d;q' | sed 's/.*>\(.*\)<.*/\1/')
imp=$(grep "{xep, $int," $BASE/src/* | sed "s/.*src\/\(.*\).erl.*'\([0-9.-]*\)'.*/\1 \2/")
[ "$imp" == "" ] && imp="NA 0.0"
echo "$title;$vsn;${imp/ /;}"
}
[ $# -eq 1 ] && BASE="$1" || BASE="$PWD"
[ -d $BASE/doc ] || mkdir $BASE/doc
for x_num in $(grep "{xep" $BASE/src/* | sed "s/,//" | awk '{printf("%04d\n", $2)}' | sort -u)
do
check_xep $x_num
done