Merge "Add molecule tests for rke role"
[oom/offline-installer.git] / build / build_nexus_blob.sh
1 #! /usr/bin/env bash
2
3 #   COPYRIGHT NOTICE STARTS HERE
4 #
5 #   Copyright 2018-2019 © Samsung Electronics Co., Ltd.
6 #
7 #   Licensed under the Apache License, Version 2.0 (the "License");
8 #   you may not use this file except in compliance with the License.
9 #   You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #   Unless required by applicable law or agreed to in writing, software
14 #   distributed under the License is distributed on an "AS IS" BASIS,
15 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #   See the License for the specific language governing permissions and
17 #   limitations under the License.
18 #
19 #   COPYRIGHT NOTICE ENDS HERE
20
21 ### This script prepares Nexus repositories data blobs for ONAP
22
23 ## The script requires following dependencies are installed: nodejs, jq, docker, twine
24 ## All required resources are expected in the upper directory created during
25 ## download procedure as DATA_DIR or in the directory given as --input-directory
26 ## All lists used must be in project data_lists directory or in the directory given
27 ## as --resource-list-directory
28
29 # Fail fast settings
30 set -e
31
32 TIMESTAMP="date +'%Y-%m-%d_%H-%M-%S'"
33 SCRIPT_LOG="/tmp/$(basename $0)_$(eval ${TIMESTAMP}).log"
34
35 # Log everything
36 exec &> >(tee -a "${SCRIPT_LOG}")
37
38 # Nexus repository location
39 NEXUS_DOMAIN="nexus"
40 NEXUS_PORT="8081"
41 NEXUS_DOCKER_PORT="8082"
42 NPM_REGISTRY="http://${NEXUS_DOMAIN}:${NEXUS_PORT}/repository/npm-private/"
43 PYPI_REGISTRY="http://${NEXUS_DOMAIN}:${NEXUS_PORT}/repository/pypi-private/"
44 DOCKER_REGISTRY="${NEXUS_DOMAIN}:${NEXUS_DOCKER_PORT}"
45 DEFAULT_REGISTRY="docker.io"
46
47 # Nexus repository credentials
48 NEXUS_USERNAME=admin
49 NEXUS_PASSWORD=admin123
50 NEXUS_EMAIL=admin@example.org
51
52 # Setting paths
53 LOCAL_PATH="$(readlink -f $(dirname ${0}))"
54
55 #Defaults
56 DATA_DIR="$(realpath ${LOCAL_PATH}/../../resources)"
57 NEXUS_DATA_DIR="${DATA_DIR}/nexus_data"
58 LISTS_DIR="${LOCAL_PATH}/data_lists"
59
60 usage () {
61     echo "   Example usage: build_nexus_blob.sh --input-directory </path/to/downloaded/files/dir> --output-directory
62            </path/to/output/dir> --resource-list-directory </path/to/dir/with/resource/list>
63
64      -i | --input-directory directory containing file needed to create nexus blob. The structure of this directory must organized as described in build guide
65      -o | --output-directory
66     -rl | --resource-list-directory directory with files containing docker, pypi and npm lists
67     "
68     exit 1
69 }
70
71 while [ "$1" != "" ]; do
72     case $1 in
73         -i | --input-directory )           shift
74                                            DATA_DIR=$1
75                                            ;;
76         -o | --output-directory )          shift
77                                            NEXUS_DATA_DIR=$1
78                                            ;;
79         -rl | --resource-list-directory )  shift
80                                            LISTS_DIR=$1
81                                            ;;
82         -h | --help )                      usage
83                                            ;;
84         *)                                 usage
85     esac
86     shift
87 done
88
89 # Setup directories with resources for docker, npm and pypi
90 NXS_SRC_DOCKER_IMG_DIR="${DATA_DIR}/offline_data/docker_images_for_nexus"
91 NXS_SRC_NPM_DIR="${DATA_DIR}/offline_data/npm_tar"
92 NXS_SRC_PYPI_DIR="${DATA_DIR}/offline_data/pypi"
93
94 # Setup specific resources lists
95 NXS_DOCKER_IMG_LIST="${LISTS_DIR}/onap_docker_images.list"
96 NXS_NPM_LIST="${LISTS_DIR}/onap_npm.list"
97 NXS_PYPI_LIST="${LISTS_DIR}/onap_pip_packages.list"
98
99 # Setup Nexus image used for build and install infra
100 INFRA_LIST="${LISTS_DIR}/infra_docker_images.list"
101 NEXUS_IMAGE="$(grep sonatype/nexus3 ${INFRA_LIST})"
102 NEXUS_IMAGE_TAR="${DATA_DIR}/offline_data/docker_images_infra/$(sed 's/\//\_/ ; s/$/\.tar/ ; s/\:/\_/' <<< ${NEXUS_IMAGE})"
103
104 # Setup default ports published to host as docker registry
105 PUBLISHED_PORTS="-p ${NEXUS_PORT}:${NEXUS_PORT} -p ${NEXUS_DOCKER_PORT}:${NEXUS_DOCKER_PORT}"
106
107 # Setup additional ports published to host based on simulated docker registries
108 for REGISTRY in $(sed -n '/\.[^/].*\//p' ${NXS_DOCKER_IMG_LIST} | sed -e 's/\/.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY} || true); do
109     if [[ ${REGISTRY} != *":"* ]]; then
110         if [[ ${PUBLISHED_PORTS} != *"80:${NEXUS_DOCKER_PORT}"* ]]; then
111             PUBLISHED_PORTS="${PUBLISHED_PORTS} -p 80:${NEXUS_DOCKER_PORT}"
112         fi
113     else
114         REGISTRY_PORT="$(sed 's/^.*\:\([[:digit:]]*\)$/\1/' <<< ${REGISTRY})"
115         if [[ ${PUBLISHED_PORTS} != *"${REGISTRY_PORT}:${NEXUS_DOCKER_PORT}"* ]]; then
116             PUBLISHED_PORTS="${PUBLISHED_PORTS} -p ${REGISTRY_PORT}:${NEXUS_DOCKER_PORT}"
117         fi
118     fi
119 done
120
121 # Setup simulated domain names to be able to push all to private Nexus repository
122 SIMUL_HOSTS="$(sed -n '/\.[^/].*\//p' ${NXS_DOCKER_IMG_LIST} | sed -e 's/\/.*$// ; s/:.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY} || true) ${NEXUS_DOMAIN}"
123
124 # Nexus repository configuration setup
125 NEXUS_CONFIG_GROOVY='import org.sonatype.nexus.security.realm.RealmManager
126 import org.sonatype.nexus.repository.attributes.AttributesFacet
127 import org.sonatype.nexus.security.user.UserManager
128 import org.sonatype.nexus.repository.manager.RepositoryManager
129 import org.sonatype.nexus.security.user.UserNotFoundException
130 /* Use the container to look up some services. */
131 realmManager = container.lookup(RealmManager.class)
132 userManager = container.lookup(UserManager.class, "default") //default user manager
133 repositoryManager = container.lookup(RepositoryManager.class)
134 /* Managers are used when scripting api cannot. Note that scripting api can only create mostly, and that creation methods return objects of created entities. */
135 /* Perform cleanup by removing all repos and users. Realms do not need to be re-disabled, admin and anonymous user will not be removed. */
136 userManager.listUserIds().each({ id ->
137     if (id != "anonymous" && id != "admin")
138         userManager.deleteUser(id)
139 })
140 repositoryManager.browse().each {
141     repositoryManager.delete(it.getName())
142 }
143 /* Add bearer token realms at the end of realm lists... */
144 realmManager.enableRealm("NpmToken")
145 realmManager.enableRealm("DockerToken")
146 realmManager.enableRealm("PypiToken")
147 /* Create the docker user. */
148 security.addUser("docker", "docker", "docker", "docker@example.com", true, "docker", ["nx-anonymous"])
149 /* Create docker, npm and pypi repositories. Their default configuration should be compliant with our requirements, except the docker registry creation. */
150 repository.createNpmHosted("npm-private")
151 repository.createPyPiHosted("pypi-private")
152 def r = repository.createDockerHosted("onap", 8082, 0)
153 /* force basic authentication true by default, must set to false for docker repo. */
154 conf=r.getConfiguration()
155 conf.attributes("docker").set("forceBasicAuth", false)
156 repositoryManager.update(conf)'
157
158 # Prepare the Nexus configuration
159 NEXUS_CONFIG=$(echo "${NEXUS_CONFIG_GROOVY}" | jq -Rsc  '{"name":"configure", "type":"groovy", "content":.}')
160
161 #################################
162 # Prepare the local environment #
163 #################################
164
165 # Add simulated domain names to /etc/hosts
166 HOSTS_BACKUP="$(eval ${TIMESTAMP}_hosts.bk)"
167 cp /etc/hosts "/etc/${HOSTS_BACKUP}"
168 for DNS in ${SIMUL_HOSTS}; do
169     echo "127.0.0.1 ${DNS}" >> /etc/hosts
170 done
171
172 # Backup the current docker registry settings
173 if [ -f ~/.docker/config.json ]; then
174     DOCKER_CONF_BACKUP="$(eval ${TIMESTAMP}_config.json.bk)"
175     mv ~/.docker/config.json "~/.docker/${DOCKER_CONF_BACKUP}"
176 fi
177
178 #################################
179 # Docker repository preparation #
180 #################################
181
182 # Load predefined Nexus image
183 docker load -i ${NEXUS_IMAGE_TAR}
184
185 # Load all necessary images
186 for ARCHIVE in $(sed $'s/\r// ; /^#/d ; s/\:/\_/g ; s/\//\_/g ; s/$/\.tar/g' ${NXS_DOCKER_IMG_LIST} | awk '{ print $1 }'); do
187    docker load -i ${NXS_SRC_DOCKER_IMG_DIR}/${ARCHIVE}
188 done
189
190 ################################
191 # Nexus repository preparation #
192 ################################
193
194 # Prepare nexus-data directory
195 if [ -d ${NEXUS_DATA_DIR} ]; then
196    if [ "$(docker ps -q -f name="${NEXUS_DOMAIN}")" ]; then
197        echo "Removing container ${NEXUS_DOMAIN}"
198        docker rm -f $(docker ps -aq -f name="${NEXUS_DOMAIN}")
199    fi
200    pushd ${NEXUS_DATA_DIR}/..
201    NXS_BACKUP="$(eval ${TIMESTAMP})_$(basename ${NEXUS_DATA_DIR})_bk"
202    mv ${NEXUS_DATA_DIR} "${NXS_BACKUP}"
203    echo "${NEXUS_DATA_DIR} already exists - backing up to ${NXS_BACKUP}"
204    popd
205 fi
206
207 mkdir -p ${NEXUS_DATA_DIR}
208 chown 200:200 ${NEXUS_DATA_DIR}
209 chmod 777 ${NEXUS_DATA_DIR}
210
211 # Save Nexus version to prevent/catch data incompatibility
212 docker images --no-trunc | grep sonatype/nexus3 | awk '{ print $1":"$2" "$3}' > ${NEXUS_DATA_DIR}/nexus.ver
213
214 # Start the Nexus
215 NEXUS_CONT_ID=$(docker run -d --rm -v ${NEXUS_DATA_DIR}:/nexus-data:rw --name ${NEXUS_DOMAIN} ${PUBLISHED_PORTS} ${NEXUS_IMAGE})
216 echo "Waiting for Nexus to fully start"
217 until curl -su ${NEXUS_USERNAME}:${NEXUS_PASSWORD} http://${NEXUS_DOMAIN}:${NEXUS_PORT}/service/metrics/healthcheck | grep '"healthy":true' > /dev/null ; do
218     printf "."
219     sleep 3
220 done
221 echo -e "\nNexus started"
222
223 # Configure the nexus repository
224 curl -sX POST --header 'Content-Type: application/json' --data-binary "${NEXUS_CONFIG}" http://${NEXUS_USERNAME}:${NEXUS_PASSWORD}@${NEXUS_DOMAIN}:${NEXUS_PORT}/service/rest/v1/script
225 curl -sX POST --header "Content-Type: text/plain" http://${NEXUS_USERNAME}:${NEXUS_PASSWORD}@${NEXUS_DOMAIN}:${NEXUS_PORT}/service/rest/v1/script/configure/run > /dev/null
226
227 ###########################
228 # Populate NPM repository #
229 ###########################
230
231 # Configure NPM registry to our Nexus repository
232 echo "Configure NPM registry to ${NPM_REGISTRY}"
233 npm config set registry "${NPM_REGISTRY}"
234
235 # Login to NPM registry
236 /usr/bin/expect <<EOF
237 spawn npm login
238 expect "Username:"
239 send "${NEXUS_USERNAME}\n"
240 expect "Password:"
241 send "${NEXUS_PASSWORD}\n"
242 expect Email:
243 send "${NEXUS_EMAIL}\n"
244 expect eof
245 EOF
246
247 # Patch problematic package
248 pushd ${NXS_SRC_NPM_DIR}
249 PATCHED_NPM="$(grep tsscmp ${NXS_NPM_LIST} | sed $'s/\r// ; s/\\@/\-/ ; s/$/\.tgz/')"
250 if [[ ! -z "${PATCHED_NPM}" ]] && ! zgrep -aq "${NPM_REGISTRY}" "${PATCHED_NPM}" 2>/dev/null; then
251     tar xzf "${PATCHED_NPM}"
252     rm -f "${PATCHED_NPM}"
253     sed -i 's|\"registry\":\ \".*\"|\"registry\":\ \"'"${NPM_REGISTRY}"'\"|g' package/package.json
254     tar -zcf "${PATCHED_NPM}" package
255     rm -rf package
256 fi
257
258 # Push NPM packages to Nexus repository
259 for ARCHIVE in $(sed $'s/\r// ; s/\\@/\-/g ; s/$/\.tgz/g' ${NXS_NPM_LIST});do
260    npm publish --access public ${ARCHIVE} > /dev/null
261    echo "NPM ${ARCHIVE} pushed to Nexus"
262 done
263 popd
264
265 ###############################
266 ##  Populate PyPi repository  #
267 ###############################
268
269 pushd ${NXS_SRC_PYPI_DIR}
270 for PACKAGE in $(sed $'s/\r//; s/==/-/' ${NXS_PYPI_LIST}); do
271    twine upload -u "${NEXUS_USERNAME}" -p "${NEXUS_PASSWORD}" --repository-url ${PYPI_REGISTRY} ${PACKAGE}*
272    echo "PYPI ${PACKAGE} pushed to Nexus"
273 done
274 popd
275
276 ###############################
277 ## Populate Docker repository #
278 ###############################
279
280 # Login to simulated docker registries
281 for REGISTRY in $(sed -n '/\.[^/].*\//p' ${NXS_DOCKER_IMG_LIST} | sed -e 's/\/.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY}) ${DOCKER_REGISTRY}; do
282    echo "Docker login to ${REGISTRY}"
283    docker login -u "${NEXUS_USERNAME}" -p "${NEXUS_PASSWORD}" ${REGISTRY} > /dev/null
284 done
285
286 # Push images to private nexus based on the list
287 # Images from default registry need to be tagged to private registry
288 # and those without defined repository in tag uses default repository 'library'
289 for IMAGE in $(sed $'s/\r// ; /^#/d' ${NXS_DOCKER_IMG_LIST} | awk '{ print $1 }'); do
290     PUSH=""
291     if [[ ${IMAGE} != *"/"* ]]; then
292         PUSH="${DOCKER_REGISTRY}/library/${IMAGE}"
293     elif [[ ${IMAGE} == *"${DEFAULT_REGISTRY}"* ]]; then
294         if [[ ${IMAGE} == *"/"*"/"* ]]; then
295             PUSH="$(sed 's/'"${DEFAULT_REGISTRY}"'/'"${DOCKER_REGISTRY}"'/' <<< ${IMAGE})"
296         else
297             PUSH="$(sed 's/'"${DEFAULT_REGISTRY}"'/'"${DOCKER_REGISTRY}"'\/library/' <<< ${IMAGE})"
298         fi
299     elif [[ -z $(sed -n '/\.[^/].*\//p' <<< ${IMAGE}) ]]; then
300         PUSH="${DOCKER_REGISTRY}/${IMAGE}"
301     fi
302     if [[ ! -z ${PUSH} ]]; then
303         docker tag ${IMAGE} ${PUSH}
304     else
305         PUSH="${IMAGE}"
306     fi
307     docker push ${PUSH}
308     echo "${IMAGE} pushed as ${PUSH} to Nexus"
309 done
310
311 ##############################
312 # Stop the Nexus and cleanup #
313 ##############################
314
315 echo "Stopping Nexus and returning backups"
316
317 # Stop the Nexus
318 docker stop ${NEXUS_CONT_ID} > /dev/null
319
320 # Return backed up configuration files
321 mv -f "/etc/${HOSTS_BACKUP}" /etc/hosts
322
323 if [ -f "~/.docker/${DOCKER_CONF_BACKUP}" ]; then
324     mv -f "~/.docker/${DOCKER_CONF_BACKUP}" ~/.docker/config.json
325 fi
326
327 # Return default settings
328 npm config set registry "https://registry.npmjs.org"
329
330 echo "Nexus blob is built"
331 exit 0