blob: 7c420ceb439091adbca6be642f248efd2de65302 (
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
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
|
#!/bin/bash
function usage {
echo "Usage: $0 <hostIp> <hostPort> <userId>"
}
function addResource() {
ELEMENT_NAME=$1
echo -e "###################### Adding Element ${ELEMENT_NAME} Start ######################"
CURRENT_ZIP_FILE=./${ELEMENT_NAME}/normative-types-new-${ELEMENT_NAME}.zip
CURRENT_JSON_FILE=./${ELEMENT_NAME}/${ELEMENT_NAME}.json
sed -i 's/"userId": ".*",/"userId": "'${ATT_UID}'",/' ${CURRENT_JSON_FILE}
JSON_CONTENT=`paste -s ${CURRENT_JSON_FILE}`
http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F resourceMetadata="${JSON_CONTENT}" -F resourceZip=@${CURRENT_ZIP_FILE} -H USER_ID:${ATT_UID} ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/upload/multipart)
if [ ${http_code} -eq 201 ]; then
echo -e "\n###################### Adding Element ${ELEMENT_NAME} End ########################\n\n\n"
elif [ ${http_code} -eq 409 ]; then
echo -e "\n###################### Already exists Element ${ELEMENT_NAME} status code:${http_code} End ########################\n\n\n"
elif [ ${http_code} -eq 500 ]; then
echo -e "\n###################### Failed to add Element ${ELEMENT_NAME} status code:${http_code} End ########################\n\n\n"
exit 1
fi
}
if [ $# -lt 3 ]
then
usage
exit 2
fi
HOST_IP=$1
HOST_PORT=$2
ATT_UID=$3
#Add The CapabilityTypes
http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F capabilityTypeZip=@capabilityTypes.zip -H "USER_ID: jh0003" ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/uploadType/capability)
if [ ${http_code} -eq 201 ]; then
echo -e "\n###################### Adding The CapabilityTypes status code:${http_code} End ########################\n\n\n"
elif [ ${http_code} -eq 500 ]; then
echo -e "\n###################### Failed to add CapabilityTypes status code:${http_code} End ########################\n\n\n"
exit 1
else
echo -e "\n###################### Failed to add CapabilityTypes status code:${http_code} End ########################\n\n\n"
exit 1
fi
#Add The InterfaceLifecycleTypes
http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F interfaceLifecycleTypeZip=@interfaceLifecycleTypes.zip -H "USER_ID: jh0003" ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/uploadType/interfaceLifecycle)
if [ ${http_code} -eq 201 ]; then
echo -e "\n###################### Adding The InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
elif [ ${http_code} -eq 409 ]; then
echo -e "\n###################### Already exists InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
elif [ ${http_code} -eq 500 ]; then
echo -e "\n###################### Failed to add InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
exit 1
else
echo -e "\n###################### Failed to add InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
exit 1
fi
#Add The CategoryTypes
http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F categoriesZip=@categoryTypes.zip -H "USER_ID: jh0003" ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/uploadType/categories)
if [ ${http_code} -eq 201 ]; then
echo -e "\n###################### Adding The CategoryTypes status code:${http_code} End ########################\n\n\n"
elif [ ${http_code} -eq 409 ]; then
echo -e "\n###################### Already exists CategoryTypes status code:${http_code} End ########################\n\n\n"
elif [ ${http_code} -eq 500 ]; then
echo -e "\n###################### Failed to add CategoryTypes status code:${http_code} End ########################\n\n\n"
exit 1
else
echo -e "\n###################### Failed to add CategoryTypes status code:${http_code} End ########################\n\n\n"
exit 1
fi
addResource "root"
addResource "compute"
addResource "softwareComponent"
addResource "webServer"
addResource "webApplication"
addResource "DBMS"
addResource "database"
addResource "objectStorage"
addResource "blockStorage"
addResource "containerRuntime"
addResource "containerApplication"
addResource "loadBalancer"
addResource "port"
addResource "network"
exit 0
|