forked from apache/airflow-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.sh
executable file
·341 lines (297 loc) · 10.1 KB
/
site.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
set -euox pipefail
WORKING_DIR="$(pwd)"
MY_DIR="$(cd "$(dirname "$0")" && pwd)"
pushd "${MY_DIR}" &>/dev/null || exit 1
IMAGE_NAME=airflow-site
CONTAINER_NAME=airflow-site-c
function usage {
cat << EOF
usage: ${0} <command> [<args>]
These are ${0} commands used in various situations:
build-site Prepare dist directory with landing pages and documentation
preview-landing-pages Starts the web server with preview of the website
build-landing-pages Builds a landing pages
prepare-theme Prepares and copies files needed for the proper functioning of the sphinx theme.
shell Start shell
build-image Build a Docker image with a environment
install-node-deps Download all the Node dependencies
check-site-links Checks if the links are correct in the website
lint-css Lint CSS files
lint-js Lint Javascript files
cleanup Delete the virtual environment in Docker
stop Stop the environment
help Display usage
Unrecognized commands are run as programs in the container.
For example, if you want to display a list of files, you
can execute the following command:
$0 ls
The following command can also be performed from the Docker environment:
install-node-deps, preview, build-site, lint-css, lint-js.
The lint-css and lint-js accept paths in arguments. If no path is given, the script
will be executed for all supported files
EOF
}
function ensure_image_exists {
if [[ ! $(docker images "${IMAGE_NAME}" -q) ]]; then
echo "Image not exists."
build_image
fi
}
function ensure_container_exists {
if [[ ! $(docker container ls -a --filter="Name=${CONTAINER_NAME}" -q ) ]]; then
echo "Container not exists"
docker run \
--detach \
--name "${CONTAINER_NAME}" \
--volume "$(pwd):/opt/site/" \
--publish 1313:1313 \
--publish 3000:3000 \
"${IMAGE_NAME}" sh -c 'trap "exit 0" INT; while true; do sleep 30; done;'
return 0
fi
}
function ensure_container_running {
container_status="$(docker inspect "${CONTAINER_NAME}" --format '{{.State.Status}}')"
echo "Current container status: ${container_status}"
if [[ ! "${container_status}" == "running" ]]; then
echo "Container not running. Starting the container."
docker start "${CONTAINER_NAME}"
fi
}
function ensure_node_module_exists {
if [[ ! -d landing-pages/node_modules/ ]] ; then
echo "Missing node dependencies. Start installation."
run_command "/opt/site/landing-pages/" yarn install
echo "Dependencies installed."
fi
}
function ensure_that_website_is_build {
if [[ ! -f landing-pages/dist/index.html ]] ; then
echo "The website is not built. Start building."
run_command "/opt/site/landing-pages/" npm run build
echo "The website builded."
fi
}
function build_image {
echo "Start building image"
docker build -t airflow-site .
echo "End building image"
}
function run_command {
working_directory=$1
shift
if [[ -f /.dockerenv ]] ; then
pushd "${working_directory}"
exec "$@"
else
if ! test -t 0; then
docker exec \
--interactive \
--workdir "${working_directory}" \
"${CONTAINER_NAME}" "$@"
else
docker exec \
--tty \
--interactive \
--workdir "${working_directory}" \
"${CONTAINER_NAME}" "$@"
fi
fi
}
function prepare_environment {
if [[ ! -f /.dockerenv ]] ; then
ensure_image_exists
ensure_container_exists
ensure_container_running
fi
}
function prevent_docker {
if [[ -f /.dockerenv ]] ; then
echo "This command is not supported in the Docker environment. Run this command from the host system."
exit 1
fi
}
function relativepath {
source=$1
target=$2
common_part=$source # for now
result="" # for now
while [[ "${target#$common_part}" == "${target}" ]]; do
# no match, means that candidate common part is not correct
# go up one level (reduce common part)
common_part="$(dirname "$common_part")"
# and record that we went back, with correct / handling
if [[ -z $result ]]; then
result=".."
else
result="../$result"
fi
done
if [[ $common_part == "/" ]]; then
# special case for root (no common path)
result="$result/"
fi
# since we now have identified the common part,
# compute the non-common part
forward_part="${target#$common_part}"
# and now stick all parts together
if [[ -n $result ]] && [[ -n $forward_part ]]; then
result="$result$forward_part"
elif [[ -n $forward_part ]]; then
# extra slash removal
result="${forward_part:1}"
fi
echo "$result"
}
function run_lint {
script_working_directory=$1
command=$2
shift 2
DOCKER_PATHS=()
for E in "${@}"; do
ABS_PATH=$(cd "${WORKING_DIR}" && realpath "${E}")
DOCKER_PATHS+=("/opt/site/$(relativepath "$(pwd)" "${ABS_PATH}")")
done
run_command "${script_working_directory}" "${command}" "${DOCKER_PATHS[@]}"
}
function prepare_docs_index {
run_command "/opt/site/docs-archive/" ./show_docs_index_json.sh > landing-pages/site/static/_gen/docs-index.json
}
function build_landing_pages {
run_command "/opt/site/landing-pages/" npm run index
prepare_docs_index
run_command "/opt/site/landing-pages/" npm run build
}
function build_site {
if [[ ! -f "landing-pages/dist/index.html" ]]; then
build_landing_pages
fi
mkdir -p dist
rm -rf dist/*
cp -R landing-pages/dist/. dist/
mkdir -p dist/docs/
rm -rf dist/docs/*
for doc_path in docs-archive/*/ ; do
version="$(basename -- "${doc_path}")"
cp -R "${doc_path}" "dist/docs/${version}/"
done
cp -R "docs-archive/$(cat docs-archive/stable.txt)" "dist/docs/stable/"
cat > dist/docs/index.html << EOF
<!DOCTYPE html>
<html>
<head><meta http-equiv="refresh" content="1; url=stable/" /></head>
<body></body>
</html>
EOF
}
function cleanup_environment {
container_status="$(docker inspect "${CONTAINER_NAME}" --format '{{.State.Status}}')"
echo "Current container status: ${container_status}"
if [[ "${container_status}" == "running" ]]; then
echo "Container running. Killing the container."
docker kill "${CONTAINER_NAME}"
fi
if [[ $(docker container ls -a --filter="Name=${CONTAINER_NAME}" -q ) ]]; then
echo "Container exists. Removing the container."
docker rm "${CONTAINER_NAME}"
fi
if [[ $(docker images "${IMAGE_NAME}" -q) ]]; then
echo "Images exists. Deleeting the image."
docker rmi "${IMAGE_NAME}"
fi
}
function prepare_theme {
SITE_DIST="landing-pages/dist"
THEME_GEN="sphinx_airflow_theme/sphinx_airflow_theme/static/_gen"
mkdir -p "${THEME_GEN}/css" "${THEME_GEN}/js"
cp ${SITE_DIST}/docs.*.js "${THEME_GEN}/js/docs.js"
cp ${SITE_DIST}/scss/main.min.*.css "${THEME_GEN}/css/main.min.css"
cp ${SITE_DIST}/scss/main-custom.min.*.css "${THEME_GEN}/css/main-custom.min.css"
echo "Successful copied required files"
}
if [[ "$#" -eq 0 ]]; then
echo "You must provide at least one command."
echo
usage
exit 1
fi
CMD=$1
shift
# Check fundamentals commands
if [[ "${CMD}" == "build-image" ]] ; then
prevent_docker
build_image
exit 0
elif [[ "${CMD}" == "stop" ]] ; then
prevent_docker
docker kill "${CONTAINER_NAME}"
exit 0
elif [[ "${CMD}" == "cleanup" ]] ; then
prevent_docker
cleanup_environment
exit 0
elif [[ "${CMD}" == "help" ]]; then
usage
exit 0
fi
prepare_environment
# Check container commands
if [[ "${CMD}" == "install-node-deps" ]] ; then
run_command "/opt/site/landing-pages/" yarn install
elif [[ "${CMD}" == "preview-landing-pages" ]]; then
ensure_node_module_exists
run_command "/opt/site/landing-pages/" npm run index
prepare_docs_index
run_command "/opt/site/landing-pages/" npm run preview
elif [[ "${CMD}" == "build-landing-pages" ]]; then
ensure_node_module_exists
build_landing_pages
elif [[ "${CMD}" == "build-site" ]]; then
ensure_node_module_exists
build_site
elif [[ "${CMD}" == "check-site-links" ]]; then
ensure_node_module_exists
ensure_that_website_is_build
run_command "/opt/site/landing-pages/" ./check-links.sh
elif [[ "${CMD}" == "prepare-theme" ]]; then
ensure_that_website_is_build
prepare_theme
elif [[ "${CMD}" == "lint-js" ]]; then
ensure_node_module_exists
if [[ "$#" -eq 0 ]]; then
run_command "/opt/site/landing-pages/" npm run lint:js
else
run_lint "/opt/site/landing-pages/" ./node_modules/.bin/eslint "$@"
fi
elif [[ "${CMD}" == "lint-css" ]]; then
ensure_node_module_exists
if [[ "$#" -eq 0 ]]; then
run_command "/opt/site/landing-pages/" npm run lint:css
else
run_lint "/opt/site/landing-pages/" ./node_modules/.bin/stylelint "$@"
fi
elif [[ "${CMD}" == "shell" ]]; then
prevent_docker
docker exec -ti "${CONTAINER_NAME}" bash
else
prevent_docker
docker exec -ti "${CONTAINER_NAME}" "${CMD}" "$@"
fi
popd &>/dev/null || exit 1