-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcheck-links.sh
executable file
·149 lines (120 loc) · 3.72 KB
/
check-links.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/bin/bash
#
# Legal Stuff:
#
# This file is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free Software
# Foundation; version 3.
#
# This file is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along with
# this program; if not, see <https://www.gnu.org/licenses/lgpl-3.0.txt>
###################################################
# CHECKS
###################################################
echo
if ! command -v parallel >/dev/null
then
echo -e "=> 🙅 Please install parallel\n"
exit 1
fi
###################################################
# POPULATE ACCENT COLORS
###################################################
accents=( "default" )
while read line; do
if [ "$line" = "" ] || [[ "$line" =~ ^#.* ]]
then
continue
fi
IFS=' '
read -ra splitedline <<< "$line"
if [[ ${#splitedline[@]} > 2 ]] || [[ ${#splitedline[@]} < 2 ]]; then
echo "Error line $n: Malformed line '$line'"
else
accents+=( ${splitedline[0]} )
fi
done < "src/accents.txt"
###################################################
# FUNCTIONS
###################################################
errors=0
function check_links() {
workingfolder=$1
defaultlinksfile="${1}/links.txt"
linksfile="${2:-$defaultlinksfile}"
n=1
linkedicons=()
targeticons=()
while read line; do
if [ "$line" = "" ] || [[ "$line" =~ ^#.* ]]
then
continue
fi
IFS=' '
read -ra splitedline <<< "$line"
if [[ ${#splitedline[@]} > 2 ]] || [[ ${#splitedline[@]} < 2 ]]; then
echo "Error line $n: Malformed line '$line'"
let errors+=1
else
linkedicons+=(${splitedline[0]})
targeticons+=(${splitedline[1]})
fi
let n+=1
done < $linksfile
n=1
for i in "${targeticons[@]}"
do
if [[ " ${linkedicons[@]} " =~ " ${i} " ]]; then
linkediconindex=
for j in "${!linkedicons[@]}"; do
if [[ "${linkedicons[$j]}" = "${i}" ]]; then
linkediconindex=$j
break
fi
done
echo "Error line $n: Link ${linkedicons[n-1]} -> $i -> ${targeticons[linkediconindex]}"
let errors+=1
fi
let n+=1
done
n=1
for i in "${targeticons[@]}"
do
if [ ! -f "./${workingfolder}/${i/.xxx/.svg}" ]; then
echo "Error line $n: target file ${workingfolder}/${i/.xxx/.svg} not found"
let errors+=1
fi
let n+=1
done
}
export -f check_links
###################################################
# MAIN
###################################################
echo -e "=> ⏳ Checking links.txt source file - please wait\n"
check_links "src/default" "src/links.txt"
if [[ ${errors} > 0 ]]; then
echo -e "\n=> $errors error(s) found\n"
exit 1
else
for accent in "${accents[@]}"; do
resources=(
"build/${accent}/svg"
"build/${accent}/png"
)
done
echo -e "=> ⏳ Checking links.txt built files - please wait"
parallel check_links ::: "${resources[@]}"
if [[ ${errors} > 0 ]]; then
echo -e "\n=> Errors found into /build links files - please run ${bold}./build.sh -l${normal} and/or ${bold}./build.sh -a${normal} to fix them\n"
exit 1
else
echo -e "\n=> 🎉 0 error found\n"
exit 0
fi
fi