forked from magnusrodseth/unzipper-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate.sh
66 lines (51 loc) · 1.6 KB
/
validate.sh
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
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env bash
traverse() {
directory=$1
# Iterate through all child directories and files
for i in "$directory"/*; do
# If directory, recursively move further down the directory tree
if [ -d "$i" ]; then
traverse "$i"
# If file, execute the validation routine
elif [ -f "$i" ]; then
filename=$i
# We only care about .html and .css files
if [ "${filename: -5}" == ".html" ] ||
[ "${filename: -4}" == ".css" ]; then
# Split filename on dot [.], and extract the path without extension.
# This assumes the path only has 1 dot [.] in it
IFS='.' read -ra ADDR <<<"$filename"
validate_file="${ADDR[0]}"_"${ADDR[1]}".json
# Determine content type
content_type=""
if [ "${filename: -5}" == ".html" ]; then
content_type="text/html"
elif [ "${filename: -4}" == ".css" ]; then
content_type="text/css"
fi
echo "> Posting file to W3 Validator"
echo
# It is extremely important to have the "@" before the filename
curl -H "Content-Type: $content_type; charset=utf-8" \
--data-binary @"$filename" \
https://validator.w3.org/nu/?out=json >"$validate_file"
echo
echo "> Wrote response to ""$validate_file"""
echo
fi
fi
done
}
validate() {
directory=$1
traverse "$directory"
}
die() {
echo "Illegal syntax! Make sure you use the following format:"
echo "$ sh validate.sh assignment_directory"
exit 1
}
# Valid syntax:
# $ sh validate.sh assignment_directory
[ "$#" -eq 1 ] || die
validate "$1"