-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathneoget
executable file
·166 lines (155 loc) · 3.63 KB
/
neoget
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/usr/bin/env bash
# Copyright (c) 2002-2015 "Neo Technology,"
# Network Engine for Objects in Lund AB [http://neotechnology.com]
#
# This file is part of Neo4j.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source "$(dirname $0)/.neoenv"
ACTION="download"
CHECK_EXISTS=0
MODE=""
function usage {
SCRIPT=$(basename $0)
echo "Usage: ${SCRIPT} [<options>] [<version> [<version> ...]]"
echo ""
echo "Download tool for Neo4j server packages."
echo ""
echo "Action Options:"
echo " -d download Neo4j to the current directory (default)"
echo " -i install Neo4j to ${NEOKIT_DIST}"
echo " -l show a list of available Neo4j versions"
echo " -h display this help text"
echo ""
echo "Download Options:"
echo " -x only download/install if the file does not already exist"
echo ""
echo "Edition Options:"
echo " -c use Neo4j Community edition (default)"
echo " -e use Neo4j Enterprise edition"
echo ""
echo "List Options:"
echo " -f list only archive file names"
echo " -u list full download URLs (default)"
echo " -v list only versions"
echo ""
echo "Environment:"
echo " NEO4J_DIST - base URL for downloads (default: http://dist.neo4j.org)"
echo ""
echo "Report bugs to [email protected]"
}
function set_downloadable {
DOWNLOADABLE=1
if [ ${CHECK_EXISTS} -eq 1 ]
then
if [ -f ${ARCHIVE_PATH} ]
then
DOWNLOADABLE=0
fi
fi
}
function list {
for VERSION in ${VERSIONS}
do
set_archive
if [ "${MODE}" == "file" ]
then
echo "${ARCHIVE_NAME}"
elif [ "${MODE}" == "version" ]
then
echo "${VERSION_NUMBER}"
else
echo "${ARCHIVE_URL}"
fi
done
}
function download {
DOWNLOAD_DIR="$1"
for VERSION in ${VERSIONS}
do
set_archive "${DOWNLOAD_DIR}"
set_downloadable
if [ ${DOWNLOADABLE} -eq 1 ]
then
curl --silent --fail "${ARCHIVE_URL}" -o "${ARCHIVE_PATH}"
EXIT_STATUS=$?
if [ ${EXIT_STATUS} -eq 0 ]
then
echo "${ARCHIVE_PATH}"
else
echo 1>&2 "Cannot download archive ${ARCHIVE_URL}"
exit ${EXIT_STATUS}
fi
else
echo "${ARCHIVE_PATH}"
fi
done
}
while getopts ":cdefhilmnuvx" OPTION
do
case ${OPTION} in
c)
EDITION="community"
;;
d)
ACTION="download"
;;
e)
EDITION="enterprise"
;;
f)
MODE="file"
;;
h)
ACTION="help"
;;
i)
ACTION="install"
;;
l)
ACTION="list"
;;
u)
MODE="url"
;;
v)
MODE="version"
;;
x)
CHECK_EXISTS=1
;;
\?)
echo "Invalid option: -${OPTARG}" >&2
;;
esac
done
shift $(($OPTIND - 1))
if [ "$*" != "" ]
then
VERSIONS="$*"
else
set -- ${VERSIONS}
VERSIONS=$1
fi
if [ "${ACTION}" == "help" ]
then
usage
elif [ "${ACTION}" == "list" ]
then
list
elif [ "${ACTION}" == "install" ]
then
download "${NEOKIT_DIST}"
else
download
fi