forked from dapr/rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
update-protos.sh
executable file
·71 lines (58 loc) · 1.74 KB
/
update-protos.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
#!/bin/bash
# ------------------------------------------------------------
# Copyright (c) Microsoft Corporation and Dapr Contributors.
# Licensed under the MIT License.
# ------------------------------------------------------------
# Protobuf generation
APPCALLBACK="appcallback"
COMMON="common"
DAPR="dapr"
RUNTIME="runtime"
# Path to store output
PROTO_PATH="dapr/proto"
# Http request CLI
HTTP_REQUEST_CLI=curl
checkHttpRequestCLI() {
if type "curl" > /dev/null; then
HTTP_REQUEST_CLI=curl
elif type "wget" > /dev/null; then
HTTP_REQUEST_CLI=wget
else
echo "Either curl or wget is required"
exit 1
fi
}
downloadFile() {
FOLDER_NAME=$1
FILE_NAME=$2
FILE_PATH="${PROTO_PATH}/${FOLDER_NAME}/v1"
# URL for proto file
PROTO_URL="https://raw.githubusercontent.com/dapr/dapr/master/dapr/proto/${FOLDER_NAME}/v1/${FILE_NAME}.proto"
mkdir -p "${FILE_PATH}"
echo "Downloading $PROTO_URL ..."
if [ "$HTTP_REQUEST_CLI" == "curl" ]; then
(cd ${FILE_PATH} && curl -SsL "$PROTO_URL" -o "${FILE_NAME}.proto")
else
wget -q -P "$PROTO_URL" "${FILE_PATH}/${FILE_NAME}.proto"
fi
if [ ! -e "${FILE_PATH}/${FILE_NAME}.proto" ]; then
echo "failed to download $PROTO_URL ..."
ret_val=$FILE_NAME
exit 1
fi
}
fail_trap() {
result=$?
if [ $result != 0 ]; then
echo "Failed to download proto files: $ret_val"
fi
exit $result
}
# -----------------------------------------------------------------------------
# main
# -----------------------------------------------------------------------------
trap "fail_trap" EXIT
checkHttpRequestCLI
downloadFile $COMMON $COMMON
downloadFile $RUNTIME $DAPR
downloadFile $RUNTIME $APPCALLBACK