summaryrefslogtreecommitdiff
path: root/src/index-terms.sh
blob: a7cd01488f1e1f8456717429fb954b23594ce2b6 (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
#!/usr/bin/env sh

# shellcheck source=./lib/create_table
. "$(dirname "$0")"/lib/create_table
# shellcheck source=./lib/insert
. "$(dirname "$0")"/lib/insert

TYPE="$1"
shift
CATEGORY="$1" # should refer to how the href is "Reference-manual_$CATEGORY"
shift
DB_PATH="$1"
shift

insert_index_terms() {
	# Get each term from an index page and insert
	while [ -n "$1" ]; do
		while read -r line; do
			if echo "$line" | pup -p 'a' | grep -Eoq "Reference-manual_$CATEGORY"; then
				insert_term "$line"
			fi
		done < "$1"

		shift
	done
}

insert_term() {
	LINK="$1"
	NAME="$(echo "$LINK" | pup -p 'a text{}' | sed 's/\"\"//g' | tr -d \\n)"
	PAGE_PATH="$(echo "$LINK" | pup -p 'a attr{href}')"

	insert "$DB_PATH" "$NAME" "$TYPE" "$PAGE_PATH"
}

create_table "$DB_PATH"
insert_index_terms "$@"