blob: 22c6dec297bdd4fc990ebc356ab6e635c8573edf [file] [log] [blame]
#!/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 -euo pipefail
MY_DIR="$(cd "$(dirname "$0")" && pwd)"
pushd "${MY_DIR}" &>/dev/null || exit 1
echo
echo "Working in ${MY_DIR} folder"
echo
if [[ -f /.dockerenv ]]; then
# This script can be run both - in container and outside of it.
# Here we are inside the container which means that we should (when the host is Linux)
# fix permissions of the _build and _api folders via sudo.
# Those files are mounted from the host via docs folder and we might not have permissions to
# write to those directories (and remove the _api folder).
# We know we have sudo capabilities inside the container.
echo "Creating the _build and _api folders in case they do not exist"
sudo mkdir -pv _build
sudo mkdir -pv _api
echo "Created the _build and _api folders in case they do not exist"
echo "Changing ownership of _build and _api folders to ${AIRFLOW_USER}:${AIRFLOW_USER}"
sudo chown -R "${AIRFLOW_USER}:${AIRFLOW_USER}" .
echo "Changed ownership of the whole doc folder to ${AIRFLOW_USER}:${AIRFLOW_USER}"
else
# We are outside the container so we simply make sure that the directories exist
echo "Creating the _build and _api folders in case they do not exist"
mkdir -pv _build
mkdir -pv _api
echo "Creating the _build and _api folders in case they do not exist"
fi
echo "Removing content of the _build and _api folders"
rm -rf _build/*
rm -rf _api/*
echo "Removed content of the _build and _api folders"
set +e
# shellcheck disable=SC2063
NUM_INCORRECT_USE_LITERALINCLUDE=$(grep -inR --include \*.rst 'literalinclude::.\+example_dags' . | \
tee /dev/tty |
wc -l |\
tr -d '[:space:]')
set -e
echo
echo "Checking for presence of literalinclude in example DAGs"
echo
if [[ "${NUM_INCORRECT_USE_LITERALINCLUDE}" -ne "0" ]]; then
echo
echo "Unexpected problems found in the documentation. "
echo "You should use a exampleinclude directive to include example DAGs."
echo "Currently, ${NUM_INCORRECT_USE_LITERALINCLUDE} problem found."
echo
exit 1
else
echo
echo "No literalincludes in example DAGs found"
echo
fi
SUCCEED_LINE=$(make html |\
tee /dev/tty |\
grep 'build succeeded' |\
head -1)
NUM_CURRENT_WARNINGS=$(echo ${SUCCEED_LINE} |\
sed -E 's/build succeeded, ([0-9]+) warnings?\./\1/g')
if [[ -f /.dockerenv ]]; then
# We are inside the container which means that we should fix back the permissions of the
# _build and _api folder files, so that they can be accessed by the host user
# The _api folder should be deleted by then but just in case we should change the ownership
echo "Changing ownership of docs/_build folder back to ${HOST_USER_ID}:${HOST_GROUP_ID}"
sudo chown ${HOST_USER_ID}:${HOST_GROUP_ID} _build
if [[ -d _api ]]; then
sudo chown ${HOST_USER_ID}:${HOST_GROUP_ID} _api
fi
echo "Changed ownership of docs/_build folder back to ${HOST_USER_ID}:${HOST_GROUP_ID}"
fi
if echo ${SUCCEED_LINE} | grep -q "warning"; then
echo
echo "Unexpected problems found in the documentation. "
echo "Currently, ${NUM_CURRENT_WARNINGS} warnings found. "
echo
exit 1
fi
popd &>/dev/null || exit 1