-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.sh
executable file
·106 lines (87 loc) · 2.7 KB
/
index.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
#!/bin/bash
#
# Copyright (c) 2012-2018 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
set -e
# Arguments:
# 1 - folder to search files in
function buildIndex() {
metaInfoFields=('displayName' 'description' 'icon' 'language' 'projectType')
metaInfoFields2=('projects')
## search for all devfiles
readarray -d '' arr < <(find "$1" -name 'meta.yaml' -print0)
readarray -d '' devfileArray < <(find "$1" -name 'devfile.yaml' -print0)
FIRST_LINE=true
echo "["
declare -i count=0
for i in "${arr[@]}"
do
if [ "$FIRST_LINE" = true ] ; then
echo "{"
FIRST_LINE=false
else
echo ",{"
fi
for field in "${metaInfoFields[@]}"
do
# get value of needed field in json format
# note that it may have differrent formats: arrays, string, etc.
# String value contains quotes, e.g. "str"
value="$(yq r -j "$i" "$field")"
echo " \"$field\":$value,"
done
for field in "${metaInfoFields2[@]}"
do
# String value contains quotes, e.g. "str"
projects="$(yq r -j "${devfileArray[$count]}" "projects[0].source.location")"
#location="$(yq r -j "$projects" "location")"
echo " \"location\":$projects,"
done
parentFolderPath=${i%/*}
echo " \"links\": {\"self\":\"/$parentFolderPath/devfile.yaml\" }"
echo "}"
count=count+1
done
echo "]"
# ## now loop through meta.yaml files
# declare -i count=0
# for i in "${arr[@]}"
# do
# if [ "$FIRST_LINE" = true ] ; then
# echo "{"
# FIRST_LINE=false
# else
# echo ",{"
# fi
#
# for field in "${metaInfoFields[@]}"
# do
# # get value of needed field in json format
# # note that it may have differrent formats: arrays, string, etc.
# # String value contains quotes, e.g. "str"
# value="$(yq r -j "${arr[$count]}" "$field")"
# echo " \"$field\":$value,"
# done
#
# for field in "${metaInfoFields2[@]}"
# do
# # String value contains quotes, e.g. "str"
# value="$(yq r -j "${devArray[$count]}" "$field")"
# echo " \"$field\":$value,"
# done
#
# parentFolderPath=${i%/*}
# echo " \"links\": {\"self\":\"/$parentFolderPath/devfile.yaml\" }"
# echo "}"
#
# count=count+1
#
# done
# echo "]"
}
buildIndex devfiles