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