blob: 00641cf4285ae7632ff462e34354ddd7e0d3f3cd [file] [log] [blame]
Samuli Silvius9e9afd72018-12-21 14:23:51 +02001#! /usr/bin/env bash
2
3# COPYRIGHT NOTICE STARTS HERE
4#
Tomáš Levora8d272bd2019-03-12 15:06:35 +01005# Copyright 2018-2019 © Samsung Electronics Co., Ltd.
Samuli Silvius9e9afd72018-12-21 14:23:51 +02006#
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
Samuli Silvius9e9afd72018-12-21 14:23:51 +020021### This script prepares Nexus repositories data blobs for ONAP
22
Tomáš Levora8d272bd2019-03-12 15:06:35 +010023## The script requires following dependencies are installed: nodejs, jq, docker
Mateusz Pilatb12b4402019-05-23 15:55:56 +020024## 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
Samuli Silvius9e9afd72018-12-21 14:23:51 +020028
29# Fail fast settings
30set -e
31
Tomáš Levora8d272bd2019-03-12 15:06:35 +010032TIMESTAMP="date +'%Y-%m-%d_%H-%M-%S'"
33SCRIPT_LOG="/tmp/$(basename $0)_$(eval ${TIMESTAMP}).log"
34
35# Log everything
36exec &> >(tee -a "${SCRIPT_LOG}")
37
Samuli Silvius9e9afd72018-12-21 14:23:51 +020038# Nexus repository location
39NEXUS_DOMAIN="nexus"
Tomáš Levora8d272bd2019-03-12 15:06:35 +010040NEXUS_PORT="8081"
41NEXUS_DOCKER_PORT="8082"
42NPM_REGISTRY="http://${NEXUS_DOMAIN}:${NEXUS_PORT}/repository/npm-private/"
43PYPI_REGISTRY="http://${NEXUS_DOMAIN}:${NEXUS_PORT}/repository/pypi-private/"
44DOCKER_REGISTRY="${NEXUS_DOMAIN}:${NEXUS_DOCKER_PORT}"
45DEFAULT_REGISTRY="docker.io"
Samuli Silvius9e9afd72018-12-21 14:23:51 +020046
47# Nexus repository credentials
48NEXUS_USERNAME=admin
49NEXUS_PASSWORD=admin123
50NEXUS_EMAIL=admin@example.org
51
Tomáš Levora8d272bd2019-03-12 15:06:35 +010052# Setting paths
53LOCAL_PATH="$(readlink -f $(dirname ${0}))"
Mateusz Pilatb12b4402019-05-23 15:55:56 +020054
55#Defaults
Tomáš Levora8d272bd2019-03-12 15:06:35 +010056DATA_DIR="$(realpath ${LOCAL_PATH}/../../resources)"
Mateusz Pilatb12b4402019-05-23 15:55:56 +020057NEXUS_DATA_DIR="${DATA_DIR}/nexus_data"
Tomáš Levora8d272bd2019-03-12 15:06:35 +010058LISTS_DIR="${LOCAL_PATH}/data_lists"
59
Mateusz Pilatb12b4402019-05-23 15:55:56 +020060usage () {
61 echo " Example usage: build_nexus_blob.sh -t <tag> --input-directory </path/to/downloaded/files/dir> --output-directory
62 </path/to/output/dir> --resource-list-directory </path/to/dir/with/resource/list>
63
Tomáš Levora63433522019-05-28 16:18:24 +020064 -t | --tag release tag, taken from available on git or placed by data generating script (mandatory) must follow scheme onap_<semver>
Mateusz Pilatb12b4402019-05-23 15:55:56 +020065 -i | --input-directory directory containing file needed to create nexus blob. The structure of this directory must organized as described in build guide
66 -o | --output-directory
Tomáš Levora63433522019-05-28 16:18:24 +020067 -rl | --resource-list-directory directory with files containing docker, pypi and npm lists
Mateusz Pilatb12b4402019-05-23 15:55:56 +020068 "
69 exit 1
70}
71
72while [ "$1" != "" ]; do
73 case $1 in
74 -t | --tag ) shift
75 TAG=$1
76 ;;
77 -i | --input-directory ) shift
78 DATA_DIR=$1
79 ;;
80 -o | --output-directory ) shift
81 NEXUS_DATA_DIR=$1
82 ;;
83 -rl | --resource-list-directory ) shift
84 LISTS_DIR=$1
85 ;;
86 -h | --help ) usage
87 ;;
88 *) usage
89 esac
90 shift
91done
92
93
94# exit if no tag given
95if [ -z ${TAG} ]; then
96 usage
97 exit 1
98fi
99
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100100# Setup directories with resources for docker, npm and pypi
101NXS_SRC_DOCKER_IMG_DIR="${DATA_DIR}/offline_data/docker_images_for_nexus"
102NXS_SRC_NPM_DIR="${DATA_DIR}/offline_data/npm_tar"
103NXS_SRC_PYPI_DIR="${DATA_DIR}/offline_data/pypi"
104
105# Setup specific resources list based on the tag provided
106NXS_DOCKER_IMG_LIST="${LISTS_DIR}/${TAG}-docker_images.list"
107NXS_NPM_LIST="${LISTS_DIR}/$(sed 's/.$/x/' <<< ${TAG})-npm.list"
108NXS_PYPI_LIST="${LISTS_DIR}/$(sed 's/.$/x/' <<< ${TAG})-pip_packages.list"
109
110# Setup Nexus image used for build and install infra
111INFRA_LIST="${LISTS_DIR}/infra_docker_images.list"
112NEXUS_IMAGE="$(grep sonatype/nexus3 ${INFRA_LIST})"
113NEXUS_IMAGE_TAR="${DATA_DIR}/offline_data/docker_images_infra/$(sed 's/\//\_/ ; s/$/\.tar/ ; s/\:/\_/' <<< ${NEXUS_IMAGE})"
114
115# Setup default ports published to host as docker registry
116PUBLISHED_PORTS="-p ${NEXUS_PORT}:${NEXUS_PORT} -p ${NEXUS_DOCKER_PORT}:${NEXUS_DOCKER_PORT}"
117
118# Setup additional ports published to host based on simulated docker registries
119for REGISTRY in $(sed -n '/\.[^/].*\//p' ${NXS_DOCKER_IMG_LIST} | sed -e 's/\/.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY} || true); do
120 if [[ ${REGISTRY} != *":"* ]]; then
121 if [[ ${PUBLISHED_PORTS} != *"80:${NEXUS_DOCKER_PORT}"* ]]; then
122 PUBLISHED_PORTS="${PUBLISHED_PORTS} -p 80:${NEXUS_DOCKER_PORT}"
123 fi
124 else
125 REGISTRY_PORT="$(sed 's/^.*\:\([[:digit:]]*\)$/\1/' <<< ${REGISTRY})"
126 if [[ ${PUBLISHED_PORTS} != *"${REGISTRY_PORT}:${NEXUS_DOCKER_PORT}"* ]]; then
127 PUBLISHED_PORTS="${PUBLISHED_PORTS} -p ${REGISTRY_PORT}:${NEXUS_DOCKER_PORT}"
128 fi
129 fi
130done
131
132# Setup simulated domain names to be able to push all to private Nexus repository
133SIMUL_HOSTS="$(sed -n '/\.[^/].*\//p' ${NXS_DOCKER_IMG_LIST} | sed -e 's/\/.*$// ; s/:.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY} || true) ${NEXUS_DOMAIN}"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200134
135# Nexus repository configuration setup
136NEXUS_CONFIG_GROOVY='import org.sonatype.nexus.security.realm.RealmManager
137import org.sonatype.nexus.repository.attributes.AttributesFacet
138import org.sonatype.nexus.security.user.UserManager
139import org.sonatype.nexus.repository.manager.RepositoryManager
140import org.sonatype.nexus.security.user.UserNotFoundException
141/* Use the container to look up some services. */
142realmManager = container.lookup(RealmManager.class)
143userManager = container.lookup(UserManager.class, "default") //default user manager
144repositoryManager = container.lookup(RepositoryManager.class)
145/* Managers are used when scripting api cannot. Note that scripting api can only create mostly, and that creation methods return objects of created entities. */
146/* Perform cleanup by removing all repos and users. Realms do not need to be re-disabled, admin and anonymous user will not be removed. */
147userManager.listUserIds().each({ id ->
148 if (id != "anonymous" && id != "admin")
149 userManager.deleteUser(id)
150})
151repositoryManager.browse().each {
152 repositoryManager.delete(it.getName())
153}
154/* Add bearer token realms at the end of realm lists... */
155realmManager.enableRealm("NpmToken")
156realmManager.enableRealm("DockerToken")
Tomáš Levora1d902342019-02-05 10:01:43 +0100157realmManager.enableRealm("PypiToken")
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200158/* Create the docker user. */
159security.addUser("docker", "docker", "docker", "docker@example.com", true, "docker", ["nx-anonymous"])
Tomáš Levora1d902342019-02-05 10:01:43 +0100160/* Create docker, npm and pypi repositories. Their default configuration should be compliant with our requirements, except the docker registry creation. */
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200161repository.createNpmHosted("npm-private")
Tomáš Levora1d902342019-02-05 10:01:43 +0100162repository.createPyPiHosted("pypi-private")
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200163def r = repository.createDockerHosted("onap", 8082, 0)
164/* force basic authentication true by default, must set to false for docker repo. */
165conf=r.getConfiguration()
166conf.attributes("docker").set("forceBasicAuth", false)
167repositoryManager.update(conf)'
168
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100169# Prepare the Nexus configuration
170NEXUS_CONFIG=$(echo "${NEXUS_CONFIG_GROOVY}" | jq -Rsc '{"name":"configure", "type":"groovy", "content":.}')
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200171
172#################################
173# Prepare the local environment #
174#################################
175
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200176# Add simulated domain names to /etc/hosts
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100177HOSTS_BACKUP="$(eval ${TIMESTAMP}_hosts.bk)"
178cp /etc/hosts "/etc/${HOSTS_BACKUP}"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200179for DNS in ${SIMUL_HOSTS}; do
180 echo "127.0.0.1 ${DNS}" >> /etc/hosts
181done
182
183# Backup the current docker registry settings
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100184if [ -f ~/.docker/config.json ]; then
185 DOCKER_CONF_BACKUP="$(eval ${TIMESTAMP}_config.json.bk)"
186 mv ~/.docker/config.json "~/.docker/${DOCKER_CONF_BACKUP}"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200187fi
188
189#################################
190# Docker repository preparation #
191#################################
192
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100193# Load predefined Nexus image
194docker load -i ${NEXUS_IMAGE_TAR}
195
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200196# Load all necessary images
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100197for ARCHIVE in $(sed $'s/\r// ; /^#/d ; s/\:/\_/g ; s/\//\_/g ; s/$/\.tar/g' ${NXS_DOCKER_IMG_LIST} | awk '{ print $1 }'); do
198 docker load -i ${NXS_SRC_DOCKER_IMG_DIR}/${ARCHIVE}
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200199done
200
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200201################################
202# Nexus repository preparation #
203################################
204
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200205# Prepare nexus-data directory
206if [ -d ${NEXUS_DATA_DIR} ]; then
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100207 if [ "$(docker ps -q -f name="${NEXUS_DOMAIN}")" ]; then
208 echo "Removing container ${NEXUS_DOMAIN}"
209 docker rm -f $(docker ps -aq -f name="${NEXUS_DOMAIN}")
210 fi
211 pushd ${NEXUS_DATA_DIR}/..
212 NXS_BACKUP="$(eval ${TIMESTAMP})_$(basename ${NEXUS_DATA_DIR})_bk"
213 mv ${NEXUS_DATA_DIR} "${NXS_BACKUP}"
214 echo "${NEXUS_DATA_DIR} already exists - backing up to ${NXS_BACKUP}"
215 popd
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200216fi
217
218mkdir -p ${NEXUS_DATA_DIR}
219chown 200:200 ${NEXUS_DATA_DIR}
220chmod 777 ${NEXUS_DATA_DIR}
221
222# Save Nexus version to prevent/catch data incompatibility
223docker images --no-trunc | grep sonatype/nexus3 | awk '{ print $1":"$2" "$3}' > ${NEXUS_DATA_DIR}/nexus.ver
224
225# Start the Nexus
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100226NEXUS_CONT_ID=$(docker run -d --rm -v ${NEXUS_DATA_DIR}:/nexus-data:rw --name ${NEXUS_DOMAIN} ${PUBLISHED_PORTS} ${NEXUS_IMAGE})
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200227echo "Waiting for Nexus to fully start"
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100228until curl -su ${NEXUS_USERNAME}:${NEXUS_PASSWORD} http://${NEXUS_DOMAIN}:${NEXUS_PORT}/service/metrics/healthcheck | grep '"healthy":true' > /dev/null ; do
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200229 printf "."
230 sleep 3
231done
232echo -e "\nNexus started"
233
234# Configure the nexus repository
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100235curl -sX POST --header 'Content-Type: application/json' --data-binary "${NEXUS_CONFIG}" http://${NEXUS_USERNAME}:${NEXUS_PASSWORD}@${NEXUS_DOMAIN}:${NEXUS_PORT}/service/rest/v1/script
236curl -sX POST --header "Content-Type: text/plain" http://${NEXUS_USERNAME}:${NEXUS_PASSWORD}@${NEXUS_DOMAIN}:${NEXUS_PORT}/service/rest/v1/script/configure/run > /dev/null
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200237
238###########################
239# Populate NPM repository #
240###########################
241
242# Configure NPM registry to our Nexus repository
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100243echo "Configure NPM registry to ${NPM_REGISTRY}"
244npm config set registry "${NPM_REGISTRY}"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200245
246# Login to NPM registry
247/usr/bin/expect <<EOF
248spawn npm login
249expect "Username:"
250send "${NEXUS_USERNAME}\n"
251expect "Password:"
252send "${NEXUS_PASSWORD}\n"
253expect Email:
254send "${NEXUS_EMAIL}\n"
255expect eof
256EOF
257
258# Patch problematic package
Tomáš Levora1d902342019-02-05 10:01:43 +0100259pushd ${NXS_SRC_NPM_DIR}
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100260PATCHED_NPM="$(grep tsscmp ${NXS_NPM_LIST} | sed $'s/\r// ; s/\\@/\-/ ; s/$/\.tgz/')"
261if [[ ! -z "${PATCHED_NPM}" ]] && ! zgrep -aq "${NPM_REGISTRY}" "${PATCHED_NPM}" 2>/dev/null; then
262 tar xzf "${PATCHED_NPM}"
263 rm -f "${PATCHED_NPM}"
264 sed -i 's|\"registry\":\ \".*\"|\"registry\":\ \"'"${NPM_REGISTRY}"'\"|g' package/package.json
265 tar -zcf "${PATCHED_NPM}" package
266 rm -rf package
267fi
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200268
269# Push NPM packages to Nexus repository
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100270for ARCHIVE in $(sed $'s/\r// ; s/\\@/\-/g ; s/$/\.tgz/g' ${NXS_NPM_LIST});do
271 npm publish --access public ${ARCHIVE} > /dev/null
272 echo "NPM ${ARCHIVE} pushed to Nexus"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200273done
Tomáš Levora1d902342019-02-05 10:01:43 +0100274popd
275
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100276###############################
277## Populate PyPi repository #
278###############################
Tomáš Levora1d902342019-02-05 10:01:43 +0100279
280pushd ${NXS_SRC_PYPI_DIR}
281for PACKAGE in $(sed $'s/\r//; s/==/-/' ${NXS_PYPI_LIST}); do
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100282 twine upload -u "${NEXUS_USERNAME}" -p "${NEXUS_PASSWORD}" --repository-url ${PYPI_REGISTRY} ${PACKAGE}*
283 echo "PYPI ${PACKAGE} pushed to Nexus"
Tomáš Levora1d902342019-02-05 10:01:43 +0100284done
285popd
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200286
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100287###############################
288## Populate Docker repository #
289###############################
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200290
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100291# Login to simulated docker registries
292for REGISTRY in $(sed -n '/\.[^/].*\//p' ${NXS_DOCKER_IMG_LIST} | sed -e 's/\/.*$//' | sort -u | grep -v ${DEFAULT_REGISTRY}) ${DOCKER_REGISTRY}; do
293 echo "Docker login to ${REGISTRY}"
294 docker login -u "${NEXUS_USERNAME}" -p "${NEXUS_PASSWORD}" ${REGISTRY} > /dev/null
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200295done
296
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100297# Push images to private nexus based on the list
298# Images from default registry need to be tagged to private registry
299# and those without defined repository in tag uses default repository 'library'
300for IMAGE in $(sed $'s/\r// ; /^#/d' ${NXS_DOCKER_IMG_LIST} | awk '{ print $1 }'); do
301 PUSH=""
302 if [[ ${IMAGE} != *"/"* ]]; then
303 PUSH="${DOCKER_REGISTRY}/library/${IMAGE}"
304 elif [[ ${IMAGE} == *"${DEFAULT_REGISTRY}"* ]]; then
Mateusz Pilatb12b4402019-05-23 15:55:56 +0200305 if [[ ${IMAGE} == *"/"*"/"* ]]; then
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100306 PUSH="$(sed 's/'"${DEFAULT_REGISTRY}"'/'"${DOCKER_REGISTRY}"'/' <<< ${IMAGE})"
307 else
308 PUSH="$(sed 's/'"${DEFAULT_REGISTRY}"'/'"${DOCKER_REGISTRY}"'\/library/' <<< ${IMAGE})"
309 fi
310 elif [[ -z $(sed -n '/\.[^/].*\//p' <<< ${IMAGE}) ]]; then
311 PUSH="${DOCKER_REGISTRY}/${IMAGE}"
312 fi
313 if [[ ! -z ${PUSH} ]]; then
314 docker tag ${IMAGE} ${PUSH}
315 else
316 PUSH="${IMAGE}"
317 fi
318 docker push ${PUSH}
319 echo "${IMAGE} pushed as ${PUSH} to Nexus"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200320done
321
322##############################
323# Stop the Nexus and cleanup #
324##############################
325
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100326echo "Stopping Nexus and returning backups"
327
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200328# Stop the Nexus
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100329docker stop ${NEXUS_CONT_ID} > /dev/null
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200330
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100331# Return backed up configuration files
Tomáš Levorafd1f0e72019-05-23 12:25:44 +0200332mv -f "/etc/${HOSTS_BACKUP}" /etc/hosts
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200333
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100334if [ -f "~/.docker/${DOCKER_CONF_BACKUP}" ]; then
Tomáš Levorafd1f0e72019-05-23 12:25:44 +0200335 mv -f "~/.docker/${DOCKER_CONF_BACKUP}" ~/.docker/config.json
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100336fi
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200337
Tomáš Levora8d272bd2019-03-12 15:06:35 +0100338# Return default settings
339npm config set registry "https://registry.npmjs.org"
340
341echo "Nexus blob is built"
Samuli Silvius9e9afd72018-12-21 14:23:51 +0200342exit 0
Mateusz Pilatb12b4402019-05-23 15:55:56 +0200343