summaryrefslogtreecommitdiff
path: root/bib/biblio
blob: a714c77eea1daec5a78a283716140389331141c6 (plain) (blame)
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
#!/bin/sh
# Update the biblio.csv file, and reflect changes in the corresponding webpages,
# committing and pushing the changes if any made.
# Webpages changed: rd/index, rd/by-month.
# Dependencies: sc-im, git.

BIBLIO="$HOME/docs/wr/orgd/kt/biblio.csv"
TABLE_FILE='/tmp/biblio-tbl-formatted'

if [ "$1" = "-u" ] ; then
	# Do nothing. This won't ask to update the file, but will just carry on,
	# so that it can update the website.
	echo "" > /dev/null
else
	hash_before="$(sha256sum "$BIBLIO")"
	sc-im --txtdelim=";" "$BIBLIO"
	hash_after="$(sha256sum "$BIBLIO")"
	if [ "$hash_before" = "$hash_after" ] ; then 
		echo "No changes made - exitting early!"
		exit 0
	fi
fi

####################### First half: update rd/index ###########################
WEBPAGE_PATH="$WEBSITE_PATH/rd/index.html"
DELIMITER_BEGIN="<!-- rd:begin -->"
DELIMITER_END="<!-- rd:end -->"

table_formatted="$(biblio-fmt-tbl "$BIBLIO")"

echo "$table_formatted" > "$TABLE_FILE"
sed -i -ne "/$DELIMITER_BEGIN/ {p; r $TABLE_FILE" -e ":a; n; /$DELIMITER_END/ {p; b}; ba}; p" "$WEBPAGE_PATH"

# Commit and push the changes
cd "$(dirname "$WEBPAGE_PATH")"
git add "$(basename "$WEBPAGE_PATH")"

####################### Second half: update rd/by-month #######################
WEBPAGE_PATH="$WEBSITE_PATH/rd/by-month.html"
DELIMITER_BEGIN="<!-- rd-by-month:begin -->"
DELIMITER_END="<!-- rd-by-month:end -->"

table_formatted="$(biblio-by-month "$BIBLIO")"

echo "$table_formatted" > "$TABLE_FILE"
sed -i -ne "/$DELIMITER_BEGIN/ {p; r $TABLE_FILE" -e ":a; n; /$DELIMITER_END/ {p; b}; ba}; p" "$WEBPAGE_PATH"

# Commit and push the changes
cd "$(dirname "$WEBPAGE_PATH")"
git add "$(basename "$WEBPAGE_PATH")"


######################### Commit and push all changes #########################
ws-push